From d4404b201cfee36b19bca2b4806b2bf9c8d648eb Mon Sep 17 00:00:00 2001
From: Konstantin Haase
Date: Wed, 17 Oct 2012 16:19:42 +0200
Subject: [PATCH 1/3] switch to puma, make app reload in development mode
---
Gemfile | 2 +-
Gemfile.lock | 10 +-
Procfile | 2 +-
config/unicorn.rb | 4 -
lib/travis/web/app.rb | 25 +-
public/styles/app.css | 3208 ++++++++++++++++++++---------------------
public/version | 2 +-
script/server | 8 -
8 files changed, 1626 insertions(+), 1635 deletions(-)
delete mode 100644 config/unicorn.rb
delete mode 100755 script/server
diff --git a/Gemfile b/Gemfile
index fa4f1da6..87e26e87 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,7 +2,7 @@ ruby '1.9.3' rescue nil
source :rubygems
-gem 'unicorn'
+gem 'puma'
gem 'rack-ssl', '~> 1.3'
gem 'rack-cache'
diff --git a/Gemfile.lock b/Gemfile.lock
index d9a565b4..28e6ef92 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -43,15 +43,15 @@ GEM
guard (1.4.0)
listen (>= 0.4.2)
thor (>= 0.14.6)
- kgio (2.7.4)
listen (0.5.3)
multi_json (1.3.6)
+ puma (1.6.3)
+ rack (~> 1.2)
rack (1.4.1)
rack-cache (1.2)
rack (>= 0.4)
rack-ssl (1.3.2)
rack
- raindrops (0.10.0)
rake (0.9.2.2)
rb-fsevent (0.9.2)
rerun (0.7.1)
@@ -62,10 +62,6 @@ GEM
uglifier (1.3.0)
execjs (>= 0.3.0)
multi_json (~> 1.0, >= 1.0.2)
- unicorn (4.4.0)
- kgio (~> 2.6)
- rack
- raindrops (~> 0.7)
PLATFORMS
ruby
@@ -76,6 +72,7 @@ DEPENDENCIES
debugger
foreman
guard
+ puma
rack-cache
rack-ssl (~> 1.3)
rake (~> 0.9.2)
@@ -85,4 +82,3 @@ DEPENDENCIES
rerun
tilt
uglifier
- unicorn
diff --git a/Procfile b/Procfile
index 33c2caf6..8ead007d 100644
--- a/Procfile
+++ b/Procfile
@@ -1,3 +1,3 @@
-web: script/server
+web: bundle exec rackup -s puma -p $PORT
assets: rerun -x -p 'assets/**/*' 'bundle exec rakep'
#specs: rerun -x -p 'public/**/*' './run_jasmine.coffee public/spec.html'
diff --git a/config/unicorn.rb b/config/unicorn.rb
deleted file mode 100644
index 74f758e7..00000000
--- a/config/unicorn.rb
+++ /dev/null
@@ -1,4 +0,0 @@
-# http://michaelvanrooijen.com/articles/2011/06/01-more-concurrency-on-a-single-heroku-dyno-with-the-new-celadon-cedar-stack/
-
-worker_processes 3 # amount of unicorn workers to spin up
-timeout 30 # restarts workers that hang for 15 seconds
diff --git a/lib/travis/web/app.rb b/lib/travis/web/app.rb
index 6cf55f68..78b3b9b9 100644
--- a/lib/travis/web/app.rb
+++ b/lib/travis/web/app.rb
@@ -17,6 +17,11 @@ class Travis::Web::App
end
end
+ def self.new(options = {})
+ return super unless options[:environment] == 'development'
+ proc { |e| super.call(e) } # poor man's reloader
+ end
+
attr_reader :app, :router, :environment, :version, :last_modified, :age, :options, :root
def initialize(options = {})
@@ -62,9 +67,8 @@ class Travis::Web::App
end
def each_file
- Dir.chdir(root) do
- Dir.glob('**/*') { |f| yield f if File.file? f }
- end
+ pattern = File.join(root, '**/*')
+ Dir.glob(pattern) { |f| yield f if File.file? f }
end
def prefix?(file)
@@ -72,19 +76,20 @@ class Travis::Web::App
end
def index?(file)
- file == "index.html"
+ file.end_with? 'index.html'
end
def route_for(file)
+ file = file.sub("#{root}/", '')
file = File.join(version, file) if prefix? file
file = "" if index? file
"/#{file}"
end
def cache_control(file)
- case file
- when 'index.html' then "public, must-revalidate"
- when 'version' then "no-cache"
+ case route_for(file)
+ when '/' then "public, must-revalidate"
+ when 'version' then "no-cache"
else "public, max-age=#{age}"
end
end
@@ -105,8 +110,10 @@ class Travis::Web::App
def builder
builder = Rack::Builder.new
- builder.use Rack::SSL if environment == 'production'
- builder.use Rack::Cache
+ if environment == 'production'
+ builder.use Rack::SSL
+ builder.use Rack::Cache
+ end
builder.use Rack::Deflater
builder.use Rack::Head
builder.use Rack::ConditionalGet
diff --git a/public/styles/app.css b/public/styles/app.css
index 2c3466f0..90aa92dd 100644
--- a/public/styles/app.css
+++ b/public/styles/app.css
@@ -1,547 +1,547 @@
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/app.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app.sass */
html, body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
@@ -552,206 +552,206 @@ html, body {
color: #666666;
}
-/* line 12, /Users/sven/Development/projects/travis/travis-web/assets/styles/app.sass */
+/* line 12, /Users/konstantin/Workspace/travis-web/assets/styles/app.sass */
a {
color: #666666;
text-decoration: none;
}
-/* line 16, /Users/sven/Development/projects/travis/travis-web/assets/styles/app.sass */
+/* line 16, /Users/konstantin/Workspace/travis-web/assets/styles/app.sass */
ul {
padding: 0;
margin: 0;
list-style-type: none;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/app.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/app.sass */
li {
padding: 0;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/auth.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/auth.sass */
#auth-frame {
top: 50%;
left: 50%;
@@ -772,189 +772,189 @@ li {
-o-border-radius: 10px;
border-radius: 10px;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/button.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/button.sass */
.button {
position: relative;
overflow: visible;
@@ -983,7 +983,7 @@ li {
white-space: nowrap;
}
-/* line 22, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/button.sass */
+/* line 22, /Users/konstantin/Workspace/travis-web/assets/styles/app/button.sass */
.button:hover,
.button:focus,
.button:active,
@@ -1000,7 +1000,7 @@ li {
color: white;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/button.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/app/button.sass */
.button:active,
.button.active {
border-color: #2a65a0;
@@ -1012,194 +1012,194 @@ li {
background: -o-linear-gradient(#4a80f3, #6699fa);
background: linear-gradient(#4a80f3, #6699fa);
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/flash.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
#flash {
color: gray;
font-weight: bold;
}
-/* line 7, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/flash.sass */
+/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
#flash li {
position: relative;
margin: -20px -40px 20px -30px;
@@ -1209,23 +1209,23 @@ li {
box-shadow: transparent 0 0 0 0, #cccccc 0 1px 6px 0, transparent 0 0 0 0, transparent 0 0 0 0;
border-bottom: 1px solid #dddddd;
}
-/* line 14, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/flash.sass */
+/* line 14, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
#flash .success {
background-color: #ebfcc2;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/flash.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
#flash .notice {
background-color: lightgoldenrodyellow;
}
-/* line 20, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/flash.sass */
+/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
#flash .error {
background-color: #f5d7d3;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/flash.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
#flash p {
margin: 0;
}
-/* line 26, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/flash.sass */
+/* line 26, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
#flash .close {
display: block;
position: absolute;
@@ -1237,189 +1237,189 @@ li {
opacity: 0.5;
cursor: pointer;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/github.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/github.sass */
#github-wrapper {
position: absolute;
z-index: 1001;
@@ -1431,7 +1431,7 @@ li {
pointer-events: none;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/github.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/app/github.sass */
#github {
display: block;
position: absolute;
@@ -1461,592 +1461,592 @@ li {
-moz-box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 10px, rgba(0, 0, 0, 0.07) 0 0 3px 1px inset;
box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 10px, rgba(0, 0, 0, 0.07) 0 0 3px 1px inset;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/loading.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/loading.sass */
.loading {
padding: 15px 25px 0 0;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/loading.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/app/loading.sass */
.loading span {
padding-right: 25px;
font-size: 12px;
color: #aaaaaa;
background: url('data:image/gif;base64,R0lGODlhEAAIALMPAOvr697e3qCgoLW1tYuLi/X19Wtra3t7e87OzsbGxqGhodfX142NjZaWlqurq////yH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzdGMTE3NDA3MjA2ODExOTJCMEVCMzUyOEYzRkIyNSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowQTRBOUU3MDAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowQTRBOUU2RjAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkY4N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEBQoADwAsAAAAABAACAAABCzQSPmqvc+QbbDX3BOMwQOQBUh0AXCaLpBuq+iWsayyN+zOoYKw8BgKdx5MBAAh+QQFCgAPACwAAAAACgAIAAAEHJCceZ65hohdM8mb0BGfxlkkeHqqiJbhWFKyEQEAIfkECQoADwAsAAAAABAACAAABC9QiSneueeZvcX4jTVlBmEaHigKpEmg3xAeo+bCKs3aZyqvrV5sViudJBQLhveKAAAh+QQJCgAPACwAAAAAEAAIAAAEMPDJKap4Jx8ylB8PMwwMZnFJCoqkWaFqOJbHOaTJOrsCnMut2qvzAdJOE4oFoyFEAAAh+QQJCgAPACwAAAAAEAAIAAAEMvDJSZ+4Qi3E13OK4jzNYApLoCKPwimkOaBqwLoIXJ7p2r4xXu0G3M02nU9oZBRUnpUIACH5BAkKAA8ALAAAAAAQAAgAAAQv8MlJq30oozeUH0UgAk8iJlyigkBLmgE6qAnrlme6Fu6bz7uCsIDRcDyKwWX5iAAAIfkECQoADwAsAAAAABAACAAABCnwyUmrtQvpVYIHj+c9iMgBKBigAWkWqcq63pmGc1kXPP/0hUdmcyk+IgAh+QQFCgAPACwAAAAAEAAIAAAEI/DJSau9FIQN3t6PxgEk6ZFBWK5mgKpseWowWdz3gxf6jmERADs=') no-repeat right 4px;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/loading.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/app/loading.sass */
.loading .loading {
display: none;
}
-/* line 14, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/loading.sass */
+/* line 14, /Users/konstantin/Workspace/travis-web/assets/styles/app/loading.sass */
span.loading {
padding: 0 25px 0 0;
font-size: 12px;
color: #aaaaaa;
background: url('data:image/gif;base64,R0lGODlhEAAIALMPAOvr697e3qCgoLW1tYuLi/X19Wtra3t7e87OzsbGxqGhodfX142NjZaWlqurq////yH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzdGMTE3NDA3MjA2ODExOTJCMEVCMzUyOEYzRkIyNSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowQTRBOUU3MDAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowQTRBOUU2RjAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkY4N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEBQoADwAsAAAAABAACAAABCzQSPmqvc+QbbDX3BOMwQOQBUh0AXCaLpBuq+iWsayyN+zOoYKw8BgKdx5MBAAh+QQFCgAPACwAAAAACgAIAAAEHJCceZ65hohdM8mb0BGfxlkkeHqqiJbhWFKyEQEAIfkECQoADwAsAAAAABAACAAABC9QiSneueeZvcX4jTVlBmEaHigKpEmg3xAeo+bCKs3aZyqvrV5sViudJBQLhveKAAAh+QQJCgAPACwAAAAAEAAIAAAEMPDJKap4Jx8ylB8PMwwMZnFJCoqkWaFqOJbHOaTJOrsCnMut2qvzAdJOE4oFoyFEAAAh+QQJCgAPACwAAAAAEAAIAAAEMvDJSZ+4Qi3E13OK4jzNYApLoCKPwimkOaBqwLoIXJ7p2r4xXu0G3M02nU9oZBRUnpUIACH5BAkKAA8ALAAAAAAQAAgAAAQv8MlJq30oozeUH0UgAk8iJlyigkBLmgE6qAnrlme6Fu6bz7uCsIDRcDyKwWX5iAAAIfkECQoADwAsAAAAABAACAAABCnwyUmrtQvpVYIHj+c9iMgBKBigAWkWqcq63pmGc1kXPP/0hUdmcyk+IgAh+QQFCgAPACwAAAAAEAAIAAAEI/DJSau9FIQN3t6PxgEk6ZFBWK5mgKpseWowWdz3gxf6jmERADs=') no-repeat right 4px;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/misc.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/misc.sass */
.display {
display: block !important;
}
-/* line 6, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/misc.sass */
+/* line 6, /Users/konstantin/Workspace/travis-web/assets/styles/app/misc.sass */
.display-inline {
display: inline-block !important;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/misc.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/app/misc.sass */
.emoji {
vertical-align: middle;
width: 20px;
height: 20px;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/popup.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
.help {
display: inline-block;
height: 19px;
@@ -2057,7 +2057,7 @@ span.loading {
cursor: pointer;
}
-/* line 12, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/popup.sass */
+/* line 12, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
.popup {
top: 50%;
left: 50%;
@@ -2078,7 +2078,7 @@ span.loading {
-o-border-radius: 10px;
border-radius: 10px;
}
-/* line 20, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/popup.sass */
+/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
.popup .close {
position: absolute;
display: block;
@@ -2088,18 +2088,18 @@ span.loading {
height: 16px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjVFRDU4MEMwODk3MTFFMjkwNjNBMkQ0RTBDREI5REYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjVFRDU4MEQwODk3MTFFMjkwNjNBMkQ0RTBDREI5REYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCNUVENTgwQTA4OTcxMUUyOTA2M0EyRDRFMENEQjlERiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCNUVENTgwQjA4OTcxMUUyOTA2M0EyRDRFMENEQjlERiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgjNJDMAAABaUExURX9/f4GBgaCgoM7OzsnJycXFxby8vOPj44eHh5+fn9DQ0OLi4tzc3IKCgv39/d/f3+Dg4Ofn597e3ra2toWFheXl5bW1tZqamvj4+JmZmbu7u8bGxre3t////656HTcAAAAedFJOU///////////////////////////////////////AOwYHF4AAAB5SURBVHjaZE9HDgNBCDNM2d57Ev//m5nZnLJYQgILsA1mDCHGMNwtUjUqSBBtfkRdArrvCpR1JooV15aXtwtrQfQVjrN1pGvPA1WPUWSaO3iPbp5ERgQoHW44ahojFtInGfHkgteT+DxP3vapkTXGrHUb7j/+V4ABAB63DW3bAMwKAAAAAElFTkSuQmCC') no-repeat 0 0;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/popup.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
.popup h4 {
margin-top: 0;
font-size: 18px;
font-weight: bold;
color: #666666;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/popup.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
.popup p {
font-size: 13px;
}
-/* line 38, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/popup.sass */
+/* line 38, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
.popup pre {
background-color: #efefef;
margin: 0;
@@ -2111,23 +2111,23 @@ span.loading {
border-radius: 4px;
}
-/* line 44, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/popup.sass */
+/* line 44, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
#status-images {
display: none;
width: 600px;
height: 190px;
margin: -95px 0 0 -300px;
}
-/* line 50, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/popup.sass */
+/* line 50, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
#status-images p {
margin: 10px 0;
}
-/* line 52, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/popup.sass */
+/* line 52, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
#status-images p label {
width: 80px;
display: inline-block;
}
-/* line 55, /Users/sven/Development/projects/travis/travis-web/assets/styles/app/popup.sass */
+/* line 55, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
#status-images p input {
border: 1px solid #dddddd;
width: 505px;
@@ -2138,193 +2138,193 @@ span.loading {
-o-border-radius: 3px;
border-radius: 3px;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 4, /Users/sven/Development/projects/travis/travis-web/assets/styles/auth.sass */
+/* line 4, /Users/konstantin/Workspace/travis-web/assets/styles/auth.sass */
#auth #page {
display: block;
}
-/* line 7, /Users/sven/Development/projects/travis/travis-web/assets/styles/auth.sass */
+/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/auth.sass */
#auth #main {
top: 200px;
margin: 0 auto 0 auto;
@@ -2338,224 +2338,224 @@ span.loading {
-o-border-radius: 8px;
border-radius: 8px;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/auth.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/auth.sass */
#auth #main h1 {
margin-bottom: 1em;
color: #333333;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/auth.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/auth.sass */
#auth #main p {
color: #333333;
}
-/* line 24, /Users/sven/Development/projects/travis/travis-web/assets/styles/auth.sass */
+/* line 24, /Users/konstantin/Workspace/travis-web/assets/styles/auth.sass */
#auth #main a:hover {
text-decoration: underline;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
html, body {
height: 100%;
}
-/* line 8, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+/* line 8, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
.application {
width: 100%;
overflow: hidden;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
.application, .application > div {
width: 100%;
min-height: 100%;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
.application > div {
overflow-x: auto;
}
-/* line 20, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
#top {
position: absolute;
top: 0;
@@ -2565,7 +2565,7 @@ html, body {
z-index: 1000;
}
-/* line 28, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
#page {
position: relative;
display: -webkit-box;
@@ -2585,7 +2585,7 @@ html, body {
margin-top: 40px;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
#left, #right {
-webkit-box-flex: 0;
-moz-box-flex: 0;
@@ -2595,7 +2595,7 @@ html, body {
min-height: 100%;
}
-/* line 42, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+/* line 42, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
#left {
min-width: 250px;
max-width: 380px;
@@ -2609,12 +2609,12 @@ html, body {
}
@media screen and (max-width: 980px) {
- /* line 52, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+ /* line 52, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
#left {
max-width: 300px;
}
}
-/* line 55, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+/* line 55, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
#main {
-webkit-box-flex: 4;
-moz-box-flex: 4;
@@ -2626,7 +2626,7 @@ html, body {
padding: 20px 40px 80px 30px;
}
-/* line 62, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+/* line 62, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
#right {
width: 205px;
padding: 11px 20px 80px 20px;
@@ -2635,7 +2635,7 @@ html, body {
}
@media screen and (max-width: 1400px) {
- /* line 69, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+ /* line 69, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
#left .duration_label {
display: inline-block;
width: 11px;
@@ -2647,200 +2647,200 @@ html, body {
}
}
@media screen and (max-width: 1310px) {
- /* line 79, /Users/sven/Development/projects/travis/travis-web/assets/styles/layout.sass */
+ /* line 79, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
#left .finished_at_label {
display: none;
}
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 4, /Users/sven/Development/projects/travis/travis-web/assets/styles/left.sass */
+/* line 4, /Users/konstantin/Workspace/travis-web/assets/styles/left.sass */
#left #search_box {
height: 87px;
padding: 30px 20px 0 20px;
background-color: #e5e8ee;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/left.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/left.sass */
#left #search_box input[type=text] {
height: 28px;
width: 100%;
@@ -2856,15 +2856,15 @@ html, body {
border-radius: 4px;
background: white url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAOCAMAAAD32Kf8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6REM3OTNBODhGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6REM3OTNBODlGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpEQzc5M0E4NkZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpEQzc5M0E4N0ZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pl/Rd+IAAAAwUExURf///729vfz8/P7+/svLy/n5+b+/v/b29vDw8MbGxubm5uHh4e/v79ra2tTU1N7e3hix620AAABqSURBVHjadM/hCoAwCATg3c3NbbZ6/7dtEZQG3R/h4wRN6TdqUsX0gzuu7JEPiG0mODxmgRUWgwStUKasqF4pGGuM2OWEDA7B9Fo67htaxD7XvbMxYtOVQv9C742ZzOEFbn7z5Qff+inAAHofAl4uuqX6AAAAAElFTkSuQmCC') no-repeat right 8px;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/left.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/left.sass */
#left .tabs #tab_owned {
display: none;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/left.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/left.sass */
#left .tabs #tab_owned.display {
display: inline-block;
}
-/* line 28, /Users/sven/Development/projects/travis/travis-web/assets/styles/left.sass */
+/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/left.sass */
#left .toggle-info {
position: absolute;
right: 20px;
@@ -2875,194 +2875,194 @@ html, body {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAAAolt3jAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTRERjlGNzFGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTRERjlGNzJGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBNERGOUY2RkZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBNERGOUY3MEZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrjShEMAAAAYUExURcXHzOXo7t7h58/S2OHk6tbZ3tLU2sjL0fPgiwUAAABUSURBVHjaXI9REgAxBENJifvfeDX6sW1+4g0jmLeQZGJX5h7LpBUbo+yoolE9Qn03zOAYLEUpa6DMXRs42Hww/5izqoeVhwkigFLQe8Zz5PXCJ8AAgQMBRB2yVWkAAAAASUVORK5CYII=');
cursor: pointer;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts.open li .info,
#repos.open li .info {
display: block;
}
-/* line 8, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 8, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li,
#repos li {
position: relative;
@@ -3071,19 +3071,19 @@ html, body {
border-bottom: 1px solid #dddddd;
background-repeat: no-repeat;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li:nth-child(odd), #accounts li:nth-child(odd) .indicator span,
#repos li:nth-child(odd),
#repos li:nth-child(odd) .indicator span {
background-color: white;
}
-/* line 18, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 18, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li:nth-child(even), #accounts li:nth-child(even) .indicator span,
#repos li:nth-child(even),
#repos li:nth-child(even) .indicator span {
background-color: #f6f6f6;
}
-/* line 22, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 22, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li .slug-and-status,
#repos li .slug-and-status {
white-space: nowrap;
@@ -3091,7 +3091,7 @@ html, body {
text-overflow: ellipsis;
padding-right: 35px;
}
-/* line 28, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li .last_build,
#repos li .last_build {
position: absolute;
@@ -3099,7 +3099,7 @@ html, body {
right: 20px;
text-align: right;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li .summary,
#repos li .summary {
margin: 5px 0 0 15px;
@@ -3109,7 +3109,7 @@ html, body {
color: #999999;
font-size: 12px;
}
-/* line 45, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 45, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li .info,
#repos li .info {
overflow: hidden;
@@ -3119,7 +3119,7 @@ html, body {
color: #7f7f75;
display: none;
}
-/* line 52, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 52, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li .info p,
#repos li .info p {
margin: 0 -10px 0 -10px;
@@ -3128,7 +3128,7 @@ html, body {
-moz-box-shadow: #bab9a7 0 1px 8px 0 inset;
box-shadow: #bab9a7 0 1px 8px 0 inset;
}
-/* line 57, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 57, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li .indicator,
#repos li .indicator {
display: none;
@@ -3139,7 +3139,7 @@ html, body {
height: 100%;
overflow: hidden;
}
-/* line 66, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 66, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li .indicator span,
#repos li .indicator span {
position: relative;
@@ -3159,12 +3159,12 @@ html, body {
-moz-box-shadow: #cccccc 0 1px 8px 0;
box-shadow: #cccccc 0 1px 8px 0;
}
-/* line 78, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 78, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li.selected .indicator,
#repos li.selected .indicator {
display: block;
}
-/* line 81, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 81, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts .loading,
#repos .loading {
padding: 15px 25px 15px 30px;
@@ -3172,417 +3172,417 @@ html, body {
background-image: none;
}
-/* line 87, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 87, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li {
margin-left: -4px;
padding-left: 52px;
}
-/* line 90, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 90, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li.user {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAMCAMAAACOacfrAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Rjg2MkE3NjlGREQyMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Rjg2MkE3NkFGREQyMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGODYyQTc2N0ZERDIxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGODYyQTc2OEZERDIxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrJlFK8AAABLUExURX9/f4eHh4WFhZCQkPLy8oiIiNra2vDw8LGxsf7+/sLCwvb29oCAgI+Pj5mZmdXV1ba2toODg52dnfPz87i4uN3d3aGhod/f3////yHAc80AAAAZdFJOU////////////////////////////////wABNAq3AAAAV0lEQVR42lTM2Q6AIAxE0YGCsuMu//+llqREvckkPS9F42pec+0HeJEAUBQZzdJGNP+lWHYXtYV1jC8tsILIT4VVJt91Xwm9tJ0NDm8O9iML0mqk6RFgAMVgBry2iJEPAAAAAElFTkSuQmCC');
background-position: 29px 18px;
}
-/* line 93, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 93, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li.organization {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAMCAMAAAC3DnawAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTQ3QkUxMjJGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTQ3QkUxMjNGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGODYyQTc2QkZERDIxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGODYyQTc2Q0ZERDIxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnNJ4v8AAABgUExURX9/f4eHh5ubm5SUlIuLi/j4+NPT07Ozs9HR0ampqd7e3tnZ2aampsLCwoyMjMrKyuXl5ezs7KKiotzc3IGBgenp6eHh4ZeXl8DAwI+Pj/T09ImJia+vr9TU1P///5GRkUorc5sAAAAfdFJOU////////////////////////////////////////wDNGXYQAAAAjElEQVR42kSNiQ6DIBBEh0tYtJ4ohbb4/3/pKja+hM3yNplBqSxKqOXewc+7qSgAqkzOVzcC0Wh22kRgvFwLiNyz67MA2st5IOXELhm++Jon8SpvdueUNW/bQebHrjGEfWO3UoCwzcxubuwHgVZwLDkbcBK+jrgQMtpB448ebJS14+HuKJ146Ph/CDAAJA8LS8ZE6XkAAAAASUVORK5CYII=');
background-position: 24px 18px;
}
-/* line 96, /Users/sven/Development/projects/travis/travis-web/assets/styles/left/list.sass */
+/* line 96, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
#accounts li .summary {
margin-left: 0;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 4, /Users/sven/Development/projects/travis/travis-web/assets/styles/main.sass */
+/* line 4, /Users/konstantin/Workspace/travis-web/assets/styles/main.sass */
#main h3 {
margin: 15px 60px 0 0;
font-size: 24px;
}
-/* line 7, /Users/sven/Development/projects/travis/travis-web/assets/styles/main.sass */
+/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/main.sass */
#main h3 a {
text-decoration: underline;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/main.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/main.sass */
#stats #main {
width: 600px;
padding: 20px 0 0 0;
margin-left: auto;
margin-right: auto;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/list.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
table.list {
width: 100%;
margin: 25px 0 0 12px;
border-spacing: 0;
}
-/* line 8, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/list.sass */
+/* line 8, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
table.list a {
text-decoration: underline;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/list.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
table.list caption {
margin-bottom: 8px;
text-align: left;
@@ -3590,36 +3590,36 @@ table.list caption {
font-size: 15px;
font-weight: bold;
}
-/* line 18, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/list.sass */
+/* line 18, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
table.list td, table.list th {
text-align: left;
font-size: 12px;
padding: 5px 20px 5px 0;
vertical-align: top;
}
-/* line 24, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/list.sass */
+/* line 24, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
table.list tr {
max-height: 20px;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/list.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
table.list th {
font-size: 13px;
color: #666666;
white-space: nowrap;
border-bottom: 2px solid white;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/list.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
table.list td {
white-space: nowrap;
border-bottom: 2px solid white;
}
-/* line 36, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/list.sass */
+/* line 36, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
table.list td.message {
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/list.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
table.list td:first-child {
-moz-border-radius-topleft: 4px;
-webkit-border-top-left-radius: 4px;
@@ -3628,7 +3628,7 @@ table.list td:first-child {
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
}
-/* line 44, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/list.sass */
+/* line 44, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
table.list td:last-child {
-moz-border-radius-topright: 4px;
-webkit-border-top-right-radius: 4px;
@@ -3637,193 +3637,193 @@ table.list td:last-child {
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
-/* line 47, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/list.sass */
+/* line 47, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
table.list tr.message, table.list td.message {
width: 100%;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
pre#log {
position: relative;
clear: left;
@@ -3846,71 +3846,71 @@ pre#log {
border-radius: 4px;
overflow-x: scroll;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
pre#log p {
position: relative;
padding: 0 15px 0 50px;
margin: 0;
min-height: 16px;
}
-/* line 26, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 26, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
pre#log p:hover {
background-color: rgba(255, 255, 255, 0.05);
}
-/* line 28, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
pre#log p.highlight {
background-color: rgba(255, 255, 255, 0.05);
}
-/* line 30, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
pre#log p a {
position: absolute;
margin-left: -40px;
cursor: pointer;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
pre#log .fold {
height: 16px;
overflow: hidden;
background: #444444 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAMAAAC67D+PAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTRERjlGNkRGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTRERjlGNkVGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBNERGOUY2QkZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBNERGOUY2Q0ZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmdgXcEAAAAeUExURWxsbFNTU0xMTGNjY2lpaWFhYVhYWGZmZltbW////wp5o+oAAAAKdFJOU////////////wCyzCzPAAAANUlEQVR42mLghAMGCMXEDGNyMDBAmIwsDBAmEzMDA5QJFoMpYEMwOZlY4UygTnY4EwQAAgwAibsCe7OiFncAAAAASUVORK5CYII=') no-repeat 99.5% 2px;
cursor: pointer;
}
-/* line 40, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 40, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
pre#log .fold.open {
height: auto;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAMAAAC67D+PAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTQ3QkUxMkFGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTQ3QkUxMkJGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5NDdCRTEyOEZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5NDdCRTEyOUZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PiaL71AAAAAeUExURWxsbFNTU0xMTGNjY2lpaWFhYVhYWGZmZltbW////wp5o+oAAAAKdFJOU////////////wCyzCzPAAAANklEQVR42mLghAMGZCYzAxiwA5lMECYjSAEHiMUKUcsCZDJBmIwMDGwwE5hZ4IYxMaKZCxBgAILZAnvfiU1fAAAAAElFTkSuQmCC');
}
-/* line 44, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 44, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#log.loading {
padding: 25px 0 0 10px;
}
-/* line 47, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 47, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#log::-webkit-scrollbar {
height: 10px;
width: 10px;
}
-/* line 51, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 51, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#log::-webkit-scrollbar-button:start:decrement,
#log::-webkit-scrollbar-button:end:increment {
display: none;
}
-/* line 55, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 55, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#log::-webkit-scrollbar-track-piece {
background: #444444;
-webkit-border-radius: 4px;
}
-/* line 59, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 59, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#log::-webkit-scrollbar-thumb:horizontal {
background: -webkit-gradient(linear, left top, left bottom, from(#85888e), to(#55585e));
-webkit-border-radius: 4px;
width: 25px;
}
-/* line 64, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 64, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#log #tail {
z-index: 99;
position: absolute;
@@ -3940,20 +3940,20 @@ pre#log .fold.open {
background: -o-linear-gradient(#ffffff, #e0e0e0);
background: linear-gradient(#ffffff, #e0e0e0);
}
-/* line 85, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 85, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#log #tail label {
display: none;
cursor: pointer;
}
-/* line 89, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 89, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#log #tail:hover {
padding: 1px 4px 1px 6px;
}
-/* line 91, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 91, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#log #tail:hover label {
display: inline;
}
-/* line 94, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 94, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#log #tail .status {
display: inline-block;
margin-right: 1px;
@@ -3969,18 +3969,18 @@ pre#log .fold.open {
-moz-box-shadow: white 1px 1px 2px;
box-shadow: white 1px 1px 2px;
}
-/* line 103, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 103, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#log #tail.active .status {
background-color: #66bb00;
}
-/* line 107, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 107, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#main .sponsor {
float: left;
margin-top: 0;
color: #999999;
}
-/* line 111, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/log.sass */
+/* line 111, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
#main .to-top {
float: right;
margin-right: 2px;
@@ -3988,216 +3988,216 @@ pre#log .fold.open {
color: #999999;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAMAAABLuo1aAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzQ5OUVDMzFGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzQ5OUVDMzJGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDNDk5RUMyRkZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDNDk5RUMzMEZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pn1VcZAAAAAGUExURcLCwv///7ZovVQAAAACdFJOU/8A5bcwSgAAACBJREFUeNpiYAQCBgYwCWaB2QwQFojNAGUxIBhAABBgAAM5ABUYaN+yAAAAAElFTkSuQmCC') no-repeat right 6px;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/repository.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
#repo {
position: relative;
width: 100%;
overflow-x: hidden;
padding-right: 10px;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/repository.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
#repo .description, #repo .language {
font-weight: normal;
color: #999999;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/repository.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
#repo .language {
display: none;
padding-right: 5px;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/repository.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
#repo .github-stats {
position: absolute;
top: 15px;
right: 10px;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/repository.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
#repo .github-stats > * {
float: left;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/repository.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
#repo .github-stats a {
height: 16px;
display: block;
@@ -4209,228 +4209,228 @@ pre#log .fold.open {
background: no-repeat 0px 2px;
color: #999999;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/repository.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
#repo .github-stats a.watchers {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzAyMjQzMTJGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzAyMjQzMTNGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDMDIyNDMxMEZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDMDIyNDMxMUZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Piet84cAAAAwUExURZycnLq6utDQ0JCQkK2trezs7MvLy/b29tTU1PDw8Pz8/KSkpPPz8+Hh4cXFxf///4r68HYAAAAQdFJOU////////////////////wDgI10ZAAAAWUlEQVR42qTO0Q6AIAgFUOQiimL9/9+G1Vzrse4TOxtcaH+FvoKpiNqCkkDMhFQuGITezFoHjQkVQDXAziGAb/AJvFbc10p0xFHVOOqrNm8iW/73+iOHAAMAVlIL9c8yrmkAAAAASUVORK5CYII=');
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/repository.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
#repo .github-stats a.forks {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzAyMjQzMTZGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0U1QTlDREFGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDMDIyNDMxNEZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDMDIyNDMxNUZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PopAyIgAAAAwUExURebm5vj4+Kurq7u7u9ra2v39/fLy8tXV1ZCQkMTExM3NzZqamtDQ0MrKypOTk////1zRGooAAAAQdFJOU////////////////////wDgI10ZAAAAYUlEQVR42pSPQRLAIAjEwKqsivr/3xash7Y3czMOGaD5g45E0uTiMsSfUoFsoo0B6OQAxwQz5wBNoVBD2g371h3c0WX4EWSEbqbGsUY8NcorGkUk+pR0gD+LsRzfsrgFGABEEAvG8TNu0wAAAABJRU5ErkJggg==');
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/summary.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
#summary {
margin: 0 0 0 12px;
overflow: hidden;
*zoom: 1;
}
-/* line 7, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/summary.sass */
+/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
#summary .left,
#summary .right {
float: left;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/summary.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
#summary a {
text-decoration: underline;
}
-/* line 14, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/summary.sass */
+/* line 14, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
#summary dt, #summary dd {
float: left;
min-height: 25px;
margin: 0;
}
-/* line 18, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/summary.sass */
+/* line 18, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
#summary dt {
clear: left;
width: 90px;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/summary.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
#summary dd {
width: 150px;
white-space: nowrap;
}
-/* line 24, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/summary.sass */
+/* line 24, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
#summary > dd {
width: 80%;
min-width: 315px;
@@ -4438,200 +4438,200 @@ pre#log .fold.open {
text-overflow: ellipsis;
white-space: nowrap;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/summary.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
#summary .message {
white-space: normal;
min-width: 0;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/tools.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
#tools {
position: relative;
float: right;
top: 2px;
}
-/* line 7, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/tools.sass */
+/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
#tools > a {
display: block;
width: 39px;
@@ -4640,7 +4640,7 @@ pre#log .fold.open {
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAVCAMAAADyzwehAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzQ5OUVDMkRGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzQ5OUVDMkVGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCMDg5Q0VBMEZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDNDk5RUMyQ0ZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqCj7TcAAADAUExURfHx8fr6+vPz8/b29rS0tHR0dI2Njejo6G1tbe3t7WZmZufo59ra2pKSkuDg4Pz8/OTk5N7e3v///6+vr+Li4ru7u/j4+O7u7vX19erq6fr6+e/v7/z8++bm5uvr6+Pk5IWFheHh4efn5pWVlePk493d3dfX1729vd/f3/39/Xt7e+jn6ICAgPT09K6uruXl5ebn5qWlpVpaWuXm5ZCPkKysrNLS0sXFxc3Nzbm5uYmJiWJiYvf49vf3+Ojo5+zs6+qxzm8AAAFZSURBVHjahJLrcoIwEEYXUYjcFAuEFBGFCoKI93tb3/+tuiFOnXEcOTtJdr89PwOyYUz675kYhgz9gzdowjv0IZMGee89+UDKwO0NsR0iInzZ9VxwJc4nIjmbjSO6R3bv0PNkjwNaCtcrpBrwSWSPDj1frqtDNJMQUyMdWZb950Kv5dcFZaemhMWCz4v7EYUe1MyCdrEGWBftYFYHrfsRoEcDXoQUJQ/KgpAAZ00QiC1Fb0R5jRHu8beL863WblRsR+gxxkaMAVSXhNLkUgFgwm4/qPldJrYMPXWuM1UHW1HGhIwVxdZ1XZ3/qj/a91zVxVZHL4zDeBmHyi7Z73b7ZKdst2EYr8KwtQrxFlv0vvoR/okIKkpNk9IKoiiqsyV/7lv0HAEFsJPEBqDOC9Cz/ukCdK0Jx3oGvZndzMyFLHWsJpw0g+nxNG3QpqfjFHL7/NHE2c7/BBgA41Q9vbXvgN4AAAAASUVORK5CYII=') no-repeat;
cursor: pointer;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/tools.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
#tools .menu {
display: none;
position: absolute;
@@ -4659,16 +4659,16 @@ pre#log .fold.open {
-moz-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/tools.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
#tools .menu a {
display: block;
padding: 5px 25px 5px 25px;
}
-/* line 28, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/tools.sass */
+/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
#tools .menu a:hover {
background-color: #f6f6f6;
}
-/* line 30, /Users/sven/Development/projects/travis/travis-web/assets/styles/main/tools.sass */
+/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
#tools .menu a:last-child {
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;
@@ -4677,198 +4677,198 @@ pre#log .fold.open {
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 4, /Users/sven/Development/projects/travis/travis-web/assets/styles/maximize.sass */
+/* line 4, /Users/konstantin/Workspace/travis-web/assets/styles/maximize.sass */
.maximized #right {
width: 0;
padding: 0;
}
-/* line 7, /Users/sven/Development/projects/travis/travis-web/assets/styles/maximize.sass */
+/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/maximize.sass */
.maximized #right *:not(#slider):not(.icon):not(.ember-view) {
display: none;
}
-/* line 10, /Users/sven/Development/projects/travis/travis-web/assets/styles/maximize.sass */
+/* line 10, /Users/konstantin/Workspace/travis-web/assets/styles/maximize.sass */
.maximized #slider {
left: -20px;
width: 20px;
@@ -4880,198 +4880,198 @@ pre#log .fold.open {
border-bottom-left-radius: 4px;
}
-/* line 18, /Users/sven/Development/projects/travis/travis-web/assets/styles/maximize.sass */
+/* line 18, /Users/konstantin/Workspace/travis-web/assets/styles/maximize.sass */
#top .profile {
margin-right: 140px;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/maximize.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/maximize.sass */
.maximized #top .profile {
margin-right: 40px;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
#profile #main img {
float: left;
width: 48px;
@@ -5084,33 +5084,33 @@ pre#log .fold.open {
border-radius: 4px;
background-color: #dddddd;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
#profile #main dl {
float: left;
margin: 0 0 20px 0;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
#profile #main dt {
display: block;
clear: left;
float: left;
width: 50px;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
#profile #main dd {
float: left;
margin-left: 0;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
#profile #main form {
clear: left;
}
-/* line 30, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile.sass */
+/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
#profile #main .tip {
margin-top: -5px;
color: #999999;
}
-/* line 34, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile.sass */
+/* line 34, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
#profile #main .message {
margin-top: 20px;
padding: 10px 10px;
@@ -5122,198 +5122,198 @@ pre#log .fold.open {
-o-border-radius: 4px;
border-radius: 4px;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
#profile #main .message .sync_now {
float: right;
margin-top: -3px;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks {
margin-top: 10px;
}
-/* line 7, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li {
position: relative;
height: 19px;
@@ -5322,33 +5322,33 @@ pre#log .fold.open {
overflow: hidden;
border-bottom: 1px solid #dddddd;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li:nth-child(3) {
border-top: 1px solid #dddddd;
}
-/* line 18, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 18, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li:nth-child(odd) {
background-color: #fafbfc;
}
-/* line 20, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li:nth-child(odd) .controls {
background: #fafbfc;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li:nth-child(even) {
background-color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li:nth-child(even) .controls {
background: white;
}
-/* line 28, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li > a {
float: left;
font-size: 15px;
text-decoration: none;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li .description {
display: none;
margin-left: 10px;
@@ -5359,19 +5359,19 @@ pre#log .fold.open {
text-overflow: ellipsis;
color: #999999;
}
-/* line 43, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 43, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li .controls {
position: absolute;
top: 10px;
right: 0;
white-space: nowrap;
}
-/* line 48, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 48, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li .controls a {
float: left;
display: block;
}
-/* line 52, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 52, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li .github-admin {
position: relative;
height: 20px;
@@ -5379,7 +5379,7 @@ pre#log .fold.open {
padding-right: 0;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0U1QTlDRERGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0U1QTlDREVGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDRTVBOUNEQkZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDRTVBOUNEQ0ZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PugPDoAAAAAwUExURaampre3t7S0tLm5udra2tLS0tzc3ODg4MfHx7+/v+bm5urq6s7Ozv///6ioqNbW1njQEeIAAAAOdFJOU/////////////////8ARcDcyAAAAF1JREFUeNp8j0sSgCAMQ0M/FkH0/rcVXBTqjHaX109StFfhBwhbAAKNEwm1NVsAIRelCRSjNgdDJxa/sXd9uO3F1LV5DhnLp81gpCUjLUl7rwbweEgAxtv3t7cAAwC4EAqg5decxgAAAABJRU5ErkJggg==') no-repeat 3px 4px;
}
-/* line 61, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 61, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li .switch {
position: relative;
display: block;
@@ -5407,7 +5407,7 @@ pre#log .fold.open {
cursor: pointer;
text-align: right;
}
-/* line 77, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 77, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li .switch:before {
content: "";
position: absolute;
@@ -5430,7 +5430,7 @@ pre#log .fold.open {
-o-border-radius: 4px;
border-radius: 4px;
}
-/* line 89, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 89, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li.active .switch {
width: 56px;
padding: 0 0 0 14px;
@@ -5446,214 +5446,214 @@ pre#log .fold.open {
color: white;
text-align: left;
}
-/* line 97, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 97, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li.active .switch:before {
left: auto;
right: -1px;
}
-/* line 103, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 103, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li:hover > a {
color: #c7371a;
}
-/* line 106, /Users/sven/Development/projects/travis/travis-web/assets/styles/profile/hooks.sass */
+/* line 106, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
#hooks li:hover .description {
display: inline;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/right.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
#right {
padding-bottom: 80px;
}
-/* line 6, /Users/sven/Development/projects/travis/travis-web/assets/styles/right.sass */
+/* line 6, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
#right h4 {
margin: 24px 0 0 0;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/right.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
#right ul {
margin-top: 10px;
}
-/* line 12, /Users/sven/Development/projects/travis/travis-web/assets/styles/right.sass */
+/* line 12, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
#right .box {
margin-top: 25px;
padding: 15px;
@@ -5665,21 +5665,21 @@ pre#log .fold.open {
-o-border-radius: 4px;
border-radius: 4px;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/right.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
#right .box h4 {
margin: 0;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/right.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
#right .box a {
text-decoration: underline;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/right.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
#right .box li {
list-style-type: square;
margin-left: 15px;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/right.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
#slider {
position: absolute;
height: 100%;
@@ -5690,197 +5690,197 @@ pre#log .fold.open {
cursor: pointer;
background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAKCAMAAABL52QCAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6REM3OTNBODRGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6REM3OTNBODVGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpEQzc5M0E4MkZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpEQzc5M0E4M0ZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PhC9j6AAAAAGUExURZmZmf///4PuMxkAAAACdFJOU/8A5bcwSgAAACBJREFUeNpiYGAEAgYGBgjJACEZICQyQMiCVYJ0AQQYAAKAABX7Qf3pAAAAAElFTkSuQmCC') no-repeat 3px 10px;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/right.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
#slider:hover {
background-color: #e1e2e6;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 4, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 4, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #queues {
margin-top: 0;
}
-/* line 7, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #toggle-workers {
display: inline-block;
float: right;
@@ -5889,15 +5889,15 @@ pre#log .fold.open {
cursor: pointer;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAMAAABLuo1aAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjA4OUNFOTZGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjA4OUNFOTdGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDRTVBOUNFM0ZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDRTVBOUNFNEZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk+wkAkAAAAGUExURcLCwv///7ZovVQAAAACdFJOU/8A5bcwSgAAAB5JREFUeNpiYEAARgSDEcpmBDEZISwwkxHMYgQIMAABgQAVaDDWjAAAAABJRU5ErkJggg==') no-repeat left 5px;
}
-/* line 14, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 14, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #toggle-workers.open {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAMAAABLuo1aAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjA4OUNFOUFGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjA4OUNFOUJGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCMDg5Q0U5OEZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCMDg5Q0U5OUZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvT/PYIAAAAGUExURcLCwv///7ZovVQAAAACdFJOU/8A5bcwSgAAACBJREFUeNpiYAQCBgYwCWaB2QwQFojNAGUxIBhAABBgAAM5ABUYaN+yAAAAAElFTkSuQmCC');
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #workers li ul {
display: none;
}
-/* line 20, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #workers li,
#right #queues ul li {
overflow: hidden;
@@ -5905,7 +5905,7 @@ pre#log .fold.open {
margin: 0;
list-style-type: none;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #workers li h5,
#right #queues ul li h5 {
font-size: 12px;
@@ -5913,14 +5913,14 @@ pre#log .fold.open {
margin: 0px;
cursor: pointer;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #workers li ul,
#right #queues ul li ul {
margin-top: 8px;
margin-bottom: 5px;
padding-left: 1px;
}
-/* line 38, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 38, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #workers li .name,
#right #workers li .slug,
#right #queues ul li .name,
@@ -5930,22 +5930,22 @@ pre#log .fold.open {
white-space: nowrap;
text-overflow: ellipsis;
}
-/* line 45, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 45, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #workers li .name,
#right #queues ul li .name {
max-width: 140px;
}
-/* line 48, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 48, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #workers li .slug,
#right #queues ul li .slug {
max-width: 150px;
}
-/* line 51, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 51, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #workers li.open ul,
#right #queues ul li.open ul {
display: block;
}
-/* line 54, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/lists.sass */
+/* line 54, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
#right #workers li .status,
#right #queues ul li .status {
display: inline-block;
@@ -5958,193 +5958,193 @@ pre#log .fold.open {
-o-border-radius: 4px;
border-radius: 4px;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .sponsors.top {
height: 140px;
}
-/* line 8, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 8, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .sponsors.top li {
overflow: hidden;
width: 205px;
@@ -6157,11 +6157,11 @@ pre#log .fold.open {
border-radius: 8px;
list-style-type: none;
}
-/* line 16, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 16, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .sponsors.top a {
overflow: hidden;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .sponsors.top img {
z-index: 200;
overflow: hidden;
@@ -6172,424 +6172,424 @@ pre#log .fold.open {
-o-border-radius: 8px;
border-radius: 8px;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .sponsors .platinum {
height: 130px;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .sponsors .platinum img {
height: 130px;
}
-/* line 30, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .sponsors .gold {
height: 60px;
}
-/* line 32, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 32, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .sponsors .gold img {
height: 60px;
}
-/* line 36, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 36, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .sponsors .silver h5 {
margin: 0;
}
-/* line 38, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 38, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .sponsors .silver p {
margin: 0;
}
-/* line 42, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 42, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .box .sponsors li {
list-style-type: none;
margin-left: 0;
padding-bottom: 12px;
}
-/* line 46, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 46, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .box .sponsors a {
color: #575c7c;
font-weight: bold;
text-decoration: none;
}
-/* line 51, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 51, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .hint {
margin: 0 0 0 2px;
font-size: 11px;
text-align: left;
}
-/* line 55, /Users/sven/Development/projects/travis/travis-web/assets/styles/right/sponsors.sass */
+/* line 55, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
#right .hint a {
color: #999999;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/stats.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/stats.sass */
#repo_count_container,
#build_count_container {
width: 100%;
height: 300px;
margin: 30px 0;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
.status {
display: inline-block;
width: 10px;
@@ -6602,281 +6602,281 @@ pre#log .fold.open {
border-radius: 5px;
}
-/* line 12, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 12, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
#repos .status,
.number .status {
background-color: #e7d100;
}
-/* line 14, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 14, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
#repos a,
.number a {
color: #666666;
}
-/* line 20, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
#repos .green .status,
.green #summary .number .status,
.list .green .number .status {
background-color: #368c2a;
}
-/* line 22, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 22, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
#repos .green a,
.green #summary .number a,
.list .green .number a {
color: #038035;
}
-/* line 28, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
#repos .red .status,
.red #summary .number .status,
.list .red .number .status {
background-color: #cc3d3d;
}
-/* line 30, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
#repos .red a,
.red #summary .number a,
.list .red .number a {
color: #cc0000;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
table.list tbody td {
cursor: pointer;
background-color: #fffcf4;
}
-/* line 38, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 38, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
table.list tbody tr:hover td {
background-color: #ffffe1;
}
-/* line 42, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 42, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
table.list .green td {
background-color: #fafffa;
}
-/* line 44, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 44, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
table.list .green:hover td {
background-color: #dcffdc;
}
-/* line 46, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 46, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
table.list .green .number a {
color: #038035;
}
-/* line 50, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 50, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
table.list .red td {
background-color: snow;
}
-/* line 52, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 52, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
table.list .red:hover td {
background-color: #ffdcdc;
}
-/* line 54, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 54, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
table.list .red .number a {
color: #cc0000;
}
-/* line 58, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 58, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
#workers .status {
background-color: #368c2a;
}
-/* line 61, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 61, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
#workers .waiting .status {
background-color: #368c2a;
}
-/* line 64, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 64, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
#workers .errored .status {
background-color: #cc3d3d;
}
-/* line 67, /Users/sven/Development/projects/travis/travis-web/assets/styles/status.sass */
+/* line 67, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
#workers .stopped .status {
background-color: #999999;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
.tabs {
height: 29px;
border-bottom: 1px solid #cccccc;
}
-/* line 7, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
.tabs li {
display: inline-block;
height: 28px;
@@ -6892,246 +6892,246 @@ table.list .red .number a {
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
.tabs li:hover {
background-color: white;
}
-/* line 20, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
.tabs .active {
background-color: white;
border-bottom-color: white;
}
-/* line 24, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 24, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
.tabs h5 {
margin: 0;
font-size: 12px;
font-weight: normal;
line-height: 30px;
}
-/* line 30, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
.tabs h5 a {
display: block;
padding: 0 10px;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
#left .tabs {
margin-top: -29px;
}
-/* line 38, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 38, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
#left .tabs li:first-child {
margin-left: 20px;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
#left #tab_search:not(.active) {
display: none;
}
-/* line 45, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 45, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
#main .tabs {
margin-top: 35px;
}
-/* line 47, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 47, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
#main .tabs a {
text-decoration: none;
}
-/* line 50, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 50, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
#main .tab {
margin-top: 20px;
}
-/* line 53, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 53, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
#main #tab_build,
#main #tab_job {
display: none;
}
-/* line 59, /Users/sven/Development/projects/travis/travis-web/assets/styles/tabs.sass */
+/* line 59, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
#profile #main .tab {
margin: 30px 0 0 12px;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/sven/Development/projects/travis/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top {
line-height: 40px;
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #444444), color-stop(100%, #111111));
@@ -7141,7 +7141,7 @@ table.list .red .number a {
background: linear-gradient(#444444, #111111);
font-size: 13px;
}
-/* line 8, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 8, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top h1 {
float: left;
width: 73px;
@@ -7150,71 +7150,71 @@ table.list .red .number a {
text-indent: -9999px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEkAAAAeCAMAAABXJsOhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUZGRkVGNjVGQTE0MTFFMUEzNzhDNjZGM0QyMzVGNUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUZGRkVGNjZGQTE0MTFFMUEzNzhDNjZGM0QyMzVGNUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5RkZGRUY2M0ZBMTQxMUUxQTM3OEM2NkYzRDIzNUY1QiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5RkZGRUY2NEZBMTQxMUUxQTM3OEM2NkYzRDIzNUY1QiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqH5DXgAAAMAUExURSQkJOrq6qqqqrs7OXJycnx8fM/Pz6Ojo8NCPLIYF7s3NPLy8oY1LiwsLM7Ozvjy8r80LkJCQtJfVbskHFQdH8k5K785MrlNPeOvrME4MbouLMA0LrwyLuWzsrMnKslmZfT09M5zcoGBgWJiYrIoK/r6+vf392VlZbYqK7YuLc5OPTExMcdjZO7OzcExKN3d3fXm5cAmG8E2MLUoK8U1KfDMybgtLOXl5bgnI7swLsbGxv39/ZKSksA+OtJzb5iYmPHg4F5eXsU6MJSUlFhYWMEtItTU1DU1NcM4MO/v725ubnkkJElJSfDRz81vb7otKcLCwu7IxcIwJVJSUtiGg+m+vbW1tUo6Nfj4+GhoaIk7MsEtLTk5OcQxL+Li4tuJhPnv796TjtCBg/78/DAeHL4tLLsmK5ycnMRDNb8yLvTj49JgVcI9M8o/Mrm5ucdIQLYhHrQiIcc8Ms5WTNWDgn0rKKysrIyMjHUjI+Dg4MU2K89NPLovLdF+fr0oIa4bHszMzNJBM7YwLoqKivbo6L4qLNaEgrgnJlZWVrIgIOvDwtE+M74xK9BNPOGrqbgrK8g/M8ErILIsLLEeILQqK+/JxjspJj4sKbosLMo+MsAzLdFwa85uak5OTtBgWHsoJ889M8o+MDgmJDYjIbwxLs07Mco2MLo1L1YdH70zLr0nK7MkJ0IwLck9MoEvK8IuJEAuK7wqJDMgH/////7+/rcsK+3t7fv4+dfX174zLr6+voWFhbUpK7snLD8/P/Tb2P7///rx8DkxLh0dHbYwMd6PicMyKNlCNO3Dv7syLnlCOdWEhM9va/z6+sA5M8g2L8+BgslhXee+veOtq+SurK0NDMlGPcs4Mfjp5/fu7u/Pzb4xLtycnPXg3q4oKtB1c9d7dbCwsMpra8trbLtAQc1rabclI9jY2MI0Kr8oLMtJPLIjJ8xvcOvOzu/LyPjx8fr29sRRUcJZWc9bUvDU0/PY1kI4NLkoI9eIiLwvKr4tJrgzL/jr6tRzbsg8Mf///5ksZz8AAAEAdFJOU////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wBT9wclAAAEF0lEQVR42pTWC1xTVRwH8IswRIjYENdgQ+bGYDYEHZbx0liTyVwmoOSSh0IxQ4YOK4oyIynEUrClFcZ6YbGslv6Hgg6iLHoZWdHL3mWlvd/vPP3PuRtCLz73d++5957/Z/f72Tm757PLEfLThf8VIiQcee7MLVePzqneljMESU+sarTbp/xL7rHbn75IiPTQKrvdvm41TTTdov2Xqz+ztzUKk2ruaJvyTBb8PZU7Z7c1niZMeriuoWAg/hXZ8LBsWCajJ5ls6w+wc3bdTYKkR2tO1jVs35/jmb8NMzjooafCWU8Jl26rOWlAaU3DOpfL9X2dYY0r2uV6zbMSDg8a7h5H6kgeI0kNhuMoeQpwcprC5pfTSZo7i0m7xpGugJKx0oLjBfvDPGdVbv3jTSq9XDAwd/JK752phl2P/L+UnWcaJe1AKXU7vPNY5dfir6LCtpXDS+/DGz+ugMOFC8aTxs7TDqlenzpc3dRU/WXO0aica8sHPv6zembTzOqEwtjXqZSrJjqrmRCTaJ5N1U/IphD2RXTmTaTIHEk4Tp1t22ihUrher4+VDg1JY28+H6Ul8N5vQ1IMlpkU+ml/PhQTaxJoloEyl4hgI5XMXhXOk4noMiFLCZBNuHsf0Mv18nZ5e3t7QNqD11iRy+9nUllPqMiiS4owEs7sPUB0mjwqFWt0TFKBLZJI8kCCklzMp5dKk5fAtD3+gvjFy6kEBzhCjHPq6f1lZWiAhJBIZS0hE1CaCLlYNxYbqdTbK+7F5v6VSjeixPdHpKLApParvHMISabDs4KVl9SQX9/BZvy+3y9VuBVut1uhQCmYSj/TvkLhFpdS6XQv+1zJvNAk2KdEiQvC4X2Qz1FJR7iQIABlrZFKb3UqOnFXdF5wNCp4LUrn8H3Fs7yUTyWLMuI8tYTrQYnYcFKUE4lfOkQ6Di72QghKnRkYPMS1UukymPZJhj+ld1FpH2E3GenpKipZoF7NhkylIjZ2NYRye6/PuIYlo3ntDCZ9OCnOXxolLQb6FBmBSiSvZ0Ia8Uu1+BviiDXXcXunx/Fp/iX+8RXhKM2I/7aZL5UuHJGyIdNqtSmDltFFq4Kk+oCUDGmiXHMmqKh0NotjM7xwbrhz/TcACQ6+tPyUxBV7AdKKRBBBn2+NtyQgHQopwyUfdJBwF99yezeLY2nWd8ema8OD34YUB19iUiA6SSQeTZH/XHEmC3VRatW2dmND6clJLQ7nq8+j1KrVdndrl18pZAVTiaVlqXf9R4u+WJQQDyktfOkSgZLPp/Vpb/U5N4/8GyQ4fSw3CJMSfbjhvjulouJIBc2RY7uRSU8XKr2bPpUl0bkhkM8T+dIJQRJZeKKKT19V1airvr6qB6cKey8gMTExXV2sdbGwPusIesP4S4ABALuzx/Q14rYaAAAAAElFTkSuQmCC') no-repeat;
}
-/* line 16, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 16, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top ul {
list-style-type: none;
}
-/* line 19, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top a, #top span {
color: #cccccc;
text-decoration: none;
}
-/* line 23, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top li {
display: inline-block;
}
-/* line 26, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 26, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top li.active {
background-color: black;
}
-/* line 28, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top li.active a {
color: white;
}
-/* line 31, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top li a, #top li span {
display: block;
padding: 0 15px;
}
-/* line 34, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 34, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top li a:hover, #top li span:hover {
color: white;
}
-/* line 37, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile {
position: relative;
float: right;
}
-/* line 41, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile .handle {
margin: 0;
}
-/* line 44, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 44, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile .signed-out, #top .profile .signing-in, #top .profile .signed-in {
display: none;
padding: 0 15px 0 45px;
}
-/* line 47, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 47, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile .signed-out, #top .profile .signing-in {
min-width: 110px;
}
-/* line 49, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 49, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile.signed-out .signed-out {
display: block;
}
-/* line 51, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 51, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile.signing-in .signing-in {
display: inline-block;
}
-/* line 53, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 53, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile.signed-in .signed-in {
display: block;
}
-/* line 56, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 56, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile .signing-in {
background: url('data:image/gif;base64,R0lGODlhEAAIALMPAOvr697e3qCgoLW1tYuLi/X19Wtra3t7e87OzsbGxqGhodfX142NjZaWlqurq////yH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzdGMTE3NDA3MjA2ODExOTJCMEVCMzUyOEYzRkIyNSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowQTRBOUU3MDAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowQTRBOUU2RjAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkY4N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEBQoADwAsAAAAABAACAAABCzQSPmqvc+QbbDX3BOMwQOQBUh0AXCaLpBuq+iWsayyN+zOoYKw8BgKdx5MBAAh+QQFCgAPACwAAAAACgAIAAAEHJCceZ65hohdM8mb0BGfxlkkeHqqiJbhWFKyEQEAIfkECQoADwAsAAAAABAACAAABC9QiSneueeZvcX4jTVlBmEaHigKpEmg3xAeo+bCKs3aZyqvrV5sViudJBQLhveKAAAh+QQJCgAPACwAAAAAEAAIAAAEMPDJKap4Jx8ylB8PMwwMZnFJCoqkWaFqOJbHOaTJOrsCnMut2qvzAdJOE4oFoyFEAAAh+QQJCgAPACwAAAAAEAAIAAAEMvDJSZ+4Qi3E13OK4jzNYApLoCKPwimkOaBqwLoIXJ7p2r4xXu0G3M02nU9oZBRUnpUIACH5BAkKAA8ALAAAAAAQAAgAAAQv8MlJq30oozeUH0UgAk8iJlyigkBLmgE6qAnrlme6Fu6bz7uCsIDRcDyKwWX5iAAAIfkECQoADwAsAAAAABAACAAABCnwyUmrtQvpVYIHj+c9iMgBKBigAWkWqcq63pmGc1kXPP/0hUdmcyk+IgAh+QQFCgAPACwAAAAAEAAIAAAEI/DJSau9FIQN3t6PxgEk6ZFBWK5mgKpseWowWdz3gxf6jmERADs=') no-repeat 110px 16px;
}
-/* line 59, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 59, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile img {
position: absolute;
top: 7px;
@@ -7227,11 +7227,11 @@ table.list .red .number a {
-o-border-radius: 3px;
border-radius: 3px;
}
-/* line 67, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 67, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile.signed-in:hover > ul {
display: block;
}
-/* line 70, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 70, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile ul {
display: none;
position: absolute;
@@ -7249,11 +7249,11 @@ table.list .red .number a {
-moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
-/* line 80, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 80, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile ul li {
display: block;
}
-/* line 82, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 82, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile ul li:last-child a:hover {
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;
@@ -7262,14 +7262,14 @@ table.list .red .number a {
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
-/* line 85, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 85, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile ul a {
display: block;
padding: 5px 25px 5px 45px;
line-height: 24px;
white-space: nowrap;
}
-/* line 90, /Users/sven/Development/projects/travis/travis-web/assets/styles/top.sass */
+/* line 90, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
#top .profile ul a:hover {
background-color: #666666;
}
diff --git a/public/version b/public/version
index 6cc3a4fc..9a3c5ee1 100644
--- a/public/version
+++ b/public/version
@@ -1 +1 @@
-6d938637
\ No newline at end of file
+d437e819
\ No newline at end of file
diff --git a/script/server b/script/server
deleted file mode 100755
index dc993fe8..00000000
--- a/script/server
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/usr/bin/env bash
-cd "$(dirname "$0")/.."
-[ $PORT ] || PORT=9292
-[ $RACK_ENV ] || RACK_ENV=development
-
-cmd="ruby -I lib -S bundle exec ruby -I lib -S unicorn -p $PORT -c ./config/unicorn.rb"
-[[ $RACK_ENV == "development" ]] && exec rerun "$cmd -o 127.0.0.1"
-exec $cmd
From cb76de37184286bcbcd46678d059c5df536874cd Mon Sep 17 00:00:00 2001
From: Piotr Sarnacki
Date: Thu, 18 Oct 2012 03:28:26 +0200
Subject: [PATCH 2/3] Move afterSignIn to auth Route
If we keep it only on states lower than root and afterSignIn is sent
when app is still in root.loading (which is often the case as we need to
wait for repository deserialization), it will try to find afterSignIn on
root.
---
assets/scripts/app/routes.coffee | 16 +-
assets/scripts/app/templates/auth/signin.hbs | 2 -
assets/styles/auth.sass | 1 +
public/scripts/app.js | 2 +-
public/scripts/min/app.js | 2 +-
public/styles/app.css | 3209 +++++++++---------
public/version | 2 +-
7 files changed, 1616 insertions(+), 1618 deletions(-)
diff --git a/assets/scripts/app/routes.coffee b/assets/scripts/app/routes.coffee
index bf7b0ad7..85a06039 100644
--- a/assets/scripts/app/routes.coffee
+++ b/assets/scripts/app/routes.coffee
@@ -148,12 +148,6 @@ Travis.Router = Ember.Router.extend
needsAuth: (path) ->
path.indexOf('/profile') == 0
- afterSignIn: ->
- path = sessionStorage.getItem('travis.after_signin_path')
- sessionStorage.removeItem('travis.after_signin_path')
- @transitionTo('root')
- @route(path || '/')
-
afterSignOut: ->
@authorize('/')
@@ -174,6 +168,7 @@ Travis.Router = Ember.Router.extend
root: Ember.Route.extend
route: '/'
loading: Ember.State.extend()
+ afterSignIn: (-> )
auth: Ember.Route.extend
route: '/auth'
@@ -183,9 +178,14 @@ Travis.Router = Ember.Router.extend
router.get('authLayoutController').connectOutlet('top', 'top')
router.get('authLayoutController').connectOutlet('main', 'signin')
+ afterSignIn: (router) ->
+ path = sessionStorage.getItem('travis.after_signin_path')
+ sessionStorage.removeItem('travis.after_signin_path')
+ router.transitionTo('root')
+ router.route(path || '/')
+
stats: Ember.Route.extend
route: '/stats'
- afterSignIn: (-> )
connectOutlets: (router) ->
router.get('applicationController').connectOutlet 'statsLayout'
$('body').attr('id', 'stats')
@@ -194,7 +194,6 @@ Travis.Router = Ember.Router.extend
profile: Ember.Route.extend
initialState: 'index'
- afterSignIn: (-> )
route: '/profile'
connectOutlets: (router) ->
@@ -261,7 +260,6 @@ Travis.Router = Ember.Router.extend
home: Ember.Route.extend
route: '/'
- afterSignIn: (-> )
connectOutlets: (router) ->
router.get('applicationController').connectOutlet 'homeLayout'
$('body').attr('id', 'home')
diff --git a/assets/scripts/app/templates/auth/signin.hbs b/assets/scripts/app/templates/auth/signin.hbs
index 17b32579..a5609048 100644
--- a/assets/scripts/app/templates/auth/signin.hbs
+++ b/assets/scripts/app/templates/auth/signin.hbs
@@ -9,5 +9,3 @@
Please sign in with GitHub.
{{/if}}
-
-
diff --git a/assets/styles/auth.sass b/assets/styles/auth.sass
index ccec8f42..8935ad4e 100644
--- a/assets/styles/auth.sass
+++ b/assets/styles/auth.sass
@@ -3,6 +3,7 @@
#auth
#page
display: block
+ min-height: 500px
#main
top: 200px
diff --git a/public/scripts/app.js b/public/scripts/app.js
index cba2f34b..32a1a15e 100644
--- a/public/scripts/app.js
+++ b/public/scripts/app.js
@@ -29619,4 +29619,4 @@ var _require=function(){function c(a,c){document.addEventListener?a.addEventList
++g&&setTimeout(c,0)})}}();
(function(){!window.WebSocket&&window.MozWebSocket&&(window.WebSocket=window.MozWebSocket);if(window.WebSocket)Pusher.Transport=window.WebSocket,Pusher.TransportType="native";var c=(document.location.protocol=="http:"?Pusher.cdn_http:Pusher.cdn_https)+Pusher.VERSION,a=[];window.JSON||a.push(c+"/json2"+Pusher.dependency_suffix+".js");if(!window.WebSocket)window.WEB_SOCKET_DISABLE_AUTO_INITIALIZATION=!0,a.push(c+"/flashfallback"+Pusher.dependency_suffix+".js");var b=function(){return window.WebSocket?function(){Pusher.ready()}:
function(){window.WebSocket?(Pusher.Transport=window.WebSocket,Pusher.TransportType="flash",window.WEB_SOCKET_SWF_LOCATION=c+"/WebSocketMain.swf",WebSocket.__addTask(function(){Pusher.ready()}),WebSocket.__initialize()):(Pusher.Transport=null,Pusher.TransportType="none",Pusher.ready())}}(),e=function(a){var b=function(){document.body?a():setTimeout(b,0)};b()},g=function(){e(b)};a.length>0?_require(a,g):g()})();
-;minispade.register('app', "(function() {(function() {\nminispade.require('auth');\nminispade.require('controllers');\nminispade.require('helpers');\nminispade.require('models');\nminispade.require('pusher');\nminispade.require('routes');\nminispade.require('slider');\nminispade.require('store');\nminispade.require('tailing');\nminispade.require('templates');\nminispade.require('views');\nminispade.require('config/locales');\nminispade.require('data/sponsors');\n\n Travis.reopen({\n App: Em.Application.extend({\n autoinit: false,\n currentUserBinding: 'auth.user',\n authStateBinding: 'auth.state',\n init: function() {\n this._super.apply(this, arguments);\n this.store = Travis.Store.create();\n this.store.loadMany(Travis.Sponsor, Travis.SPONSORS);\n this.set('auth', Travis.Auth.create({\n app: this,\n endpoint: Travis.config.api_endpoint\n }));\n this.slider = new Travis.Slider();\n this.pusher = new Travis.Pusher(Travis.config.pusher_key);\n return this.tailing = new Travis.Tailing();\n },\n signIn: function() {\n return this.get('auth').signIn();\n },\n autoSignIn: function() {\n return this.get('auth').autoSignIn();\n },\n signOut: function() {\n this.get('auth').signOut();\n return this.get('router').send('afterSignOut');\n },\n receive: function() {\n return this.store.receive.apply(this.store, arguments);\n },\n toggleSidebar: function() {\n var element;\n $('body').toggleClass('maximized');\n element = $(' ');\n $('#top .profile').append(element);\n Em.run.later((function() {\n return element.remove();\n }), 10);\n element = $(' ');\n $('#repo').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=app");minispade.register('auth', "(function() {(function() {\n\n this.Travis.Auth = Ember.Object.extend({\n iframe: $('').hide(),\n timeout: 5000,\n state: 'signed-out',\n receivingEnd: \"\" + location.protocol + \"//\" + location.host,\n init: function() {\n var _this = this;\n this.iframe.appendTo('body');\n window.addEventListener('message', function(e) {\n return _this.receiveMessage(e);\n });\n return this.loadUser();\n },\n accessToken: (function() {\n return sessionStorage.getItem('travis.token');\n }).property(),\n loadUser: function() {\n var user;\n if (user = sessionStorage.getItem('travis.user')) {\n return this.setData({\n user: JSON.parse(user)\n });\n } else {\n return this.autoSignIn();\n }\n },\n signIn: function() {\n this.set('state', 'signing-in');\n this.trySignIn();\n return Ember.run.later(this, this.checkSignIn.bind(this), this.timeout);\n },\n autoSignIn: function() {\n if (localStorage.getItem('travis.auto_signin')) {\n return this.signIn();\n }\n },\n signOut: function() {\n localStorage.clear();\n sessionStorage.clear();\n return this.setData();\n },\n trySignIn: function() {\n return this.iframe.attr('src', \"\" + this.endpoint + \"/auth/post_message?origin=\" + this.receivingEnd);\n },\n checkSignIn: function() {\n if (this.get('state') === 'signing-in') {\n return this.forceSignIn();\n }\n },\n forceSignIn: function() {\n localStorage.setItem('travis.auto_signin', 'true');\n return window.location = \"\" + this.endpoint + \"/auth/handshake?redirect_uri=\" + location;\n },\n setData: function(data) {\n var router, user, _ref;\n if (typeof data === 'string') {\n data = JSON.parse(data);\n }\n if (data != null ? data.token : void 0) {\n this.storeToken(data.token);\n }\n if (data != null ? data.user : void 0) {\n user = this.storeUser(data.user);\n }\n this.set('state', user ? 'signed-in' : 'signed-out');\n this.set('user', user ? user : void 0);\n if (router = (_ref = Travis.app) != null ? _ref.get('router') : void 0) {\n return router.send('afterSignIn');\n }\n },\n storeToken: function(token) {\n sessionStorage.setItem('travis.token', token);\n return this.notifyPropertyChange('accessToken');\n },\n storeUser: function(user) {\n localStorage.setItem('travis.auto_signin', 'true');\n sessionStorage.setItem('travis.user', JSON.stringify(user));\n this.app.store.load(Travis.User, user);\n user = this.app.store.find(Travis.User, user.id);\n user.get('permissions');\n return user;\n },\n receiveMessage: function(event) {\n if (event.origin === this.expectedOrigin()) {\n if (event.data.token) {\n event.data.user.token = event.data.token;\n }\n this.setData(event.data);\n return console.log(\"signed in as \" + event.data.user.login);\n } else {\n return console.log(\"unexpected message \" + event.origin + \": \" + event.data);\n }\n },\n expectedOrigin: function() {\n if (this.endpoint[0] === '/') {\n return this.receivingEnd;\n } else {\n return this.endpoint;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=auth");minispade.register('controllers', "(function() {(function() {\nminispade.require('helpers');\nminispade.require('travis/ticker');\n\n Travis.reopen({\n Controller: Em.Controller.extend({\n connectOutlet: function() {\n var view, _connectedOutletViews;\n view = this._super.apply(this, arguments);\n if (view) {\n _connectedOutletViews = Travis.app.get('_connectedOutletViews');\n if (!_connectedOutletViews) {\n _connectedOutletViews = [];\n }\n _connectedOutletViews.pushObject(view);\n Travis.app.set('_connectedOutletViews', _connectedOutletViews);\n }\n return view;\n }\n }),\n TopController: Em.Controller.extend({\n userBinding: 'Travis.app.currentUser'\n }),\n ApplicationController: Em.Controller.extend(),\n MainController: Em.Controller.extend(),\n StatsLayoutController: Em.Controller.extend(),\n ProfileLayoutController: Em.Controller.extend(),\n AuthLayoutController: Em.Controller.extend()\n });\nminispade.require('controllers/accounts');\nminispade.require('controllers/builds');\nminispade.require('controllers/flash');\nminispade.require('controllers/home');\nminispade.require('controllers/profile');\nminispade.require('controllers/repos');\nminispade.require('controllers/repo');\nminispade.require('controllers/sidebar');\nminispade.require('controllers/stats');\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers");minispade.register('controllers/accounts', "(function() {(function() {\n\n Travis.AccountsController = Ember.ArrayController.extend({\n tab: 'accounts',\n init: function() {\n return this._super();\n },\n findByLogin: function(login) {\n return this.find(function(account) {\n return account.get('login') === login;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/accounts");minispade.register('controllers/builds', "(function() {(function() {\n\n Travis.BuildsController = Em.ArrayController.extend({\n repo: 'parent.repo',\n contentBinding: 'parent.builds'\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/builds");minispade.register('controllers/flash', "(function() {(function() {\n\n Travis.FlashController = Ember.ArrayController.extend({\n init: function() {\n this._super.apply(this, arguments);\n return this.set('content', Ember.A());\n },\n pushObjects: function(objects) {\n Ember.run.later(this, (function() {\n return this.removeObjects(objects);\n }), 10000);\n return this._super(objects);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/flash");minispade.register('controllers/home', "(function() {(function() {\n\n Travis.HomeLayoutController = Travis.Controller.extend();\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/home");minispade.register('controllers/profile', "(function() {(function() {\n\n Travis.ProfileController = Travis.Controller.extend({\n name: 'profile',\n userBinding: 'Travis.app.currentUser',\n accountsBinding: 'Travis.app.router.accountsController',\n account: (function() {\n var account, login;\n login = this.get('params.login') || Travis.app.get('currentUser.login');\n account = this.get('accounts').filter(function(account) {\n if (account.get('login') === login) {\n return account;\n }\n })[0];\n if (account) {\n account.select();\n }\n return account;\n }).property('accounts.length', 'params.login'),\n activate: function(action, params) {\n this.setParams(params || this.get('params'));\n return this[\"view\" + ($.camelize(action))]();\n },\n viewHooks: function() {\n this.connectTab('hooks');\n return this.set('hooks', Travis.Hook.find({\n owner_name: this.get('params.login') || Travis.app.get('currentUser.login')\n }));\n },\n viewUser: function() {\n return this.connectTab('user');\n },\n connectTab: function(tab) {\n var viewClass;\n viewClass = Travis[\"\" + ($.camelize(tab)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n setParams: function(params) {\n var key, value, _results;\n this.set('params', {});\n _results = [];\n for (key in params) {\n value = params[key];\n _results.push(this.set(\"params.\" + key, params[key]));\n }\n return _results;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/profile");minispade.register('controllers/repo', "(function() {(function() {\n\n Travis.RepoController = Travis.Controller.extend({\n bindings: [],\n init: function() {\n this._super.apply(this, arguments);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var build, builds, jobs;\n if (builds = this.get('builds')) {\n builds.forEach(function(b) {\n return b.updateTimes();\n });\n }\n if (build = this.get('build')) {\n build.updateTimes();\n }\n if (build && (jobs = build.get('jobs'))) {\n jobs.forEach(function(j) {\n return j.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(action) {\n this._unbind();\n return this[\"view\" + ($.camelize(action))]();\n },\n viewIndex: function() {\n this._bind('repo', 'controllers.reposController.firstObject');\n this._bind('build', 'repo.lastBuild');\n return this.connectTab('current');\n },\n viewCurrent: function() {\n this.connectTab('current');\n return this._bind('build', 'repo.lastBuild');\n },\n viewBuilds: function() {\n this.connectTab('builds');\n return this._bind('builds', 'repo.builds');\n },\n viewPullRequests: function() {\n this.connectTab('pull_requests');\n return this._bind('builds', 'repo.pullRequests');\n },\n viewBranches: function() {\n this.connectTab('branches');\n return this._bind('builds', 'repo.branches');\n },\n viewEvents: function() {\n this.connectTab('events');\n return this._bind('events', 'repo.events');\n },\n viewBuild: function() {\n return this.connectTab('build');\n },\n viewJob: function() {\n this._bind('build', 'job.build');\n return this.connectTab('job');\n },\n repoObserver: (function() {\n var repo;\n repo = this.get('repo');\n if (repo) {\n return repo.select();\n }\n }).observes('repo.id'),\n connectTab: function(tab) {\n var name, viewClass;\n name = tab === 'current' ? 'build' : tab;\n viewClass = name === 'builds' || name === 'branches' || name === 'pull_requests' ? Travis.BuildsView : Travis[\"\" + ($.camelize(name)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n _bind: function(to, from) {\n return this.bindings.push(Ember.oneWay(this, to, from));\n },\n _unbind: function() {\n var binding, _i, _len, _ref;\n _ref = this.bindings;\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n binding = _ref[_i];\n binding.disconnect(this);\n }\n return this.bindings.length = 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repo");minispade.register('controllers/repos', "(function() {(function() {\nminispade.require('travis/limited_array');\n\n Travis.ReposController = Ember.ArrayController.extend({\n defaultTab: 'recent',\n sortProperties: ['sortOrder'],\n init: function() {\n this.activate(this.defaultTab);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var content;\n if (content = this.get('content')) {\n content.forEach(function(r) {\n return r.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(tab, params) {\n this.set('tab', tab);\n return this[\"view\" + ($.camelize(tab))](params);\n },\n viewRecent: function() {\n var content;\n content = Travis.LimitedArray.create({\n content: Travis.Repo.find(),\n limit: 30\n });\n return this.set('content', content);\n },\n viewOwned: function() {\n return this.set('content', Travis.Repo.accessibleBy(Travis.app.get('currentUser.login')));\n },\n viewSearch: function(params) {\n return this.set('content', Travis.Repo.search(params.search));\n },\n searchObserver: (function() {\n var search;\n search = this.get('search');\n if (search) {\n return this.searchFor(search);\n } else {\n this.activate('recent');\n return 'recent';\n }\n }).observes('search'),\n searchFor: function(phrase) {\n if (this.searchLater) {\n Ember.run.cancel(this.searchLater);\n }\n return this.searchLater = Ember.run.later(this, (function() {\n return this.activate('search', {\n search: phrase\n });\n }), 500);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repos");minispade.register('controllers/sidebar', "(function() {(function() {\n\n Travis.reopen({\n SidebarController: Em.ArrayController.extend({\n init: function() {\n this.tickables = [];\n return Travis.Ticker.create({\n target: this,\n interval: Travis.INTERVALS.sponsors\n });\n },\n tick: function() {\n var tickable, _i, _len, _ref, _results;\n _ref = this.tickables;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n tickable = _ref[_i];\n _results.push(tickable.tick());\n }\n return _results;\n }\n }),\n QueuesController: Em.ArrayController.extend(),\n WorkersController: Em.ArrayController.extend({\n groups: (function() {\n var content, groups, host, worker, _i, _len, _ref;\n if (content = this.get('arrangedContent')) {\n groups = {};\n _ref = content.toArray();\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n worker = _ref[_i];\n host = worker.get('host');\n if (!groups[host]) {\n groups[host] = Em.ArrayProxy.create(Em.SortableMixin, {\n content: [],\n sortProperties: ['nameForSort']\n });\n }\n groups[host].addObject(worker);\n }\n return $.values(groups);\n }\n }).property('length')\n }),\n SponsorsController: Em.ArrayController.extend({\n page: 0,\n arrangedContent: (function() {\n return this.get('shuffled').slice(this.start(), this.end());\n }).property('shuffled.length', 'page'),\n shuffled: (function() {\n var content;\n if (content = this.get('content')) {\n return $.shuffle(content);\n } else {\n return [];\n }\n }).property('content.length'),\n tick: function() {\n return this.set('page', this.isLast() ? 0 : this.get('page') + 1);\n },\n pages: (function() {\n var length;\n length = this.get('content.length');\n if (length) {\n return parseInt(length / this.get('perPage') + 1);\n } else {\n return 1;\n }\n }).property('length'),\n isLast: function() {\n return this.get('page') === this.get('pages') - 1;\n },\n start: function() {\n return this.get('page') * this.get('perPage');\n },\n end: function() {\n return this.start() + this.get('perPage');\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/sidebar");minispade.register('controllers/stats', "(function() {(function() {\n\n Travis.StatsController = Travis.Controller.extend({\n name: 'stats',\n init: function() {\n return this._super('top');\n },\n activate: function(action, params) {}\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/stats");minispade.register('helpers', "(function() {(function() {\nminispade.require('helpers/handlebars');\nminispade.require('helpers/helpers');\nminispade.require('helpers/urls');\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers");minispade.register('helpers/handlebars', "(function() {(function() {\n var safe;\nminispade.require('ext/ember/bound_helper');\n\n safe = function(string) {\n return new Handlebars.SafeString(string);\n };\n\n Handlebars.registerHelper('tipsy', function(text, tip) {\n return safe('' + text + ' ');\n });\n\n Handlebars.registerHelper('t', function(key) {\n return safe(I18n.t(key));\n });\n\n Ember.registerBoundHelper('formatTime', function(value, options) {\n return safe(Travis.Helpers.timeAgoInWords(value) || '-');\n });\n\n Ember.registerBoundHelper('formatDuration', function(duration, options) {\n return safe(Travis.Helpers.timeInWords(duration));\n });\n\n Ember.registerBoundHelper('formatCommit', function(commit, options) {\n if (commit) {\n return safe(Travis.Helpers.formatCommit(commit.get('sha'), commit.get('branch')));\n }\n });\n\n Ember.registerBoundHelper('formatSha', function(sha, options) {\n return safe(Travis.Helpers.formatSha(sha));\n });\n\n Ember.registerBoundHelper('pathFrom', function(url, options) {\n return safe(Travis.Helpers.pathFrom(url));\n });\n\n Ember.registerBoundHelper('formatMessage', function(message, options) {\n return safe(Travis.Helpers.formatMessage(message, options));\n });\n\n Ember.registerBoundHelper('formatConfig', function(config, options) {\n return safe(Travis.Helpers.formatConfig(config));\n });\n\n Ember.registerBoundHelper('formatLog', function(log, options) {\n var item, parentView, repo;\n parentView = this.get('parentView');\n repo = parentView.get(options.repo);\n item = parentView.get(options.item);\n return Travis.Helpers.formatLog(log, repo, item) || '';\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/handlebars");minispade.register('helpers/helpers', "(function() {(function() {\nminispade.require('travis/log');\nminispade.require('config/emoij');\n\n this.Travis.Helpers = {\n compact: function(object) {\n var key, result, value, _ref;\n result = {};\n _ref = object || {};\n for (key in _ref) {\n value = _ref[key];\n if (!$.isEmpty(value)) {\n result[key] = value;\n }\n }\n return result;\n },\n safe: function(string) {\n return new Handlebars.SafeString(string);\n },\n colorForResult: function(result) {\n if (result === 0) {\n return 'green';\n } else {\n if (result === 1) {\n return 'red';\n } else {\n return null;\n }\n }\n },\n formatCommit: function(sha, branch) {\n return Travis.Helpers.formatSha(sha) + (branch ? \" (\" + branch + \")\" : '');\n },\n formatSha: function(sha) {\n return (sha || '').substr(0, 7);\n },\n formatConfig: function(config) {\n var values;\n config = $.only(config, 'rvm', 'gemfile', 'env', 'otp_release', 'php', 'node_js', 'scala', 'jdk', 'python', 'perl');\n values = $.map(config, function(value, key) {\n value = (value && value.join ? value.join(', ') : value) || '';\n return '%@: %@'.fmt($.camelize(key), value);\n });\n if (values.length === 0) {\n return '-';\n } else {\n return values.join(', ');\n }\n },\n formatMessage: function(message, options) {\n message = message || '';\n if (options.short) {\n message = message.split(/\\n/)[0];\n }\n return this._emojize(this._escape(message)).replace(/\\n/g, ' ');\n },\n formatLog: function(log, repo, item) {\n var event, url;\n event = item.constructor === Travis.Build ? 'showBuild' : 'showJob';\n url = Travis.app.get('router').urlForEvent(event, repo, item);\n return Travis.Log.filter(log, url);\n },\n pathFrom: function(url) {\n return (url || '').split('/').pop();\n },\n timeAgoInWords: function(date) {\n return $.timeago.distanceInWords(date);\n },\n durationFrom: function(started, finished) {\n started = started && this._toUtc(new Date(this._normalizeDateString(started)));\n finished = finished ? this._toUtc(new Date(this._normalizeDateString(finished))) : this._nowUtc();\n if (started && finished) {\n return Math.round((finished - started) / 1000);\n } else {\n return 0;\n }\n },\n timeInWords: function(duration) {\n var days, hours, minutes, result, seconds;\n days = Math.floor(duration / 86400);\n hours = Math.floor(duration % 86400 / 3600);\n minutes = Math.floor(duration % 3600 / 60);\n seconds = duration % 60;\n if (days > 0) {\n return 'more than 24 hrs';\n } else {\n result = [];\n if (hours === 1) {\n result.push(hours + ' hr');\n }\n if (hours > 1) {\n result.push(hours + ' hrs');\n }\n if (minutes > 0) {\n result.push(minutes + ' min');\n }\n if (seconds > 0) {\n result.push(seconds + ' sec');\n }\n if (result.length > 0) {\n return result.join(' ');\n } else {\n return '-';\n }\n }\n },\n _normalizeDateString: function(string) {\n if (window.JHW) {\n string = string.replace('T', ' ').replace(/-/g, '/');\n string = string.replace('Z', '').replace(/\\..*$/, '');\n }\n return string;\n },\n _nowUtc: function() {\n return this._toUtc(new Date());\n },\n _toUtc: function(date) {\n return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds());\n },\n _emojize: function(text) {\n var emojis;\n emojis = text.match(/:\\S+?:/g);\n if (emojis !== null) {\n $.each(emojis.uniq(), function(ix, emoji) {\n var image, strippedEmoji;\n strippedEmoji = emoji.substring(1, emoji.length - 1);\n if (EmojiDictionary.indexOf(strippedEmoji) !== -1) {\n image = ' ';\n return text = text.replace(new RegExp(emoji, 'g'), image);\n }\n });\n }\n return text;\n },\n _escape: function(text) {\n return text.replace(/&/g, '&').replace(//g, '>');\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/helpers");minispade.register('helpers/urls', "(function() {(function() {\n\n this.Travis.Urls = {\n repo: function(slug) {\n return \"/\" + slug;\n },\n builds: function(slug) {\n return \"/\" + slug + \"/builds\";\n },\n pullRequests: function(slug) {\n return \"/\" + slug + \"/pull_requests\";\n },\n branches: function(slug) {\n return \"/\" + slug + \"/branches\";\n },\n build: function(slug, id) {\n return \"/\" + slug + \"/builds/\" + id;\n },\n job: function(slug, id) {\n return \"/\" + slug + \"/jobs/\" + id;\n },\n githubCommit: function(slug, sha) {\n return \"http://github.com/\" + slug + \"/commit/\" + sha;\n },\n githubRepo: function(slug) {\n return \"http://github.com/\" + slug;\n },\n githubWatchers: function(slug) {\n return \"http://github.com/\" + slug + \"/watchers\";\n },\n githubNetwork: function(slug) {\n return \"http://github.com/\" + slug + \"/network\";\n },\n githubAdmin: function(slug) {\n return \"http://github.com/\" + slug + \"/admin/hooks#travis_minibucket\";\n },\n statusImage: function(slug, branch) {\n return (\"https://secure.travis-ci.org/\" + slug + \".png\") + (branch ? \"?branch=\" + branch : '');\n },\n email: function(email) {\n return \"mailto:\" + email;\n },\n account: function(login) {\n return \"/profile/\" + login;\n },\n user: function(login) {\n return \"/profile/\" + login + \"/me\";\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/urls");minispade.register('models', "(function() {(function() {\nminispade.require('models/extensions');\nminispade.require('models/account');\nminispade.require('models/artifact');\nminispade.require('models/branch');\nminispade.require('models/build');\nminispade.require('models/commit');\nminispade.require('models/event');\nminispade.require('models/hook');\nminispade.require('models/job');\nminispade.require('models/repo');\nminispade.require('models/sponsor');\nminispade.require('models/user');\nminispade.require('models/worker');\n\n}).call(this);\n\n})();\n//@ sourceURL=models");minispade.register('models/account', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Account = Travis.Model.extend({\n primaryKey: 'login',\n login: DS.attr('string'),\n name: DS.attr('string'),\n type: DS.attr('string'),\n reposCount: DS.attr('number'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('login'));\n }).property()\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/account");minispade.register('models/artifact', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Artifact = Travis.Model.extend({\n body: DS.attr('string'),\n init: function() {\n this._super.apply(this, arguments);\n this.set('queue', Ember.A([]));\n this.addObserver('body', this.fetchWorker);\n return this.fetchWorker();\n },\n append: function(body) {\n if (this.get('isLoaded')) {\n return this.set('body', this.get('body') + body);\n } else {\n return this.get('queue').pushObject(body);\n }\n },\n recordDidLoad: (function() {\n var queue;\n if (this.get('isLoaded')) {\n queue = this.get('queue');\n if (queue.get('length') > 0) {\n return this.append(queue.toArray().join(''));\n }\n }\n }).observes('isLoaded'),\n fetchWorker: function() {\n var body, line, match, worker;\n if (body = this.get('body')) {\n line = body.split(\"\\n\")[0];\n if (line && (match = line.match(/Using worker: (.*)/))) {\n if (worker = match[1]) {\n worker = worker.trim().split(':')[0];\n this.set('workerName', worker);\n return this.removeObserver('body', this.fetchWorker);\n }\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/artifact");minispade.register('models/branch', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Branch = Travis.Model.extend(Travis.Helpers, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n duration: DS.attr('number'),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n commit: DS.belongsTo('Travis.Commit'),\n repo: (function() {\n if (this.get('repoId')) {\n return Travis.Repo.find(this.get('repoId'));\n }\n }).property('repoId'),\n updateTimes: function() {\n this.notifyPropertyChange('started_at');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n this.Travis.Branch.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/branch");minispade.register('models/build', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Build = Travis.Model.extend(Travis.DurationCalculations, {\n eventType: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n state: DS.attr('string'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string', {\n key: 'started_at'\n }),\n finishedAt: DS.attr('string', {\n key: 'finished_at'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n commit: DS.belongsTo('Travis.Commit'),\n jobs: DS.hasMany('Travis.Job', {\n key: 'job_ids'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n isMatrix: (function() {\n return this.get('data.job_ids.length') > 1;\n }).property('data.job_ids.length'),\n isFinished: (function() {\n return this.get('state') === 'finished';\n }).property('state'),\n requiredJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return !data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n allowedFailureJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n configKeys: (function() {\n var config, headers, key, keys;\n if (!(config = this.get('config'))) {\n return [];\n }\n keys = $.intersect($.keys(config), Travis.CONFIG_KEYS);\n headers = (function() {\n var _i, _len, _ref, _results;\n _ref = ['build.job', 'build.duration', 'build.finished_at'];\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n key = _ref[_i];\n _results.push(I18n.t(key));\n }\n return _results;\n })();\n return $.map(headers.concat(keys), function(key) {\n return $.camelize(key);\n });\n }).property('config'),\n requeue: (function() {\n return Travis.ajax.post('/requests', {\n build_id: this.get('id')\n });\n })\n });\n\n this.Travis.Build.reopenClass({\n byRepoId: function(id, parameters) {\n return this.find($.extend(parameters || {}, {\n repository_id: id\n }));\n },\n olderThanNumber: function(id, build_number) {\n return this.find({\n url: \"/builds\",\n repository_id: id,\n after_number: build_number\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/build");minispade.register('models/commit', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Commit = Travis.Model.extend({\n buildId: DS.attr('number'),\n sha: DS.attr('string'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n compareUrl: DS.attr('string'),\n authorName: DS.attr('string'),\n authorEmail: DS.attr('string'),\n committerName: DS.attr('string'),\n committerEmail: DS.attr('string'),\n build: DS.belongsTo('Travis.Build', {\n key: 'buildId'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/commit");minispade.register('models/event', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Event = Travis.Model.extend({\n event: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n sourceId: DS.attr('number', {\n key: 'source_id'\n }),\n sourceType: DS.attr('string', {\n key: 'source_type'\n }),\n createdAt: DS.attr('string', {\n key: 'created_at'\n }),\n event_: (function() {\n return this.get('event');\n }).property('event'),\n result: (function() {\n return this.get('data.data.result');\n }).property('data.data.result'),\n message: (function() {\n return this.get('data.data.message');\n }).property('data.data.message'),\n source: (function() {\n var type;\n if (type = this.get('sourceType')) {\n return Travis[type].find(this.get('sourceId'));\n }\n }).property('sourceType', 'sourceId')\n });\n\n this.Travis.Event.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/event");minispade.register('models/extensions', "(function() {(function() {\n\n Travis.DurationCalculations = Ember.Mixin.create({\n duration: (function() {\n var duration;\n if (duration = this.get('_duration')) {\n return duration;\n } else {\n return Travis.Helpers.durationFrom(this.get('startedAt'), this.get('finishedAt'));\n }\n }).property('_duration', 'finishedAt', 'startedAt'),\n updateTimes: function() {\n this.notifyPropertyChange('_duration');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/extensions");minispade.register('models/hook', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Hook = Travis.Model.extend({\n name: DS.attr('string'),\n ownerName: DS.attr('string'),\n description: DS.attr('string'),\n active: DS.attr('boolean'),\n account: (function() {\n return this.get('slug').split('/')[0];\n }).property('slug'),\n slug: (function() {\n return \"\" + (this.get('ownerName')) + \"/\" + (this.get('name'));\n }).property('ownerName', 'name'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('slug'));\n }).property(),\n urlGithubAdmin: (function() {\n return \"http://github.com/\" + (this.get('slug')) + \"/admin/hooks#travis_minibucket\";\n }).property(),\n toggle: function() {\n var transaction;\n transaction = this.get('store').transaction();\n transaction.add(this);\n this.set('active', !this.get('active'));\n return transaction.commit();\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/hook");minispade.register('models/job', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Job = Travis.Model.extend(Travis.DurationCalculations, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n buildId: DS.attr('number'),\n commitId: DS.attr('number'),\n logId: DS.attr('number'),\n queue: DS.attr('string'),\n state: DS.attr('string'),\n number: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n allowFailure: DS.attr('boolean', {\n key: 'allow_failure'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n build: DS.belongsTo('Travis.Build', {\n key: 'build_id'\n }),\n commit: DS.belongsTo('Travis.Commit', {\n key: 'commit_id'\n }),\n log: DS.belongsTo('Travis.Artifact', {\n key: 'log_id'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n sponsor: (function() {\n var worker;\n worker = this.get('log.workerName');\n if (worker && worker.length) {\n return Travis.WORKERS[worker] || {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n };\n }\n }).property('log.workerName'),\n configValues: (function() {\n var config;\n if (config = this.get('config')) {\n return $.values($.only.apply(config, Travis.CONFIG_KEYS));\n } else {\n return [];\n }\n }).property('config'),\n appendLog: function(text) {\n var log;\n if (log = this.get('log')) {\n return log.append(text);\n }\n },\n subscribe: function() {\n var id;\n if (id = this.get('id')) {\n return Travis.app.pusher.subscribe(\"job-\" + id);\n }\n },\n onStateChange: (function() {\n if (this.get('state') === 'finished') {\n return Travis.app.pusher.unsubscribe(\"job-\" + (this.get('id')));\n }\n }).observes('state')\n });\n\n this.Travis.Job.reopenClass({\n queued: function(queue) {\n this.find();\n return Travis.app.store.filter(this, function(job) {\n var queued;\n queued = ['created', 'queued'].indexOf(job.get('state')) !== -1;\n return queued && (!queue || job.get('queue') === (\"builds.\" + queue));\n });\n },\n findMany: function(ids) {\n return Travis.app.store.findMany(this, ids);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/job");minispade.register('models/repo', "(function() {(function() {\nminispade.require('travis/expandable_record_array');\nminispade.require('travis/model');\n\n this.Travis.Repo = Travis.Model.extend({\n slug: DS.attr('string'),\n description: DS.attr('string'),\n lastBuildId: DS.attr('number'),\n lastBuildNumber: DS.attr('string'),\n lastBuildResult: DS.attr('number'),\n lastBuildStartedAt: DS.attr('string'),\n lastBuildFinishedAt: DS.attr('string'),\n lastBuild: DS.belongsTo('Travis.Build'),\n builds: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'push'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n pullRequests: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'pull_request'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n branches: (function() {\n return Travis.Branch.byRepoId(this.get('id'));\n }).property(),\n events: (function() {\n return Travis.Event.byRepoId(this.get('id'));\n }).property(),\n owner: (function() {\n return (this.get('slug') || '').split('/')[0];\n }).property('slug'),\n name: (function() {\n return (this.get('slug') || '').split('/')[1];\n }).property('slug'),\n lastBuildDuration: (function() {\n var duration;\n duration = this.get('data.last_build_duration');\n if (!duration) {\n duration = Travis.Helpers.durationFrom(this.get('lastBuildStartedAt'), this.get('lastBuildFinishedAt'));\n }\n return duration;\n }).property('data.last_build_duration', 'lastBuildStartedAt', 'lastBuildFinishedAt'),\n sortOrder: (function() {\n var lastBuildFinishedAt;\n if (lastBuildFinishedAt = this.get('lastBuildFinishedAt')) {\n return -new Date(lastBuildFinishedAt).getTime();\n } else {\n return -new Date('9999').getTime() - parseInt(this.get('lastBuildId'));\n }\n }).property('lastBuildFinishedAt', 'lastBuildId'),\n stats: (function() {\n var _this = this;\n return this.get('_stats') || $.get(\"https://api.github.com/repos/\" + (this.get('slug')), function(data) {\n _this.set('_stats', data);\n return _this.notifyPropertyChange('stats');\n }) && {};\n }).property(),\n updateTimes: function() {\n return this.notifyPropertyChange('lastBuildDuration');\n }\n });\n\n this.Travis.Repo.reopenClass({\n recent: function() {\n return this.find();\n },\n ownedBy: function(login) {\n return this.find({\n owner_name: login,\n orderBy: 'name'\n });\n },\n accessibleBy: function(login) {\n return this.find({\n member: login,\n orderBy: 'name'\n });\n },\n search: function(query) {\n return this.find({\n search: query,\n orderBy: 'name'\n });\n },\n bySlug: function(slug) {\n var repo;\n repo = $.select(this.find().toArray(), function(repo) {\n return repo.get('slug') === slug;\n });\n if (repo.length > 0) {\n return repo;\n } else {\n return this.find({\n slug: slug\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/repo");minispade.register('models/sponsor', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Sponsor = Travis.Model.extend({\n type: DS.attr('string'),\n url: DS.attr('string'),\n link: DS.attr('string'),\n image: (function() {\n return \"/images/sponsors/\" + (this.get('data.image'));\n }).property('data.image')\n });\n\n Travis.Sponsor.reopenClass({\n decks: function() {\n return this.platinum().concat(this.gold());\n },\n platinum: function() {\n var platinum, sponsor, _i, _len, _results;\n platinum = this.byType('platinum').toArray();\n _results = [];\n for (_i = 0, _len = platinum.length; _i < _len; _i++) {\n sponsor = platinum[_i];\n _results.push([sponsor]);\n }\n return _results;\n },\n gold: function() {\n var gold, _results;\n gold = this.byType('gold').toArray();\n _results = [];\n while (gold.length > 0) {\n _results.push(gold.splice(0, 2));\n }\n return _results;\n },\n links: function() {\n return this.byType('silver');\n },\n byType: function() {\n var types;\n types = Array.prototype.slice.apply(arguments);\n return Travis.Sponsor.filter(function(sponsor) {\n return types.indexOf(sponsor.get('type')) !== -1;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/sponsor");minispade.register('models/user', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('travis/model');\n\n this.Travis.User = Travis.Model.extend({\n name: DS.attr('string'),\n email: DS.attr('string'),\n login: DS.attr('string'),\n token: DS.attr('string'),\n locale: DS.attr('string'),\n gravatarId: DS.attr('string'),\n isSyncing: DS.attr('boolean'),\n syncedAt: DS.attr('string'),\n repoCount: DS.attr('number'),\n init: function() {\n if (this.get('isSyncing')) {\n this.poll();\n }\n this._super();\n return Ember.run.next(this, function() {\n var transaction;\n transaction = this.get('store').transaction();\n return transaction.add(this);\n });\n },\n urlGithub: (function() {\n return \"https://github.com/\" + (this.get('login'));\n }).property(),\n permissions: (function() {\n var _this = this;\n if (!this.permissions) {\n this.permissions = Ember.ArrayProxy.create({\n content: []\n });\n Travis.ajax.get('/users/permissions', function(data) {\n return _this.permissions.set('content', data.permissions);\n });\n }\n return this.permissions;\n }).property(),\n updateLocale: function(locale) {\n var observer, self, transaction;\n this.setWithSession('locale', locale);\n transaction = this.get('transaction');\n transaction.commit();\n self = this;\n observer = function() {\n if (!self.get('isSaving')) {\n self.removeObserver('isSaving', observer);\n transaction = self.get('store').transaction();\n return transaction.add(self);\n }\n };\n return this.addObserver('isSaving', observer);\n },\n type: (function() {\n return 'user';\n }).property(),\n sync: function() {\n Travis.ajax.post('/users/sync');\n this.setWithSession('isSyncing', true);\n return this.poll();\n },\n poll: function() {\n var _this = this;\n return Travis.ajax.get('/users', function(data) {\n if (data.user.is_syncing) {\n return Ember.run.later(_this, _this.poll.bind(_this), 3000);\n } else {\n _this.set('isSyncing', false);\n return _this.setWithSession('syncedAt', data.user.synced_at);\n }\n });\n },\n setWithSession: function(name, value) {\n var user;\n this.set(name, value);\n user = JSON.parse(typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.getItem('travis.user') : void 0);\n user[$.underscore(name)] = this.get(name);\n return typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.setItem('travis.user', JSON.stringify(user)) : void 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/user");minispade.register('models/worker', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Worker = Travis.Model.extend({\n state: DS.attr('string'),\n name: DS.attr('string'),\n host: DS.attr('string'),\n lastSeenAt: DS.attr('string'),\n payload: (function() {\n return this.get('data.payload');\n }).property('data.payload'),\n number: (function() {\n return this.get('name').match(/\\d+$/)[0];\n }).property('name'),\n isWorking: (function() {\n return this.get('state') === 'working';\n }).property('state'),\n repo: (function() {\n return Travis.Repo.find(this.get('payload.repository.id') || this.get('payload.repo.id'));\n }).property('payload.repository.id', 'payload.repo.id'),\n job_id: (function() {\n return this.get('payload.job.id');\n }).property('payload.job.id'),\n job: (function() {\n return Travis.Job.find(this.get('job_id'));\n }).property('job_id'),\n nameForSort: (function() {\n var id, match, name;\n if (name = this.get('name')) {\n match = name.match(/(.*?)-(\\d+)/);\n if (match) {\n name = match[1];\n id = match[2].toString();\n if (id.length < 2) {\n id = \"00\" + id;\n } else if (id.length < 3) {\n id = \"0\" + id;\n }\n return \"\" + name + \"-\" + id;\n }\n }\n }).property('name')\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/worker");minispade.register('pusher', "(function() {(function() {\n\n Travis.Pusher = function(key) {\n if (key) {\n this.init(key);\n }\n return this;\n };\n\n $.extend(Travis.Pusher, {\n CHANNELS: ['common'],\n CHANNEL_PREFIX: ''\n });\n\n $.extend(Travis.Pusher.prototype, {\n active_channels: [],\n init: function(key) {\n var channel, _i, _len, _ref, _results;\n Pusher.warn = this.warn.bind(this);\n this.pusher = new Pusher(key);\n _ref = Travis.Pusher.CHANNELS;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n channel = _ref[_i];\n _results.push(this.subscribe(channel));\n }\n return _results;\n },\n subscribe: function(channel) {\n var _this = this;\n if (this.pusher && this.active_channels.indexOf(channel) === -1) {\n this.active_channels.push(channel);\n return this.pusher.subscribe(this.prefix(channel)).bind_all(function(event, data) {\n return _this.receive(event, data);\n });\n }\n },\n unsubscribe: function(channel) {\n var ix;\n ix = this.active_channels.indexOf(channel);\n if (this.pusher && ix === -1) {\n this.active_channels.splice(ix, 1);\n return this.pusher.unsubscribe(this.prefix(channel));\n }\n },\n prefix: function(channel) {\n return \"\" + Travis.Pusher.CHANNEL_PREFIX + channel;\n },\n receive: function(event, data) {\n if (event.substr(0, 6) === 'pusher') {\n return;\n }\n if (data.id) {\n data = this.normalize(event, data);\n }\n return Ember.run.next(function() {\n return Travis.app.store.receive(event, data);\n });\n },\n normalize: function(event, data) {\n switch (event) {\n case 'build:started':\n case 'build:finished':\n return data;\n case 'job:created':\n case 'job:started':\n case 'job:finished':\n case 'job:log':\n if (data.queue) {\n data.queue = data.queue.replace('builds.', '');\n }\n return {\n job: data\n };\n case 'worker:added':\n case 'worker:updated':\n case 'worker:removed':\n return {\n worker: data\n };\n }\n },\n warn: function(type, warning) {\n if (!this.ignoreWarning(warning)) {\n return console.warn(warning);\n }\n },\n ignoreWarning: function(warning) {\n var message, _ref;\n if (message = (_ref = warning.data) != null ? _ref.message : void 0) {\n return message.indexOf('Existing subscription') === 0 || message.indexOf('No current subscription') === 0;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=pusher");minispade.register('routes', "(function() {(function() {\n var defaultRoute, lineNumberRoute, nonHashRouteMatcher, resolvePath;\nminispade.require('travis/location');\n\n defaultRoute = Ember.Route.extend({\n route: '/',\n index: 1000\n });\n\n lineNumberRoute = Ember.Route.extend({\n route: '#L:number',\n index: 1,\n connectOutlets: function(router) {\n return router.saveLineNumberHash();\n },\n routeMatcher: Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([0-9]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(regex);\n }\n });\n }\n }).cacheable()\n });\n\n nonHashRouteMatcher = Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([^/#]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(\"^/?\" + regex);\n }\n });\n }\n }).cacheable();\n\n resolvePath = function(manager, path) {\n var childStates, match, resolvedState, state, states;\n if (this.get('isLeafRoute')) {\n return Ember.A();\n }\n childStates = this.get('childStates');\n childStates = Ember.A(childStates.filterProperty('isRoutable'));\n childStates = childStates.sort(function(a, b) {\n var aDynamicSegments, aIndex, aRoute, bDynamicSegments, bIndex, bRoute;\n aDynamicSegments = a.get('routeMatcher.identifiers.length');\n bDynamicSegments = b.get('routeMatcher.identifiers.length');\n aRoute = a.get('route');\n bRoute = b.get('route');\n aIndex = a.get('index');\n bIndex = b.get('index');\n if (aIndex && bIndex) {\n return aIndex - bIndex;\n }\n if (aRoute.indexOf(bRoute) === 0) {\n return -1;\n } else if (bRoute.indexOf(aRoute) === 0) {\n return 1;\n }\n if (aDynamicSegments !== bDynamicSegments) {\n return aDynamicSegments - bDynamicSegments;\n }\n return b.get('route.length') - a.get('route.length');\n });\n match = null;\n state = childStates.find(function(state) {\n var matcher;\n matcher = state.get('routeMatcher');\n if (match = matcher.match(path)) {\n return match;\n }\n });\n Ember.assert(\"Could not find state for path \" + path, !!state);\n resolvedState = Ember._ResolvedState.create({\n manager: manager,\n state: state,\n match: match\n });\n states = state.resolvePath(manager, match.remaining);\n return Ember.A([resolvedState]).pushObjects(states);\n };\n\n Travis.Router = Ember.Router.extend({\n location: 'travis',\n enableLogging: true,\n initialState: 'loading',\n showRoot: Ember.Route.transitionTo('root.home.show'),\n showStats: Ember.Route.transitionTo('root.stats'),\n showRepo: Ember.Route.transitionTo('root.home.repo.show'),\n showBuilds: Ember.Route.transitionTo('root.home.repo.builds.index'),\n showBuild: Ember.Route.transitionTo('root.home.repo.builds.show'),\n showPullRequests: Ember.Route.transitionTo('root.home.repo.pullRequests'),\n showBranches: Ember.Route.transitionTo('root.home.repo.branches'),\n showEvents: Ember.Route.transitionTo('root.home.repo.events'),\n showJob: Ember.Route.transitionTo('root.home.repo.job'),\n showProfile: Ember.Route.transitionTo('root.profile'),\n showAccount: Ember.Route.transitionTo('root.profile.account'),\n showUserProfile: Ember.Route.transitionTo('root.profile.account.profile'),\n saveLineNumberHash: function(path) {\n return Ember.run.next(this, function() {\n var match;\n path = path || this.get('location').getURL();\n if (match = path.match(/#L\\d+$/)) {\n return this.set('repoController.lineNumberHash', match[0]);\n }\n });\n },\n reload: function() {\n var url;\n url = this.get('location').getURL();\n this.transitionTo('loading');\n return this.route(url);\n },\n signedIn: function() {\n return !!Travis.app.get('auth.user');\n },\n needsAuth: function(path) {\n return path.indexOf('/profile') === 0;\n },\n afterSignIn: function() {\n var path;\n path = sessionStorage.getItem('travis.after_signin_path');\n sessionStorage.removeItem('travis.after_signin_path');\n this.transitionTo('root');\n return this.route(path || '/');\n },\n afterSignOut: function() {\n return this.authorize('/');\n },\n authorize: function(path) {\n if (!this.signedIn() && this.needsAuth(path)) {\n sessionStorage.setItem('travis.after_signin_path', path);\n this.transitionTo('root.auth');\n return Travis.app.autoSignIn();\n } else {\n this.transitionTo('root');\n return this.route(path);\n }\n },\n loading: Ember.Route.extend({\n routePath: function(router, path) {\n router.saveLineNumberHash(path);\n return router.authorize(path);\n }\n }),\n root: Ember.Route.extend({\n route: '/',\n loading: Ember.State.extend(),\n auth: Ember.Route.extend({\n route: '/auth',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('authLayout');\n $('body').attr('id', 'auth');\n router.get('authLayoutController').connectOutlet('top', 'top');\n return router.get('authLayoutController').connectOutlet('main', 'signin');\n }\n }),\n stats: Ember.Route.extend({\n route: '/stats',\n afterSignIn: (function() {}),\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('statsLayout');\n $('body').attr('id', 'stats');\n router.get('statsLayoutController').connectOutlet('top', 'top');\n return router.get('statsLayoutController').connectOutlet('main', 'stats');\n }\n }),\n profile: Ember.Route.extend({\n initialState: 'index',\n afterSignIn: (function() {}),\n route: '/profile',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('profileLayout');\n $('body').attr('id', 'profile');\n router.get('accountsController').set('content', Travis.Account.find());\n router.get('profileLayoutController').connectOutlet('top', 'top');\n return router.get('profileLayoutController').connectOutlet('left', 'accounts');\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('profileLayoutController').connectOutlet('main', 'profile');\n return router.get('profileController').activate('hooks');\n }\n }),\n account: Ember.Route.extend({\n initialState: 'index',\n route: '/:login',\n connectOutlets: function(router, account) {\n var params;\n if (account) {\n params = {\n login: account.get('login')\n };\n return router.get('profileController').setParams(params);\n } else {\n return router.send('showProfile');\n }\n },\n deserialize: function(router, params) {\n var account, controller, deferred, observer;\n controller = router.get('accountsController');\n if (!controller.get('content')) {\n controller.set('content', Travis.Account.find());\n }\n account = controller.findByLogin(params.login);\n if (account) {\n return account;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (account = controller.findByLogin(params.login)) {\n controller.removeObserver('content.length', observer);\n return deferred.resolve(account);\n }\n };\n controller.addObserver('content.length', observer);\n return deferred.promise();\n }\n },\n serialize: function(router, account) {\n if (account) {\n return {\n login: account.get('login')\n };\n } else {\n return {};\n }\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('profileController').activate('hooks');\n }\n }),\n profile: Ember.Route.extend({\n route: '/profile',\n connectOutlets: function(router) {\n return router.get('profileController').activate('user');\n }\n })\n })\n }),\n home: Ember.Route.extend({\n route: '/',\n afterSignIn: (function() {}),\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('homeLayout');\n $('body').attr('id', 'home');\n router.get('homeLayoutController').connectOutlet('left', 'repos');\n router.get('homeLayoutController').connectOutlet('right', 'sidebar');\n router.get('homeLayoutController').connectOutlet('top', 'top');\n router.get('homeLayoutController').connectOutlet('main', 'repo');\n router.get('homeLayoutController').connectOutlet('flash', 'flash');\n return router.get('repoController').set('repos', router.get('reposController'));\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n showWithLineNumber: Ember.Route.extend({\n route: '/#/L:number',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n }\n }),\n repo: Ember.Route.extend({\n route: '/:owner/:name',\n routeMatcher: nonHashRouteMatcher,\n connectOutlets: function(router, repo) {\n return router.get('repoController').set('repo', repo);\n },\n deserialize: function(router, params) {\n var deferred, observer, repos, slug;\n slug = \"\" + params.owner + \"/\" + params.name;\n repos = Travis.Repo.bySlug(slug);\n deferred = $.Deferred();\n observer = function() {\n if (repos.get('isLoaded')) {\n repos.removeObserver('isLoaded', observer);\n return deferred.resolve(repos.objectAt(0));\n }\n };\n if (repos.length) {\n deferred.resolve(repos[0]);\n } else {\n repos.addObserver('isLoaded', observer);\n }\n return deferred.promise();\n },\n serialize: function(router, repo) {\n if (repo) {\n return {\n owner: repo.get('owner'),\n name: repo.get('name')\n };\n } else {\n return {};\n }\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('current');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n builds: Ember.Route.extend({\n route: '/builds',\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('builds');\n }\n }),\n show: Ember.Route.extend({\n route: '/:build_id',\n connectOutlets: function(router, build) {\n if (!build.get) {\n build = Travis.Build.find(build);\n }\n router.get('repoController').set('build', build);\n return router.get('repoController').activate('build');\n },\n serialize: function(router, build) {\n if (build.get) {\n return {\n build_id: build.get('id')\n };\n } else {\n return {\n build_id: build\n };\n }\n },\n deserialize: function(router, params) {\n var build, deferred, observer;\n build = Travis.Build.find(params.build_id);\n if (build.get('id')) {\n return build;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (build.get('id')) {\n build.removeObserver('id', observer);\n return deferred.resolve(build);\n }\n };\n build.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n }),\n pullRequests: Ember.Route.extend({\n route: '/pull_requests',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('pull_requests');\n }\n }),\n branches: Ember.Route.extend({\n route: '/branches',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('branches');\n }\n }),\n events: Ember.Route.extend({\n route: '/events',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('events');\n }\n }),\n job: Ember.Route.extend({\n route: '/jobs/:job_id',\n connectOutlets: function(router, job) {\n if (!job.get) {\n job = Travis.Job.find(job);\n }\n router.get('repoController').set('job', job);\n return router.get('repoController').activate('job');\n },\n serialize: function(router, job) {\n if (job.get) {\n return {\n job_id: job.get('id')\n };\n } else {\n return {\n job_id: job\n };\n }\n },\n deserialize: function(router, params) {\n var deferred, job, observer;\n job = Travis.Job.find(params.job_id);\n if (job.get('id')) {\n return job;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (job.get('id')) {\n job.removeObserver('id', observer);\n return deferred.resolve(job);\n }\n };\n job.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n })\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=routes");minispade.register('slider', "(function() {(function() {\n\n this.Travis.Slider = function() {\n if ((typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.getItem('travis.maximized') : void 0) === 'true') {\n this.minimize();\n }\n return this;\n };\n\n $.extend(Travis.Slider.prototype, {\n persist: function() {\n return typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.setItem('travis.maximized', this.isMinimized()) : void 0;\n },\n isMinimized: function() {\n return $('body').hasClass('maximized');\n },\n minimize: function() {\n return $('body').addClass('maximized');\n },\n toggle: function() {\n var element;\n $('body').toggleClass('maximized');\n this.persist();\n element = $(' ');\n $('#top .profile').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=slider");minispade.register('store', "(function() {(function() {\n var DATA_PROXY,\n __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };\nminispade.require('store/rest_adapter');\n\n DATA_PROXY = {\n get: function(name) {\n return this.savedData[name];\n }\n };\n\n Travis.Store = DS.Store.extend({\n revision: 4,\n adapter: Travis.RestAdapter.create(),\n load: function(type, id, hash) {\n var record, result;\n result = this._super.apply(this, arguments);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n record.set('incomplete', false);\n record.set('complete', true);\n }\n return result;\n },\n merge: function(type, id, hash) {\n var clientId, data, dataCache, primaryKey, record, recordCache, typeMap;\n if (hash === void 0) {\n hash = id;\n primaryKey = type.proto().primaryKey;\n Ember.assert(\"A data hash was loaded for a record of type \" + type.toString() + \" but no primary key '\" + primaryKey + \"' was provided.\", hash[primaryKey]);\n id = hash[primaryKey];\n }\n typeMap = this.typeMapFor(type);\n dataCache = typeMap.cidToHash;\n clientId = typeMap.idToCid[id];\n recordCache = this.get('recordCache');\n if (clientId !== void 0) {\n if (data = dataCache[clientId]) {\n $.extend(data, hash);\n } else {\n dataCache[clientId] = hash;\n }\n if (record = recordCache[clientId]) {\n record.send('didChangeData');\n }\n } else {\n clientId = this.pushHash(hash, id, type);\n }\n if (clientId) {\n DATA_PROXY.savedData = hash;\n this.updateRecordArrays(type, clientId, DATA_PROXY);\n return {\n id: id,\n clientId: clientId\n };\n }\n },\n receive: function(event, data) {\n var job, mappings, name, type, _ref;\n _ref = event.split(':'), name = _ref[0], type = _ref[1];\n mappings = this.adapter.get('mappings');\n type = mappings[name];\n if (event === 'job:log') {\n if (job = this.find(Travis.Job, data['job']['id'])) {\n return job.appendLog(data['job']['_log']);\n }\n } else if (data[type.singularName()]) {\n return this._loadOne(this, type, data);\n } else if (data[type.pluralName()]) {\n return this._loadMany(this, type, data);\n } else {\n if (!type) {\n throw \"can't load data for \" + name;\n }\n }\n },\n _loadOne: function(store, type, json) {\n var result, root;\n root = type.singularName();\n if (type === Travis.Build && json.repository) {\n result = this.loadIncomplete(Travis.Repo, json.repository);\n }\n return this.loadIncomplete(type, json[root]);\n },\n loadIncomplete: function(type, hash) {\n var record, result;\n result = this.merge(type, hash);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n if (!record.get('complete')) {\n record.set('incomplete', true);\n record.loadedAttributes = Object.keys(hash);\n }\n this._updateAssociations(type, type.singularName(), hash);\n return record;\n }\n },\n _loadMany: function(store, type, json) {\n var root;\n root = type.pluralName();\n this.adapter.sideload(store, type, json, root);\n return this.loadMany(type, json[root]);\n },\n _updateAssociations: function(type, name, data) {\n var _this = this;\n return Em.get(type, 'associationsByName').forEach(function(key, meta) {\n var clientId, dataProxy, id, ids, parent, _ref;\n if (meta.kind === 'belongsTo') {\n id = data[\"\" + key + \"_id\"];\n if (clientId = _this.typeMapFor(meta.type).idToCid[id]) {\n if (parent = _this.findByClientId(meta.type, clientId, id)) {\n dataProxy = parent.get('data');\n if (ids = dataProxy.get(\"\" + name + \"_ids\")) {\n if (_ref = data.id, __indexOf.call(ids, _ref) < 0) {\n ids.pushObject(data.id);\n }\n return parent.send('didChangeData');\n }\n }\n }\n }\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store");minispade.register('store/fixture_adapter', "(function() {(function() {\n\n this.Travis.FixtureAdapter = DS.Adapter.extend({\n find: function(store, type, id) {\n var fixtures;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n if (fixtures.hasLoaded) {\n return;\n }\n return setTimeout((function() {\n store.loadMany(type, fixtures);\n return fixtures.hasLoaded = true;\n }), 300);\n },\n findMany: function() {\n return this.find.apply(this, arguments);\n },\n findAll: function(store, type) {\n var fixtures, ids;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n ids = fixtures.map(function(item, index, self) {\n return item.id;\n });\n return store.loadMany(type, ids, fixtures);\n },\n findQuery: function(store, type, params, array) {\n var fixture, fixtures, hashes, key, matches, value;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n hashes = (function() {\n var _i, _len, _results;\n _results = [];\n for (_i = 0, _len = fixtures.length; _i < _len; _i++) {\n fixture = fixtures[_i];\n matches = (function() {\n var _results1;\n _results1 = [];\n for (key in params) {\n value = params[key];\n _results1.push(key === 'orderBy' || fixture[key] === value);\n }\n return _results1;\n })();\n if (matches.reduce(function(a, b) {\n return a && b;\n })) {\n _results.push(fixture);\n } else {\n _results.push(null);\n }\n }\n return _results;\n })();\n return array.load(hashes.compact());\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/fixture_adapter");minispade.register('store/rest_adapter', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('models');\n\n this.Travis.RestAdapter = DS.RESTAdapter.extend({\n mappings: {\n repositories: Travis.Repo,\n repository: Travis.Repo,\n repos: Travis.Repo,\n repo: Travis.Repo,\n builds: Travis.Build,\n build: Travis.Build,\n commits: Travis.Commit,\n commit: Travis.Commit,\n jobs: Travis.Job,\n job: Travis.Job,\n account: Travis.Account,\n accounts: Travis.Account,\n worker: Travis.Worker,\n workers: Travis.Worker\n },\n plurals: {\n repositories: 'repositories',\n repository: 'repositories',\n repo: 'repos',\n repos: 'repos',\n build: 'builds',\n branch: 'branches',\n job: 'jobs',\n worker: 'workers',\n profile: 'profile'\n },\n ajax: function() {\n return Travis.ajax.ajax.apply(this, arguments);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/rest_adapter");minispade.register('tailing', "(function() {(function() {\n\n this.Travis.Tailing = function() {\n this.position = $(window).scrollTop();\n $(window).scroll(this.onScroll.bind(this));\n return this;\n };\n\n $.extend(Travis.Tailing.prototype, {\n options: {\n timeout: 200\n },\n run: function() {\n this.autoScroll();\n this.positionButton();\n if (this.active()) {\n return Ember.run.later(this.run.bind(this), this.options.timeout);\n }\n },\n toggle: function(event) {\n if (this.active()) {\n return this.stop();\n } else {\n return this.start();\n }\n },\n active: function() {\n return $('#tail').hasClass('active');\n },\n start: function() {\n $('#tail').addClass('active');\n return this.run();\n },\n stop: function() {\n return $('#tail').removeClass('active');\n },\n autoScroll: function() {\n var log, logBottom, win, winBottom;\n if (!this.active()) {\n return;\n }\n win = $(window);\n log = $('#log');\n logBottom = log.offset().top + log.outerHeight() + 40;\n winBottom = win.scrollTop() + win.height();\n if (logBottom - winBottom > 0) {\n return win.scrollTop(logBottom - win.height());\n }\n },\n onScroll: function() {\n var position;\n this.positionButton();\n position = $(window).scrollTop();\n if (position < this.position) {\n this.stop();\n }\n return this.position = position;\n },\n positionButton: function() {\n var max, offset, tail;\n tail = $('#tail');\n if (tail.length === 0) {\n return;\n }\n offset = $(window).scrollTop() - $('#log').offset().top;\n max = $('#log').height() - $('#tail').height() + 5;\n if (offset > max) {\n offset = max;\n }\n if (offset > 0) {\n return tail.css({\n top: offset - 2\n });\n } else {\n return tail.css({\n top: 0\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=tailing");minispade.register('views', "(function() {(function() {\nminispade.require('ext/ember/namespace');\n\n this.Travis.reopen({\n View: Em.View.extend({\n popup: function(event) {\n this.popupCloseAll();\n return $(\"#\" + event.target.name).toggleClass('display');\n },\n popupClose: function(event) {\n return $(event.target).closest('.popup').removeClass('display');\n },\n popupCloseAll: function() {\n return $('.popup').removeClass('display');\n }\n })\n });\n\n this.Travis.reopen({\n HomeLayoutView: Travis.View.extend({\n templateName: 'layouts/home'\n }),\n AuthLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n }),\n ProfileLayoutView: Travis.View.extend({\n templateName: 'layouts/profile'\n }),\n StatsLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n })\n });\nminispade.require('views/accounts');\nminispade.require('views/application');\nminispade.require('views/build');\nminispade.require('views/events');\nminispade.require('views/flash');\nminispade.require('views/job');\nminispade.require('views/repo');\nminispade.require('views/profile');\nminispade.require('views/sidebar');\nminispade.require('views/stats');\nminispade.require('views/signin');\nminispade.require('views/top');\n\n}).call(this);\n\n})();\n//@ sourceURL=views");minispade.register('views/accounts', "(function() {(function() {\n\n this.Travis.reopen({\n AccountsView: Travis.View.extend({\n tabBinding: 'controller.tab',\n templateName: 'profile/accounts',\n classAccounts: (function() {\n if (this.get('tab') === 'accounts') {\n return 'active';\n }\n }).property('tab')\n }),\n AccountsListView: Em.CollectionView.extend({\n elementId: 'accounts',\n accountBinding: 'content',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n accountBinding: 'content',\n typeBinding: 'content.type',\n selectedBinding: 'account.selected',\n classNames: ['account'],\n classNameBindings: ['type', 'selected'],\n name: (function() {\n return this.get('content.name') || this.get('content.login');\n }).property('content.login', 'content.name'),\n urlAccount: (function() {\n return Travis.Urls.account(this.get('account.login'));\n }).property('account.login')\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/accounts");minispade.register('views/application', "(function() {(function() {\n\n this.Travis.reopen({\n ApplicationView: Travis.View.extend({\n templateName: 'application',\n classNames: ['application'],\n popup: function(event) {\n return console.log(event);\n },\n localeDidChange: (function() {\n var locale;\n if (locale = Travis.app.get('auth.user.locale')) {\n Travis.setLocale(locale);\n return Travis.app.get('router').reload();\n }\n }).observes('Travis.app.auth.user.locale'),\n click: function(event) {\n var targetAndParents;\n targetAndParents = $(event.target).parents().andSelf();\n if (!(targetAndParents.hasClass('open-popup') || targetAndParents.hasClass('popup'))) {\n this.popupCloseAll();\n }\n if (!targetAndParents.hasClass('menu')) {\n return $('.menu').removeClass('display');\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/application");minispade.register('views/build', "(function() {(function() {\n\n this.Travis.reopen({\n BuildsView: Travis.View.extend({\n templateName: 'builds/list',\n buildsBinding: 'controller.builds',\n showMore: function() {\n var id, number;\n id = this.get('controller.repo.id');\n number = this.get('builds.lastObject.number');\n return this.get('builds').load(Travis.Build.olderThanNumber(id, number));\n },\n ShowMoreButton: Em.View.extend({\n tagName: 'button',\n classNameBindings: ['isLoading'],\n attributeBindings: ['disabled'],\n isLoadingBinding: 'controller.builds.isLoading',\n template: Em.Handlebars.compile('{{view.label}}'),\n disabledBinding: 'isLoading',\n label: (function() {\n if (this.get('isLoading')) {\n return 'Loading';\n } else {\n return 'Show more';\n }\n }).property('isLoading'),\n click: function() {\n return this.get('parentView').showMore();\n }\n })\n }),\n BuildsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'controller.repo',\n buildBinding: 'context',\n commitBinding: 'build.commit',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha')\n }),\n BuildView: Travis.View.extend({\n templateName: 'builds/show',\n elementId: 'build',\n classNameBindings: ['color', 'loading'],\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n commitBinding: 'build.commit',\n currentItemBinding: 'build',\n loading: (function() {\n return !this.get('build.isComplete');\n }).property('build.isComplete'),\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/build");minispade.register('views/events', "(function() {(function() {\n\n this.Travis.reopen({\n EventsView: Travis.View.extend({\n templateName: 'events/list',\n eventsBinding: 'controller.events'\n }),\n EventsItemView: Travis.View.extend({\n tagName: 'tr'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/events");minispade.register('views/flash', "(function() {(function() {\n\n this.Travis.reopen({\n FlashView: Travis.View.extend({\n elementId: 'flash',\n tagName: 'ul',\n templateName: 'layouts/flash'\n }),\n FlashItemView: Travis.View.extend({\n tagName: 'li',\n classNameBindings: ['type'],\n type: (function() {\n return this.get('flash') && Ember.keys(this.get('flash'))[0];\n }).property('flash'),\n message: (function() {\n return this.get('flash') && this.get('flash')[this.get('type')];\n }).property('flash'),\n close: function(event) {\n return this.get('controller').removeObject(this.get('flash'));\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/flash");minispade.register('views/job', "(function() {(function() {\n\n this.Travis.reopen({\n JobsView: Travis.View.extend({\n templateName: 'jobs/list',\n buildBinding: 'controller.build'\n }),\n JobsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'context.repo',\n jobBinding: 'context',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id')\n }),\n JobView: Travis.View.extend({\n templateName: 'jobs/show',\n repoBinding: 'controller.repo',\n jobBinding: 'controller.job',\n commitBinding: 'job.commit',\n currentItemBinding: 'job',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n }),\n LogView: Travis.View.extend({\n templateName: 'jobs/log',\n logBinding: 'job.log',\n scrollTo: function(hash) {\n $('#main').scrollTop(0);\n $('html,body').scrollTop($(hash).offset().top);\n return this.set('controller.lineNumberHash', null);\n },\n lineNumberHashDidChange: (function() {\n return this.tryScrollingToHashLineNumber();\n }).observes('controller.lineNumberHash'),\n tryScrollingToHashLineNumber: function() {\n var checker, hash, self;\n if (hash = this.get('controller.lineNumberHash')) {\n self = this;\n checker = function() {\n if (self.get('isDestroyed')) {\n return;\n }\n if ($(hash).length) {\n return self.scrollTo(hash);\n } else {\n return setTimeout(checker, 100);\n }\n };\n return checker();\n }\n },\n didInsertElement: function() {\n this._super.apply(this, arguments);\n return this.tryScrollingToHashLineNumber();\n },\n click: function(event) {\n var path, target;\n target = $(event.target);\n target.closest('.fold').toggleClass('open');\n if (target.is('.log-line-number')) {\n path = target.attr('href');\n Travis.app.get('router').route(path);\n event.stopPropagation();\n return false;\n }\n },\n toTop: function() {\n return $(window).scrollTop(0);\n },\n jobBinding: 'context',\n toggleTailing: function(event) {\n Travis.app.tailing.toggle();\n return event.preventDefault();\n },\n logSubscriber: (function() {\n var job, state;\n job = this.get('job');\n state = this.get('job.state');\n if (job && state !== 'finished') {\n job.subscribe();\n }\n return null;\n }).property('job', 'job.state')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/job");minispade.register('views/left', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n tabBinding: 'controller.tab',\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/left");minispade.register('views/profile', "(function() {(function() {\n\n this.Travis.reopen({\n ProfileView: Travis.View.extend({\n templateName: 'profile/show',\n accountBinding: 'controller.account',\n name: (function() {\n return this.get('account.name') || this.get('account.login');\n }).property('account.name', 'account.login')\n }),\n ProfileTabsView: Travis.View.extend({\n templateName: 'profile/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classHooks: (function() {\n if (this.get('tab') === 'hooks') {\n return 'active';\n }\n }).property('tab'),\n classUser: (function() {\n if (this.get('tab') === 'user') {\n return 'active';\n }\n }).property('tab'),\n accountBinding: 'controller.account',\n displayUser: (function() {\n return this.get('controller.account.login') === this.get('controller.user.login');\n }).property('controller.account.login', 'controller.user.login')\n }),\n HooksView: Travis.View.extend({\n templateName: 'profile/tabs/hooks',\n userBinding: 'controller.user',\n urlGithubAdmin: (function() {\n return Travis.Urls.githubAdmin(this.get('hook.slug'));\n }).property('hook.slug')\n }),\n UserView: Travis.View.extend({\n templateName: 'profile/tabs/user',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=48&d=mm\";\n }).property('user.gravatarId'),\n locales: (function() {\n return [\n {\n key: null,\n name: ''\n }, {\n key: 'en',\n name: 'English'\n }, {\n key: 'ca',\n name: 'Catalan'\n }, {\n key: 'cs',\n name: 'Čeština'\n }, {\n key: 'es',\n name: 'Español'\n }, {\n key: 'fr',\n name: 'Français'\n }, {\n key: 'ja',\n name: '日本語'\n }, {\n key: 'nl',\n name: 'Nederlands'\n }, {\n key: 'nb',\n name: 'Norsk Bokmål'\n }, {\n key: 'pl',\n name: 'Polski'\n }, {\n key: {\n 'pt-BR': {\n name: 'Português brasileiro'\n }\n }\n }, {\n key: 'ru',\n name: 'Русский'\n }\n ];\n }).property(),\n saveLocale: function(event) {\n return this.get('user').updateLocale($('#locale').val());\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/profile");minispade.register('views/repo', "(function() {(function() {\nminispade.require('views/repo/list');\nminispade.require('views/repo/show');\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo");minispade.register('views/repo/list', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n toggleInfo: function(event) {\n return $('#repos').toggleClass('open');\n }\n }),\n ReposListView: Em.CollectionView.extend({\n elementId: 'repos',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n repoBinding: 'content',\n classNames: ['repo'],\n classNameBindings: ['color', 'selected'],\n selectedBinding: 'repo.selected',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('repo.lastBuildResult'));\n }).property('repo.lastBuildResult'),\n urlRepo: (function() {\n return Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlLastBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('repo.lastBuildId'));\n }).property('repo.slug', 'repo.lastBuildId')\n })\n }),\n ReposListTabsView: Travis.View.extend({\n templateName: 'repos/list/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.app.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/list");minispade.register('views/repo/show', "(function() {(function() {\n\n this.Travis.reopen({\n RepoView: Travis.View.extend({\n templateName: 'repos/show',\n reposBinding: 'controller.repos',\n repoBinding: 'controller.repo',\n \"class\": (function() {\n if (!this.get('repo.isComplete') && !this.get('isEmpty')) {\n return 'loading';\n }\n }).property('repo.isComplete'),\n isEmpty: (function() {\n return this.get('repos.length') === 0;\n }).property('repos.length'),\n urlGithub: (function() {\n return Travis.Urls.githubRepo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubWatchers: (function() {\n return Travis.Urls.githubWatchers(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubNetwork: (function() {\n return Travis.Urls.githubNetwork(this.get('repo.slug'));\n }).property('repo.slug')\n }),\n ReposEmptyView: Travis.View.extend({\n template: ''\n }),\n RepoShowTabsView: Travis.View.extend({\n templateName: 'repos/show/tabs',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n classCurrent: (function() {\n if (this.get('tab') === 'current') {\n return 'active';\n }\n }).property('tab'),\n classBuilds: (function() {\n if (this.get('tab') === 'builds') {\n return 'active';\n }\n }).property('tab'),\n classPullRequests: (function() {\n if (this.get('tab') === 'pull_requests') {\n return 'active';\n }\n }).property('tab'),\n classBranches: (function() {\n if (this.get('tab') === 'branches') {\n return 'active';\n }\n }).property('tab'),\n classEvents: (function() {\n if (this.get('tab') === 'events') {\n return 'active';\n }\n }).property('tab'),\n classBuild: (function() {\n var classes, tab;\n tab = this.get('tab');\n classes = [];\n if (tab === 'build') {\n classes.push('active');\n }\n if (tab === 'build' || tab === 'job') {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab'),\n classJob: (function() {\n if (this.get('tab') === 'job') {\n return 'active display-inline';\n }\n }).property('tab')\n }),\n RepoShowToolsView: Travis.View.extend({\n templateName: 'repos/show/tools',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n closeMenu: function() {\n return $('.menu').removeClass('display');\n },\n menu: function(event) {\n var element;\n this.popupCloseAll();\n element = $('#tools .menu').toggleClass('display');\n return event.stopPropagation();\n },\n requeue: function() {\n this.closeMenu();\n return this.get('build').requeue();\n },\n statusImages: function(event) {\n this.set('active', true);\n this.closeMenu();\n this.popup(event);\n return event.stopPropagation();\n },\n canPush: (function() {\n return this.get('isBuildTab') && this.get('build.isFinished') && this.get('hasPushPermissions');\n }).property('build.isFinished', 'hasPushPermissions', 'isBuildTab'),\n isBuildTab: (function() {\n return ['current', 'build', 'job'].indexOf(this.get('tab')) > -1;\n }).property('tab'),\n hasPushPermissions: (function() {\n var permissions;\n if (permissions = Travis.app.get('currentUser.permissions')) {\n return permissions.indexOf(this.get('repo.id')) > -1;\n }\n }).property('Travis.app.currentUser.permissions.length', 'repo.id'),\n branches: (function() {\n if (this.get('active')) {\n return this.get('repo.branches');\n }\n }).property('active', 'repo.branches'),\n urlRepo: (function() {\n return 'https://' + location.host + Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlStatusImage: (function() {\n return Travis.Urls.statusImage(this.get('repo.slug'), this.get('branch.commit.branch'));\n }).property('repo.slug', 'branch'),\n markdownStatusImage: (function() {\n return \"[) + \")](\" + (this.get('urlRepo')) + \")\";\n }).property('urlStatusImage'),\n textileStatusImage: (function() {\n return \"!\" + (this.get('urlStatusImage')) + \"!:\" + (this.get('urlRepo'));\n }).property('urlStatusImage'),\n rdocStatusImage: (function() {\n return \"{ }[\" + (this.get('urlRepo')) + \"]\";\n }).property('urlStatusImage')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/show");minispade.register('views/sidebar', "(function() {(function() {\n\n this.Travis.reopen({\n SidebarView: Travis.View.extend({\n templateName: 'layouts/sidebar',\n DecksView: Em.View.extend({\n templateName: \"sponsors/decks\",\n controller: Travis.SponsorsController.create({\n perPage: 1\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n Travis.app.get('router.sidebarController').tickables.push(controller);\n controller.set('content', Travis.Sponsor.decks());\n }\n return this._super.apply(this, arguments);\n }\n }),\n LinksView: Em.View.extend({\n templateName: \"sponsors/links\",\n controller: Travis.SponsorsController.create({\n perPage: 6\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n controller.set('content', Travis.Sponsor.links());\n Travis.app.get('router.sidebarController').tickables.push(controller);\n }\n return this._super.apply(this, arguments);\n }\n }),\n WorkersView: Em.View.extend({\n templateName: 'workers/list',\n controller: Travis.WorkersController.create(),\n didInsertElement: function() {\n this.set('controller.content', Travis.Worker.find());\n return this._super.apply(this, arguments);\n }\n }),\n QueuesView: Em.View.extend({\n templateName: 'queues/list',\n controller: Em.ArrayController.create(),\n didInsertElement: function() {\n var queue, queues;\n queues = (function() {\n var _i, _len, _ref, _results;\n _ref = Travis.QUEUES;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n queue = _ref[_i];\n _results.push(Em.ArrayController.create({\n content: Travis.Job.queued(queue.name),\n id: \"queue_\" + queue.name,\n name: queue.display\n }));\n }\n return _results;\n })();\n this.set('controller.content', queues);\n return this._super.apply(this, arguments);\n }\n })\n }),\n WorkersView: Travis.View.extend({\n toggleWorkers: function(event) {\n var handle;\n handle = $(event.target).toggleClass('open');\n if (handle.hasClass('open')) {\n return $('#workers li').addClass('open');\n } else {\n return $('#workers li').removeClass('open');\n }\n }\n }),\n WorkersListView: Travis.View.extend({\n toggle: function(event) {\n return $(event.target).closest('li').toggleClass('open');\n }\n }),\n WorkersItemView: Travis.View.extend({\n display: (function() {\n var name, number, payload, repo, state;\n name = (this.get('worker.name') || '').replace('travis-', '');\n state = this.get('worker.state');\n payload = this.get('worker.payload');\n if (state === 'working' && (payload != null ? payload.repository : void 0) && (payload != null ? payload.build : void 0)) {\n repo = payload.repository.slug;\n number = ' #' + payload.build.number;\n return (\"\" + name + \": \" + repo + \" \" + number).htmlSafe();\n } else {\n return \"\" + name + \": \" + state;\n }\n }).property('worker.state')\n }),\n QueueItemView: Travis.View.extend({\n tagName: 'li'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/sidebar");minispade.register('views/signin', "(function() {(function() {\n\n this.Travis.reopen({\n SigninView: Travis.View.extend({\n templateName: 'auth/signin',\n signingIn: (function() {\n return Travis.app.get('authState') === 'signing-in';\n }).property('Travis.app.authState')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/signin");minispade.register('views/stats', "(function() {(function() {\n\n this.Travis.reopen({\n StatsView: Travis.View.extend({\n templateName: 'stats/show',\n didInsertElement: function() {},\n renderChart: function(config) {\n var chart;\n chart = new Highcharts.Chart(config);\n return this.fetch(config.source, function(data) {\n var stats;\n stats = (function() {\n var _i, _len, _ref, _results;\n _ref = data.stats;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n stats = _ref[_i];\n _results.push(config.map(stats));\n }\n return _results;\n })();\n return chart.series[0].setData(stats);\n });\n },\n fetch: function(url, callback) {\n return $.ajax({\n type: 'GET',\n url: url,\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n },\n success: callback\n });\n },\n CHARTS: {\n repos: {\n source: '/api/stats/repos',\n total: 0,\n map: function(data) {\n return [Date.parse(data.date), this.total += parseInt(data.count)];\n },\n chart: {\n renderTo: \"repos_stats\"\n },\n title: {\n text: \"Total Projects/Repositories\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" repos\";\n }\n },\n series: [\n {\n name: \"Repository Growth\",\n data: []\n }\n ]\n },\n builds: {\n source: '/api/stats/tests',\n map: function(data) {\n return [Date.parse(data.date), parseInt(data.count)];\n },\n chart: {\n renderTo: \"tests_stats\",\n type: \"column\"\n },\n title: {\n text: \"Build Count\"\n },\n subtitle: {\n text: \"last month\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" builds\";\n }\n },\n series: [\n {\n name: \"Total Builds\",\n data: []\n }\n ]\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/stats");minispade.register('views/top', "(function() {(function() {\n\n this.Travis.reopen({\n TopView: Travis.View.extend({\n templateName: 'layouts/top',\n tabBinding: 'controller.tab',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=24&d=mm\";\n }).property('user.gravatarId'),\n classHome: (function() {\n if (this.get('tab') === 'home') {\n return 'active';\n }\n }).property('tab'),\n classStats: (function() {\n if (this.get('tab') === 'stats') {\n return 'active';\n }\n }).property('tab'),\n classProfile: (function() {\n var classes;\n classes = ['profile'];\n if (this.get('tab') === 'profile') {\n classes.push('active');\n }\n classes.push(Travis.app.get('authState'));\n return classes.join(' ');\n }).property('tab', 'Travis.app.authState'),\n showProfile: function() {\n return $('#top .profile ul').show();\n },\n hideProfile: function() {\n return $('#top .profile ul').hide();\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/top");minispade.register('config/emoij', "(function() {(function() {\n\n this.EmojiDictionary = ['-1', '0', '1', '109', '2', '3', '4', '5', '6', '7', '8', '8ball', '9', 'a', 'ab', 'airplane', 'alien', 'ambulance', 'angel', 'anger', 'angry', 'apple', 'aquarius', 'aries', 'arrow_backward', 'arrow_down', 'arrow_forward', 'arrow_left', 'arrow_lower_left', 'arrow_lower_right', 'arrow_right', 'arrow_up', 'arrow_upper_left', 'arrow_upper_right', 'art', 'astonished', 'atm', 'b', 'baby', 'baby_chick', 'baby_symbol', 'balloon', 'bamboo', 'bank', 'barber', 'baseball', 'basketball', 'bath', 'bear', 'beer', 'beers', 'beginner', 'bell', 'bento', 'bike', 'bikini', 'bird', 'birthday', 'black_square', 'blue_car', 'blue_heart', 'blush', 'boar', 'boat', 'bomb', 'book', 'boot', 'bouquet', 'bow', 'bowtie', 'boy', 'bread', 'briefcase', 'broken_heart', 'bug', 'bulb', 'bullettrain_front', 'bullettrain_side', 'bus', 'busstop', 'cactus', 'cake', 'calling', 'camel', 'camera', 'cancer', 'capricorn', 'car', 'cat', 'cd', 'chart', 'checkered_flag', 'cherry_blossom', 'chicken', 'christmas_tree', 'church', 'cinema', 'city_sunrise', 'city_sunset', 'clap', 'clapper', 'clock1', 'clock10', 'clock11', 'clock12', 'clock2', 'clock3', 'clock4', 'clock5', 'clock6', 'clock7', 'clock8', 'clock9', 'closed_umbrella', 'cloud', 'clubs', 'cn', 'cocktail', 'coffee', 'cold_sweat', 'computer', 'confounded', 'congratulations', 'construction', 'construction_worker', 'convenience_store', 'cool', 'cop', 'copyright', 'couple', 'couple_with_heart', 'couplekiss', 'cow', 'crossed_flags', 'crown', 'cry', 'cupid', 'currency_exchange', 'curry', 'cyclone', 'dancer', 'dancers', 'dango', 'dart', 'dash', 'de', 'department_store', 'diamonds', 'disappointed', 'dog', 'dolls', 'dolphin', 'dress', 'dvd', 'ear', 'ear_of_rice', 'egg', 'eggplant', 'egplant', 'eight_pointed_black_star', 'eight_spoked_asterisk', 'elephant', 'email', 'es', 'european_castle', 'exclamation', 'eyes', 'factory', 'fallen_leaf', 'fast_forward', 'fax', 'fearful', 'feelsgood', 'feet', 'ferris_wheel', 'finnadie', 'fire', 'fire_engine', 'fireworks', 'fish', 'fist', 'flags', 'flushed', 'football', 'fork_and_knife', 'fountain', 'four_leaf_clover', 'fr', 'fries', 'frog', 'fuelpump', 'gb', 'gem', 'gemini', 'ghost', 'gift', 'gift_heart', 'girl', 'goberserk', 'godmode', 'golf', 'green_heart', 'grey_exclamation', 'grey_question', 'grin', 'guardsman', 'guitar', 'gun', 'haircut', 'hamburger', 'hammer', 'hamster', 'hand', 'handbag', 'hankey', 'hash', 'headphones', 'heart', 'heart_decoration', 'heart_eyes', 'heartbeat', 'heartpulse', 'hearts', 'hibiscus', 'high_heel', 'horse', 'hospital', 'hotel', 'hotsprings', 'house', 'hurtrealbad', 'icecream', 'id', 'ideograph_advantage', 'imp', 'information_desk_person', 'iphone', 'it', 'jack_o_lantern', 'japanese_castle', 'joy', 'jp', 'key', 'kimono', 'kiss', 'kissing_face', 'kissing_heart', 'koala', 'koko', 'kr', 'leaves', 'leo', 'libra', 'lips', 'lipstick', 'lock', 'loop', 'loudspeaker', 'love_hotel', 'mag', 'mahjong', 'mailbox', 'man', 'man_with_gua_pi_mao', 'man_with_turban', 'maple_leaf', 'mask', 'massage', 'mega', 'memo', 'mens', 'metal', 'metro', 'microphone', 'minidisc', 'mobile_phone_off', 'moneybag', 'monkey', 'monkey_face', 'moon', 'mortar_board', 'mount_fuji', 'mouse', 'movie_camera', 'muscle', 'musical_note', 'nail_care', 'necktie', 'new', 'no_good', 'no_smoking', 'nose', 'notes', 'o', 'o2', 'ocean', 'octocat', 'octopus', 'oden', 'office', 'ok', 'ok_hand', 'ok_woman', 'older_man', 'older_woman', 'open_hands', 'ophiuchus', 'palm_tree', 'parking', 'part_alternation_mark', 'pencil', 'penguin', 'pensive', 'persevere', 'person_with_blond_hair', 'phone', 'pig', 'pill', 'pisces', 'plus1', 'point_down', 'point_left', 'point_right', 'point_up', 'point_up_2', 'police_car', 'poop', 'post_office', 'postbox', 'pray', 'princess', 'punch', 'purple_heart', 'question', 'rabbit', 'racehorse', 'radio', 'rage', 'rage1', 'rage2', 'rage3', 'rage4', 'rainbow', 'raised_hands', 'ramen', 'red_car', 'red_circle', 'registered', 'relaxed', 'relieved', 'restroom', 'rewind', 'ribbon', 'rice', 'rice_ball', 'rice_cracker', 'rice_scene', 'ring', 'rocket', 'roller_coaster', 'rose', 'ru', 'runner', 'sa', 'sagittarius', 'sailboat', 'sake', 'sandal', 'santa', 'satellite', 'satisfied', 'saxophone', 'school', 'school_satchel', 'scissors', 'scorpius', 'scream', 'seat', 'secret', 'shaved_ice', 'sheep', 'shell', 'ship', 'shipit', 'shirt', 'shit', 'shoe', 'signal_strength', 'six_pointed_star', 'ski', 'skull', 'sleepy', 'slot_machine', 'smile', 'smiley', 'smirk', 'smoking', 'snake', 'snowman', 'sob', 'soccer', 'space_invader', 'spades', 'spaghetti', 'sparkler', 'sparkles', 'speaker', 'speedboat', 'squirrel', 'star', 'star2', 'stars', 'station', 'statue_of_liberty', 'stew', 'strawberry', 'sunflower', 'sunny', 'sunrise', 'sunrise_over_mountains', 'surfer', 'sushi', 'suspect', 'sweat', 'sweat_drops', 'swimmer', 'syringe', 'tada', 'tangerine', 'taurus', 'taxi', 'tea', 'telephone', 'tennis', 'tent', 'thumbsdown', 'thumbsup', 'ticket', 'tiger', 'tm', 'toilet', 'tokyo_tower', 'tomato', 'tongue', 'top', 'tophat', 'traffic_light', 'train', 'trident', 'trophy', 'tropical_fish', 'truck', 'trumpet', 'tshirt', 'tulip', 'tv', 'u5272', 'u55b6', 'u6307', 'u6708', 'u6709', 'u6e80', 'u7121', 'u7533', 'u7a7a', 'umbrella', 'unamused', 'underage', 'unlock', 'up', 'us', 'v', 'vhs', 'vibration_mode', 'virgo', 'vs', 'walking', 'warning', 'watermelon', 'wave', 'wc', 'wedding', 'whale', 'wheelchair', 'white_square', 'wind_chime', 'wink', 'wink2', 'wolf', 'woman', 'womans_hat', 'womens', 'x', 'yellow_heart', 'zap', 'zzz'];\n\n}).call(this);\n\n})();\n//@ sourceURL=config/emoij");minispade.register('data/sponsors', "(function() {(function() {\n\n this.Travis.SPONSORS = [\n {\n type: 'platinum',\n url: \"http://www.wooga.com\",\n image: \"wooga-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://bendyworks.com\",\n image: \"bendyworks-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://cloudcontrol.com\",\n image: \"cloudcontrol-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://xing.de\",\n image: \"xing-205x130.png\"\n }, {\n type: 'gold',\n url: \"http://heroku.com\",\n image: \"heroku-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://soundcloud.com\",\n image: \"soundcloud-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://nedap.com\",\n image: \"nedap-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://mongohq.com\",\n image: \"mongohq-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://zweitag.de\",\n image: \"zweitag-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://kanbanery.com\",\n image: \"kanbanery-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://ticketevolution.com\",\n image: \"ticketevolution-205x60.jpg\"\n }, {\n type: 'gold',\n url: \"http://plan.io/travis\",\n image: \"planio-205x60.png\"\n }, {\n type: 'silver',\n link: \"Cobot : The one tool to run your coworking space \"\n }, {\n type: 'silver',\n link: \"JumpstartLab : We build developers \"\n }, {\n type: 'silver',\n link: \"Evil Martians : Agile Ruby on Rails development \"\n }, {\n type: 'silver',\n link: \"Zendesk : Love your helpdesk \"\n }, {\n type: 'silver',\n link: \"Stripe : Payments for developers \"\n }, {\n type: 'silver',\n link: \"Basho : We make Riak! \"\n }, {\n type: 'silver',\n link: \"Relevance : We deliver software solutions \"\n }, {\n type: 'silver',\n link: \"Mindmatters : Software für Menschen \"\n }, {\n type: 'silver',\n link: \"Amen : The best and worst of everything \"\n }, {\n type: 'silver',\n link: \"Site5 : Premium Web Hosting Solutions \"\n }, {\n type: 'silver',\n link: \"Crowd Interactive : Leading Rails consultancy in Mexico \"\n }, {\n type: 'silver',\n link: \"Atomic Object : Work with really smart people \"\n }, {\n type: 'silver',\n link: \"Codeminer : smart services for your startup \"\n }, {\n type: 'silver',\n link: \"Cloudant : grow into your data layer, not out of it \"\n }, {\n type: 'silver',\n link: \"Gidsy : Explore, organize & book unique things to do! \"\n }, {\n type: 'silver',\n link: \"5apps : Package & deploy HTML5 apps automatically \"\n }, {\n type: 'silver',\n link: \"Meltmedia : We are Interactive Superheroes \"\n }, {\n type: 'silver',\n link: \"Fingertips offers design and development services \"\n }, {\n type: 'silver',\n link: \"Engine Yard : Build epic apps, let us handle the rest \"\n }, {\n type: 'silver',\n link: \"Malwarebytes : Defeat Malware once and for all. \"\n }, {\n type: 'silver',\n link: \"Readmill : The best reading app on the iPad. \"\n }, {\n type: 'silver',\n link: \"Medidata : clinical tech improving quality of life \"\n }, {\n type: 'silver',\n link: \"ESM : Japan's best agile Ruby/Rails consultancy \"\n }, {\n type: 'silver',\n link: \"Twitter : instantly connects people everywhere \"\n }, {\n type: 'silver',\n link: \"AGiLE ANiMAL : we <3 Travis CI. \"\n }, {\n type: 'silver',\n link: \"Tupalo : Discover, review & share local businesses. \"\n }\n ];\n\n this.Travis.WORKERS = {\n \"jvm-otp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n },\n \"jvm-otp2.worker.travis-ci.org\": {\n name: \"Transloadit\",\n url: \"http://transloadit.com\"\n },\n \"ppp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://beta.travis-ci.com\"\n },\n \"ppp2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ppp3.worker.travis-ci.org\": {\n name: \"Alchemy CMS\",\n url: \"http://alchemy-cms.com/\"\n },\n \"rails1.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby1.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"ruby2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby3.worker.travis-ci.org\": {\n name: \"Railslove\",\n url: \"http://railslove.de\"\n },\n \"ruby4.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"spree.worker.travis-ci.org\": {\n name: \"Spree\",\n url: \"http://spreecommerce.com\"\n },\n \"staging.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=data/sponsors");minispade.register('ext/jquery', "(function() {(function() {\n\n $.fn.extend({\n outerHtml: function() {\n return $(this).wrap('
').parent().html();\n },\n outerElement: function() {\n return $($(this).outerHtml()).empty();\n },\n flash: function() {\n return Utils.flash(this);\n },\n unflash: function() {\n return Utils.unflash(this);\n },\n filterLog: function() {\n this.deansi();\n return this.foldLog();\n },\n deansi: function() {\n return this.html(Utils.deansi(this.html()));\n },\n foldLog: function() {\n return this.html(Utils.foldLog(this.html()));\n },\n unfoldLog: function() {\n return this.html(Utils.unfoldLog(this.html()));\n },\n updateTimes: function() {\n return Utils.updateTimes(this);\n },\n activateTab: function(tab) {\n return Utils.activateTab(this, tab);\n },\n timeInWords: function() {\n return $(this).each(function() {\n return $(this).text(Utils.timeInWords(parseInt($(this).attr('title'))));\n });\n },\n updateGithubStats: function(repo) {\n return Utils.updateGithubStats(repo, $(this));\n }\n });\n\n $.extend({\n isEmpty: function(obj) {\n if ($.isArray(obj)) {\n return !obj.length;\n } else if ($.isObject(obj)) {\n return !$.keys(obj).length;\n } else {\n return !obj;\n }\n },\n isObject: function(obj) {\n return Object.prototype.toString.call(obj) === '[object Object]';\n },\n keys: function(obj) {\n var keys;\n keys = [];\n $.each(obj, function(key) {\n return keys.push(key);\n });\n return keys;\n },\n values: function(obj) {\n var values;\n values = [];\n $.each(obj, function(key, value) {\n return values.push(value);\n });\n return values;\n },\n underscore: function(string) {\n return string[0].toLowerCase() + string.substring(1).replace(/([A-Z])?/g, function(match, chr) {\n if (chr) {\n return \"_\" + (chr.toUpperCase());\n } else {\n return '';\n }\n });\n },\n camelize: function(string, uppercase) {\n string = uppercase === false ? $.underscore(string) : $.capitalize(string);\n return string.replace(/_(.)?/g, function(match, chr) {\n if (chr) {\n return chr.toUpperCase();\n } else {\n return '';\n }\n });\n },\n capitalize: function(string) {\n return string[0].toUpperCase() + string.substring(1);\n },\n compact: function(object) {\n return $.grep(object, function(value) {\n return !!value;\n });\n },\n all: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return false;\n }\n i++;\n }\n return true;\n },\n detect: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return array[i];\n }\n i++;\n }\n },\n select: function(array, callback) {\n var args, i, result;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n result = [];\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n result.push(array[i]);\n }\n i++;\n }\n return result;\n },\n slice: function(object, key) {\n var keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) > -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n only: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) !== -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n except: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) === -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n intersect: function(array, other) {\n return array.filter(function(element) {\n return other.indexOf(element) !== -1;\n });\n },\n map: function(elems, callback, arg) {\n var i, isArray, key, length, ret, value;\n value = void 0;\n key = void 0;\n ret = [];\n i = 0;\n length = elems.length;\n isArray = elems instanceof jQuery || length !== void 0 && typeof length === 'number' && (length > 0 && elems[0] && elems[length - 1]) || length === 0 || jQuery.isArray(elems);\n if (isArray) {\n while (i < length) {\n value = callback(elems[i], i, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n i++;\n }\n } else {\n for (key in elems) {\n value = callback(elems[key], key, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n }\n }\n return ret.concat.apply([], ret);\n },\n shuffle: function(array) {\n var current, tmp, top;\n array = array.slice();\n top = array.length;\n while (top && --top) {\n current = Math.floor(Math.random() * (top + 1));\n tmp = array[current];\n array[current] = array[top];\n array[top] = tmp;\n }\n return array;\n },\n truncate: function(string, length) {\n if (string.length > length) {\n return string.trim().substring(0, length) + '...';\n } else {\n return string;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=ext/jquery");minispade.register('travis/ajax', "(function() {(function() {\n\n jQuery.support.cors = true;\n\n this.Travis.ajax = Em.Object.create({\n DEFAULT_OPTIONS: {\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n }\n },\n get: function(url, callback) {\n return this.ajax(url, 'get', {\n success: callback\n });\n },\n post: function(url, data, callback) {\n return this.ajax(url, 'post', {\n data: data,\n success: callback\n });\n },\n ajax: function(url, method, options) {\n var endpoint, success, token, _base,\n _this = this;\n endpoint = Travis.config.api_endpoint || '';\n options = options || {};\n if (token = sessionStorage.getItem('travis.token')) {\n options.headers || (options.headers = {});\n (_base = options.headers)['Authorization'] || (_base['Authorization'] = \"token \" + token);\n }\n options.url = \"\" + endpoint + url;\n options.type = method;\n options.dataType = 'json';\n options.contentType = 'application/json; charset=utf-8';\n options.context = this;\n if (options.data && method !== 'GET' && method !== 'get') {\n options.data = JSON.stringify(options.data);\n }\n success = options.success || (function() {});\n options.success = function(data) {\n var _ref;\n if (((_ref = Travis.app) != null ? _ref.router : void 0) && data.flash) {\n Travis.app.router.flashController.pushObjects(data.flash);\n }\n delete data.flash;\n return success.call(_this, data);\n };\n options.error = function(data) {\n if (data.flash) {\n return Travis.app.router.flashController.pushObject(data.flash);\n }\n };\n return $.ajax($.extend(options, Travis.ajax.DEFAULT_OPTIONS));\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ajax");minispade.register('travis/expandable_record_array', "(function() {(function() {\n\n Travis.ExpandableRecordArray = DS.RecordArray.extend({\n isLoaded: false,\n isLoading: false,\n load: function(array) {\n var observer, self;\n this.set('isLoading', true);\n self = this;\n observer = function() {\n var content;\n if (this.get('isLoaded')) {\n content = self.get('content');\n array.removeObserver('isLoaded', observer);\n array.forEach(function(record) {\n return self.pushObject(record);\n });\n self.set('isLoading', false);\n return self.set('isLoaded', true);\n }\n };\n return array.addObserver('isLoaded', observer);\n },\n pushObject: function(record) {\n var clientId, id, ids;\n ids = this.get('content');\n id = record.get('id');\n clientId = record.get('clientId');\n if (ids.contains(clientId)) {\n return;\n }\n return ids.pushObject(clientId);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/expandable_record_array");minispade.register('travis/limited_array', "(function() {(function() {\n\n Travis.LimitedArray = Em.ArrayProxy.extend({\n limit: 10,\n init: function() {\n return this._super.apply(this, arguments);\n },\n arrangedContent: (function() {\n var content;\n if (content = this.get('content')) {\n return content.slice(0, this.get('limit'));\n }\n }).property('content'),\n contentArrayDidChange: function(array, index, removedCount, addedCount) {\n var addedObjects, arrangedContent, length, limit, object, _i, _len;\n this._super.apply(this, arguments);\n if (addedCount > 0) {\n addedObjects = array.slice(index, index + addedCount);\n arrangedContent = this.get('arrangedContent');\n for (_i = 0, _len = addedObjects.length; _i < _len; _i++) {\n object = addedObjects[_i];\n arrangedContent.unshiftObject(object);\n }\n limit = this.get('limit');\n length = arrangedContent.get('length');\n if (length > limit) {\n return arrangedContent.replace(limit, length - limit);\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/limited_array");minispade.register('travis/location', "(function() {(function() {\n\n Travis.Location = Ember.HistoryLocation.extend({\n onUpdateURL: function(callback) {\n var guid;\n guid = Ember.guidFor(this);\n return Ember.$(window).bind('popstate.ember-location-' + guid, function(e) {\n return callback(location.pathname + location.hash);\n });\n },\n getURL: function() {\n var location;\n location = this.get('location');\n return location.pathname + location.hash;\n }\n });\n\n Ember.Location.implementations['travis'] = Travis.Location;\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/location");minispade.register('travis/log', "(function() {(function() {\n\n this.Travis.Log = {\n FOLDS: {\n schema: /(\\$ (?:bundle exec )?rake( db:create)? db:schema:load[\\s\\S]*?-- assume_migrated_upto_version[\\s\\S]*?<\\/p>\\n.*<\\/p>)/g,\n migrate: /(\\$ (?:bundle exec )?rake( db:create)? db:migrate[\\s\\S]*== +\\w+: migrated \\(.*\\) =+)/g,\n bundle: /(\\$ bundle install.*<\\/p>\\n((Updating|Using|Installing|Fetching|remote:|Receiving|Resolving).*?<\\/p>\\n|<\\/p>\\n)*)/g,\n exec: /([\\/\\w]*.rvm\\/rubies\\/[\\S]*?\\/(ruby|rbx|jruby) .*?<\\/p>)/g\n },\n filter: function(log, path) {\n log = this.escape(log);\n log = this.deansi(log);\n log = log.replace(/\\r/g, '');\n log = this.number(log, path);\n log = this.fold(log);\n log = log.replace(/\\n/g, '');\n return log;\n },\n stripPaths: function(log) {\n return log.replace(/\\/home\\/vagrant\\/builds(\\/[^\\/\\n]+){2}\\//g, '');\n },\n escape: function(log) {\n return Handlebars.Utils.escapeExpression(log);\n },\n escapeRuby: function(log) {\n return log.replace(/#<(\\w+.*?)>/, '#<$1>');\n },\n number: function(log, path) {\n var result;\n path = \"\" + path + \"/\";\n result = '';\n $.each(log.trim().split('\\n'), function(ix, line) {\n var number, pathWithNumber;\n number = ix + 1;\n pathWithNumber = \"\" + path + \"#L\" + number;\n return result += '%@ %@
\\n'.fmt(pathWithNumber, number, number, number, line);\n });\n return result.trim();\n },\n deansi: function(log) {\n var ansi, text;\n log = log.replace(/\\r\\r/g, '\\r').replace(/\\033\\[K\\r/g, '\\r').replace(/^.*\\r(?!$)/gm, '').replace(/\u001b\\[2K/g, '').replace(/\\033\\(B/g, \"\");\n ansi = ansiparse(log);\n text = '';\n ansi.forEach(function(part) {\n var classes;\n classes = [];\n part.foreground && classes.push(part.foreground);\n part.background && classes.push('bg-' + part.background);\n part.bold && classes.push('bold');\n part.italic && classes.push('italic');\n return text += (classes.length ? '' + part.text + ' ' : part.text);\n });\n return text.replace(/\\033/g, '');\n },\n fold: function(log) {\n log = this.unfold(log);\n $.each(Travis.Log.FOLDS, function(name, pattern) {\n return log = log.replace(pattern, function() {\n return '' + arguments[1].trim() + '
';\n });\n });\n return log;\n },\n unfold: function(log) {\n return log.replace(/([\\s\\S]*?)<\\/div>/g, '$1\\n');\n },\n location: function() {\n return window.location.hash;\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/log");minispade.register('travis/model', "(function() {(function() {\n\n this.Travis.Model = DS.Model.extend({\n primaryKey: 'id',\n id: DS.attr('number'),\n init: function() {\n this.loadedAttributes = [];\n return this._super.apply(this, arguments);\n },\n get: function(name) {\n if (this.constructor.isAttribute(name) && this.get('incomplete') && !this.isAttributeLoaded(name)) {\n this.loadTheRest();\n }\n return this._super.apply(this, arguments);\n },\n refresh: function() {\n var id, store;\n if (id = this.get('id')) {\n store = this.get('store');\n return store.adapter.find(store, this.constructor, id);\n }\n },\n update: function(attrs) {\n var _this = this;\n $.each(attrs, function(key, value) {\n if (key !== 'id') {\n return _this.set(key, value);\n }\n });\n return this;\n },\n isAttributeLoaded: function(name) {\n return this.loadedAttributes.contains(name);\n },\n isComplete: (function() {\n if (this.get('incomplete')) {\n this.loadTheRest();\n return false;\n } else {\n this.set('isCompleting', false);\n return this.get('isLoaded');\n }\n }).property('incomplete', 'isLoaded'),\n loadTheRest: function() {\n if (this.get('isCompleting')) {\n return;\n }\n this.set('isCompleting', true);\n return this.refresh();\n },\n select: function() {\n return this.constructor.select(this.get('id'));\n }\n });\n\n this.Travis.Model.reopenClass({\n find: function() {\n if (arguments.length === 0) {\n return Travis.app.store.findAll(this);\n } else {\n return this._super.apply(this, arguments);\n }\n },\n filter: function(callback) {\n return Travis.app.store.filter(this, callback);\n },\n load: function(attrs) {\n return Travis.app.store.load(this, attrs);\n },\n select: function(id) {\n return this.find().forEach(function(record) {\n return record.set('selected', record.get('id') === id);\n });\n },\n buildURL: function(suffix) {\n var base, url;\n base = this.url || this.pluralName();\n Ember.assert('Base URL (' + base + ') must not start with slash', !base || base.toString().charAt(0) !== '/');\n Ember.assert('URL suffix (' + suffix + ') must not start with slash', !suffix || suffix.toString().charAt(0) !== '/');\n url = [base];\n if (suffix !== void 0) {\n url.push(suffix);\n }\n return url.join('/');\n },\n singularName: function() {\n var name, parts;\n parts = this.toString().split('.');\n name = parts[parts.length - 1];\n return name.replace(/([A-Z])/g, '_$1').toLowerCase().slice(1);\n },\n pluralName: function() {\n return Travis.app.store.adapter.pluralize(this.singularName());\n },\n isAttribute: function(name) {\n if (!this.attributesSaved) {\n this._saveAttributes();\n }\n return this.cachedAttributes.contains(name);\n },\n _saveAttributes: function() {\n var cachedAttributes;\n this.attributesSaved = true;\n cachedAttributes = [];\n this.eachComputedProperty(function(name, meta) {\n if (meta.isAttribute) {\n return cachedAttributes.pushObject(name);\n }\n });\n return this.cachedAttributes = cachedAttributes;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/model");minispade.register('travis/ticker', "(function() {(function() {\n\n this.Travis.Ticker = Ember.Object.extend({\n init: function() {\n if (this.get('interval') !== -1) {\n return this.schedule();\n }\n },\n tick: function() {\n var context, target, targets, _i, _len;\n context = this.get('context');\n targets = this.get('targets') || [this.get('target')];\n for (_i = 0, _len = targets.length; _i < _len; _i++) {\n target = targets[_i];\n if (context) {\n target = context.get(target);\n }\n if (target) {\n target.tick();\n }\n }\n return this.schedule();\n },\n schedule: function() {\n var _this = this;\n return Ember.run.later((function() {\n return _this.tick();\n }), this.get('interval') || Travis.app.TICK_INTERVAL);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ticker");minispade.register('travis', "(function() {(function() {\nminispade.require('ext/jquery');\nminispade.require('ext/ember/namespace');\n\n this.Travis = Em.Namespace.create({\n config: {\n api_endpoint: $('meta[rel=\"travis.api_endpoint\"]').attr('href'),\n pusher_key: $('meta[name=\"travis.pusher_key\"]').attr('value')\n },\n CONFIG_KEYS: ['rvm', 'gemfile', 'env', 'jdk', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala'],\n ROUTES: {\n 'profile/:login/me': ['profile', 'user'],\n 'profile/:login': ['profile', 'hooks'],\n 'profile': ['profile', 'hooks'],\n 'stats': ['stats', 'show'],\n ':owner/:name/jobs/:id/:line': ['home', 'job'],\n ':owner/:name/jobs/:id': ['home', 'job'],\n ':owner/:name/builds/:id': ['home', 'build'],\n ':owner/:name/builds': ['home', 'builds'],\n ':owner/:name/pull_requests': ['home', 'pullRequests'],\n ':owner/:name/branches': ['home', 'branches'],\n ':owner/:name': ['home', 'current'],\n '': ['home', 'index'],\n '#': ['home', 'index']\n },\n QUEUES: [\n {\n name: 'common',\n display: 'Common'\n }, {\n name: 'php',\n display: 'PHP, Perl and Python'\n }, {\n name: 'node_js',\n display: 'Node.js'\n }, {\n name: 'jvmotp',\n display: 'JVM and Erlang'\n }, {\n name: 'rails',\n display: 'Rails'\n }, {\n name: 'spree',\n display: 'Spree'\n }\n ],\n INTERVALS: {\n sponsors: -1,\n times: -1,\n updateTimes: 1000\n },\n setLocale: function(locale) {\n if (!locale) {\n return;\n }\n I18n.locale = locale;\n return localStorage.setItem('travis.config.locale', locale);\n },\n run: function(attrs) {\n if (location.hash.slice(0, 2) === '#!') {\n location.href = location.href.replace('#!/', '');\n }\n this.setLocale(localStorage.getItem('travis.config.locale'));\n return Ember.run.next(this, function() {\n var app,\n _this = this;\n app = Travis.App.create(attrs || {});\n $.each(Travis, function(key, value) {\n if (value && value.isClass && key !== 'constructor') {\n return app[key] = value;\n }\n });\n this.app = app;\n this.store = app.store;\n return $(function() {\n return app.initialize();\n });\n });\n }\n });\nminispade.require('travis/ajax');\nminispade.require('app');\n\n}).call(this);\n\n})();\n//@ sourceURL=travis");minispade.register('templates', "(function() {\nEmber.TEMPLATES['application'] = Ember.Handlebars.compile(\"{{outlet}}\\n\");\n\nEmber.TEMPLATES['auth/signin'] = Ember.Handlebars.compile(\"{{#if view.signingIn}}\\n
Signing in ... \\n
\\n Trying to authenticate with GitHub.\\n
\\n{{else}}\\n
Sign in \\n
\\n Please sign in with GitHub. \\n
\\n{{/if}}\\n\\n\\n\");\n\nEmber.TEMPLATES['builds/list'] = Ember.Handlebars.compile(\"{{#if builds.isLoaded}}\\n
\\n \\n \\n {{t builds.name}} \\n {{t builds.commit}} \\n {{t builds.message}} \\n {{t builds.duration}} \\n {{t builds.finished_at}} \\n \\n \\n\\n \\n {{#each build in builds}}\\n {{#view Travis.BuildsItemView contextBinding=\\\"build\\\"}}\\n \\n \\n {{#if id}}\\n \\n {{number}}\\n \\n {{/if}}\\n \\n \\n \\n {{formatCommit commit}}\\n \\n \\n \\n {{{formatMessage commit.message short=\\\"true\\\"}}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n
\\n {{view view.ShowMoreButton}}\\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if loading}}\\n
Loading \\n {{else}}\\n
\\n \\n
{{t builds.name}} \\n
\\n \\n {{#if build.id}}\\n {{build.number}} \\n {{/if}}\\n \\n
{{t builds.finished_at}} \\n
{{formatTime build.finishedAt}} \\n
{{t builds.duration}} \\n
{{formatDuration build.duration}} \\n
\\n\\n \\n\\n {{t builds.message}} \\n {{{formatMessage build.commit.message}}} \\n\\n {{#unless isMatrix}}\\n {{t builds.config}} \\n {{formatConfig build.config}} \\n {{/unless}}\\n \\n\\n {{#if build.isMatrix}}\\n {{view Travis.JobsView jobsBinding=\\\"build.requiredJobs\\\" required=\\\"true\\\"}}\\n {{view Travis.JobsView jobsBinding=\\\"build.allowedFailureJobs\\\"}}\\n {{else}}\\n {{view Travis.LogView contextBinding=\\\"build.jobs.firstObject\\\"}}\\n {{/if}}\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['events/list'] = Ember.Handlebars.compile(\"{{#if view.events.isLoaded}}\\n
\\n \\n \\n Time \\n Event \\n Result \\n Message \\n \\n \\n\\n \\n {{#each event in view.events}}\\n {{#view Travis.EventsItemView contextBinding=\\\"event\\\"}}\\n \\n {{formatTime createdAt}}\\n \\n \\n {{event.event_}}\\n \\n \\n {{event.result}}\\n \\n \\n {{event.message}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\\n\");\n\nEmber.TEMPLATES['jobs/list'] = Ember.Handlebars.compile(\"{{#if view.jobs.length}}\\n {{#if view.required}}\\n
\\n \\n {{t jobs.build_matrix}}\\n \\n {{else}}\\n \\n \\n {{t jobs.allowed_failures}}\\n \\n \\n {{/if}}\\n \\n \\n {{#each key in view.build.configKeys}}\\n {{key}} \\n {{/each}}\\n \\n \\n \\n {{#each job in view.jobs}}\\n {{#view Travis.JobsItemView contextBinding=\\\"job\\\"}}\\n \\n \\n {{#if job.id}}\\n {{number}} \\n {{/if}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{#each value in configValues}}\\n {{value}} \\n {{/each}}\\n {{/view}}\\n {{/each}}\\n \\n
\\n\\n {{#unless view.required}}\\n \\n {{/unless}}\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/log'] = Ember.Handlebars.compile(\"{{view.logSubscriber}}\\n\\n{{#if log.isLoaded}}\\n \\n \\n Follow logs \\n {{{formatLog log.body repo=\\\"repository\\\" item=\\\"parentView.currentItem\\\"}}} \\n\\n {{#if sponsor.name}}\\n \\n {{/if}}\\n\\n To top \\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if job.isComplete}}\\n \\n
\\n \\n
Job \\n
\\n \\n {{#if job.id}}\\n {{job.number}} \\n {{/if}}\\n \\n
{{t jobs.finished_at}} \\n
{{formatTime job.finishedAt}} \\n
{{t jobs.duration}} \\n
{{formatDuration job.duration}} \\n
\\n\\n \\n\\n {{t jobs.message}} \\n {{formatMessage commit.message}} \\n {{t jobs.config}} \\n {{formatConfig job.config}} \\n \\n\\n {{view Travis.LogView contextBinding=\\\"job\\\"}}}\\n
\\n {{else}}\\n \\n Loading \\n
\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['layouts/flash'] = Ember.Handlebars.compile(\"{{#each flash in controller}}\\n {{#view Travis.FlashItemView flashBinding=\\\"flash\\\"}}\\n {{view.message}}
\\n \\n {{/view}}\\n{{/each}}\\n\");\n\nEmber.TEMPLATES['layouts/home'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n {{outlet right}}\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/profile'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n
\\n\\n
\\n\\n
\\n
Getting started? \\n
\\n Please read our guide .\\n It will only take a few minutes :)\\n
\\n
\\n You can find detailled docs on our about site.\\n
\\n
\\n If you need help please don't hesitate to join\\n #travis on irc.freenode.net\\n or our mailinglist .\\n
\\n
\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/sidebar'] = Ember.Handlebars.compile(\"\\n\\n\\n\\n{{view view.DecksView}}\\n{{view view.WorkersView}}\\n{{view view.QueuesView}}\\n{{view view.LinksView}}\\n\\n\\n
{{t layouts.about.join}} \\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/simple'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n
\\n\\n\");\n\nEmber.TEMPLATES['layouts/top'] = Ember.Handlebars.compile(\"\\n Travis \\n \\n\\n\\n\");\n\nEmber.TEMPLATES['profile/accounts'] = Ember.Handlebars.compile(\"\\n
\\n\\n\\n\\n\\n {{#collection Travis.AccountsListView contentBinding=\\\"controller\\\"}}\\n
{{view.name}} \\n
\\n Repositories: \\n {{view.account.reposCount}} \\n
\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['profile/show'] = Ember.Handlebars.compile(\"{{view.name}} \\n\\n{{view Travis.ProfileTabsView}}\\n\\n\\n {{outlet pane}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n {{#if view.displayUser}}\\n \\n \\n \\n {{/if}}\\n \\n\");\n\nEmber.TEMPLATES['profile/tabs/hooks'] = Ember.Handlebars.compile(\"\\n {{{t profiles.show.message.your_repos}}}\\n
\\n\\n{{#if hooks.isLoaded}}\\n {{#if user.isSyncing}}\\n \\n Please wait while we sync from GitHub \\n
\\n {{else}}\\n \\n Last synchronized from GitHub: {{formatTime user.syncedAt}}\\n \\n Sync now\\n \\n
\\n\\n \\n {{#each hook in hooks}}\\n \\n {{hook.slug}} \\n {{hook.description}}
\\n\\n \\n \\n {{else}}\\n \\n You do not seem to have any repositories that we could sync.\\n \\n {{/each}}\\n \\n {{/if}}\\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs/user'] = Ember.Handlebars.compile(\" \\n\\n\\n \\n {{t profiles.show.github}}:\\n \\n \\n {{user.login}} \\n \\n \\n {{t profiles.show.email}}:\\n \\n \\n {{user.email}}\\n \\n \\n {{t profiles.show.token}}:\\n \\n \\n {{user.token}}\\n \\n \\n\\n\\n\\n\\n\");\n\nEmber.TEMPLATES['queues/list'] = Ember.Handlebars.compile(\"\\n{{#each queue in controller}}\\n \\n {{t queue}}: {{queue.name}} \\n \\n \\n{{/each}}\\n \\n\");\n\nEmber.TEMPLATES['repos/list'] = Ember.Handlebars.compile(\"\\n {{view Ember.TextField valueBinding=\\\"controller.search\\\"}}\\n
\\n\\n{{view Travis.ReposListTabsView}}\\n\\n \\n\\n\\n {{#collection Travis.ReposListView contentBinding=\\\"controller\\\"}}\\n {{#with view.repo}}\\n
\\n
\\n {{#if slug}}\\n
{{slug}} \\n {{/if}}\\n
\\n {{#if lastBuildId}}\\n
{{lastBuildNumber}} \\n {{/if}}\\n\\n
\\n {{t repositories.duration}}: \\n {{formatDuration lastBuildDuration}} ,\\n {{t repositories.finished_at}}: \\n {{formatTime lastBuildFinishedAt}} \\n
\\n\\n
\\n\\n {{#if description}}\\n
\\n {{/if}}\\n {{/with}}\\n {{else}}\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['repos/list/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\\n\");\n\nEmber.TEMPLATES['repos/show'] = Ember.Handlebars.compile(\"\\n {{#if view.isEmpty}}\\n {{view Travis.ReposEmptyView}}\\n {{else}}\\n {{#if view.repo.isComplete}}\\n {{#with view.repo}}\\n
\\n\\n
{{description}}
\\n\\n
\\n\\n {{view Travis.RepoShowTabsView}}\\n {{view Travis.RepoShowToolsView}}\\n {{/with}}\\n\\n {{else}}\\n
Loading \\n {{/if}}\\n\\n
\\n {{outlet pane}}\\n
\\n {{/if}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['repos/show/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n {{#if view.repo.slug}}\\n \\n Events\\n \\n {{/if}}\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\");\n\nEmber.TEMPLATES['repos/show/tools'] = Ember.Handlebars.compile(\"\\n\\n\\n\");\n\nEmber.TEMPLATES['sponsors/decks'] = Ember.Handlebars.compile(\"{{t layouts.application.sponsers}} \\n\\n\\n\\n\\n \\n {{{t layouts.application.sponsors_link}}}\\n \\n
\\n\");\n\nEmber.TEMPLATES['sponsors/links'] = Ember.Handlebars.compile(\"\\n\\n\");\n\nEmber.TEMPLATES['stats/show'] = Ember.Handlebars.compile(\"Sorry \\nStatistics are disabled for now.
\\n We're looking into a solution. If you want to help, please ping us!
\\n\");\n\nEmber.TEMPLATES['workers/list'] = Ember.Handlebars.compile(\"{{#view Travis.WorkersView}}\\n \\n {{t workers}}\\n \\n \\n \\n {{#each group in controller.groups}}\\n {{#view Travis.WorkersListView}}\\n \\n \\n {{group.firstObject.host}}\\n \\n \\n {{#each worker in group}}\\n {{#view Travis.WorkersItemView workerBinding=\\\"worker\\\"}}\\n \\n
\\n {{#if worker.isWorking}}\\n {{#if worker.job_id}}\\n \\n {{view.display}}\\n \\n {{/if}}\\n {{else}}\\n {{view.display}}\\n {{/if}}\\n \\n {{/view}}\\n {{/each}}\\n \\n \\n {{/view}}\\n {{else}}\\n No workers\\n {{/each}}\\n \\n{{/view}}\\n\");\n\n})();\n//@ sourceURL=templates");minispade.register('config/locales', "(function() {window.I18n = window.I18n || {}\nwindow.I18n.translations = {\"ca\":{\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"pt-BR\":\"português brasileiro\",\"ru\":\"Русский\"}},\"en\":{\"errors\":{\"messages\":{\"not_found\":\"not found\",\"already_confirmed\":\"was already confirmed\",\"not_locked\":\"was not locked\"}},\"devise\":{\"failure\":{\"unauthenticated\":\"You need to sign in or sign up before continuing.\",\"unconfirmed\":\"You have to confirm your account before continuing.\",\"locked\":\"Your account is locked.\",\"invalid\":\"Invalid email or password.\",\"invalid_token\":\"Invalid authentication token.\",\"timeout\":\"Your session expired, please sign in again to continue.\",\"inactive\":\"Your account was not activated yet.\"},\"sessions\":{\"signed_in\":\"Signed in successfully.\",\"signed_out\":\"Signed out successfully.\"},\"passwords\":{\"send_instructions\":\"You will receive an email with instructions about how to reset your password in a few minutes.\",\"updated\":\"Your password was changed successfully. You are now signed in.\"},\"confirmations\":{\"send_instructions\":\"You will receive an email with instructions about how to confirm your account in a few minutes.\",\"confirmed\":\"Your account was successfully confirmed. You are now signed in.\"},\"registrations\":{\"signed_up\":\"You have signed up successfully. If enabled, a confirmation was sent to your e-mail.\",\"updated\":\"You updated your account successfully.\",\"destroyed\":\"Bye! Your account was successfully cancelled. We hope to see you again soon.\"},\"unlocks\":{\"send_instructions\":\"You will receive an email with instructions about how to unlock your account in a few minutes.\",\"unlocked\":\"Your account was successfully unlocked. You are now signed in.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Confirmation instructions\"},\"reset_password_instructions\":{\"subject\":\"Reset password instructions\"},\"unlock_instructions\":{\"subject\":\"Unlock Instructions\"}}},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hour\",\"other\":\"%{count} hours\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} second\",\"other\":\"%{count} seconds\"}}},\"workers\":\"Workers\",\"queue\":\"Queue\",\"no_job\":\"There are no jobs\",\"repositories\":{\"branch\":\"Branch\",\"image_url\":\"Image URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"tabs\":{\"current\":\"Current\",\"build_history\":\"Build History\",\"branches\":\"Branch Summary\",\"pull_requests\":\"Pull Requests\",\"build\":\"Build\",\"job\":\"Job\"}},\"build\":{\"job\":\"Job\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"show_more\":\"Show more\"},\"layouts\":{\"top\":{\"home\":\"Home\",\"blog\":\"Blog\",\"docs\":\"Docs\",\"stats\":\"Stats\",\"github_login\":\"Sign in with Github\",\"profile\":\"Profile\",\"sign_out\":\"Sign Out\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Recent\",\"search\":\"Search\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"See all of our amazing sponsors →\",\"my_repositories\":\"My Repositories\"},\"about\":{\"alpha\":\"This stuff is alpha.\",\"messages\":{\"alpha\":\"Please do not consider this a stable service. We're still far from that! More info here. \"},\"join\":\"Join us and help!\",\"mailing_list\":\"Mailing List\",\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Author\",\"build\":\"Build\",\"build_matrix\":\"Build Matrix\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Compare\",\"config\":\"Config\",\"duration\":\"Duration\",\"finished_at\":\"Finished at\",\"job\":\"Job\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Flick the switches below to turn on the Travis service hook for your projects, then push to GitHub.\",\"config\":\"how to configure custom build options\"},\"messages\":{\"notice\":\"To get started, please read our Getting Started guide .\\n It will only take a couple of minutes. \"},\"token\":\"Token\",\"your_repos\":\"Your Repositories\",\"update\":\"Update\",\"update_locale\":\"Update\",\"your_locale\":\"Your Locale\"}},\"statistics\":{\"index\":{\"count\":\"Count\",\"repo_growth\":\"Repository Growth\",\"total_projects\":\"Total Projects/Repositories\",\"build_count\":\"Build Count\",\"last_month\":\"last month\",\"total_builds\":\"Total Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"es\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"workers\":\"Procesos\",\"queue\":\"Cola\",\"no_job\":\"No hay trabajos\",\"repositories\":{\"branch\":\"Rama\",\"image_url\":\"Imagen URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"tabs\":{\"current\":\"Actual\",\"build_history\":\"Histórico\",\"branches\":\"Ramas\",\"build\":\"Builds\",\"job\":\"Trabajo\"}},\"build\":{\"job\":\"Trabajo\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"sponsored_by\":\"Patrocinado por\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"layouts\":{\"top\":{\"home\":\"Inicio\",\"blog\":\"Blog\",\"docs\":\"Documentación\",\"stats\":\"Estadísticas\",\"github_login\":\"Iniciar sesión con Github\",\"profile\":\"Perfil\",\"sign_out\":\"Desconectar\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Hazme un Fork en Github\",\"recent\":\"Reciente\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Ver todos nuestros patrocinadores →\",\"my_repositories\":\"Mis Repositorios\"},\"about\":{\"alpha\":\"Esto es alpha.\",\"messages\":{\"alpha\":\"Por favor no considereis esto un servicio estable. Estamos estamos aún lejos de ello! Más información aquí. \"},\"join\":\"Únetenos y ayudanos!\",\"mailing_list\":\"Lista de Correos\",\"repository\":\"Repositorio\",\"twitter\":\"Twitter\"}},\"profiles\":{\"show\":{\"email\":\"Correo electrónico\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Activa los interruptores para inicial el Travis service hook para tus proyectos, y haz un Push en GitHub. \\n Para probar varias versiones de ruby, mira\",\"config\":\"como configurar tus propias opciones para el Build\"},\"messages\":{\"notice\":\"Para comenzar, por favor lee nuestra Guía de Inicio .\\n Solo tomará unos pocos minutos. \"},\"token\":\"Token\",\"your_repos\":\"Tus repositorios\",\"update\":\"Actualizar\",\"update_locale\":\"Actualizar\",\"your_locale\":\"Tu Idioma\"}},\"statistics\":{\"index\":{\"count\":\"Número\",\"repo_growth\":\"Crecimiento de Repositorios\",\"total_projects\":\"Total de Proyectos/Repositorios\",\"build_count\":\"Número de Builds\",\"last_month\":\"mes anterior\",\"total_builds\":\"Total de Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"fr\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} heure\",\"other\":\"%{count} heures\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} secondes\"}}},\"workers\":\"Processus\",\"queue\":\"File\",\"no_job\":\"Pas de tâches\",\"repositories\":{\"branch\":\"Branche\",\"image_url\":\"Image\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"tabs\":{\"current\":\"Actuel\",\"build_history\":\"Historique des tâches\",\"branches\":\"Résumé des branches\",\"build\":\"Construction\",\"job\":\"Tâche\"}},\"build\":{\"job\":\"Tâche\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"builds\":{\"name\":\"Version\",\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"layouts\":{\"top\":{\"home\":\"Accueil\",\"blog\":\"Blog\",\"docs\":\"Documentation\",\"stats\":\"Statistiques\",\"github_login\":\"Connection Github\",\"profile\":\"Profil\",\"sign_out\":\"Déconnection\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Faites un Fork sur Github\",\"recent\":\"Récent\",\"search\":\"Chercher\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Voir tous nos extraordinaire sponsors →\",\"my_repositories\":\"Mes dépôts\"},\"about\":{\"alpha\":\"Ceci est en alpha.\",\"messages\":{\"alpha\":\"S'il vous plaît ne considérez pas ce service comme étant stable. Nous sommes loin de ça! Plus d'infos ici. \"},\"join\":\"Joignez-vous à nous et aidez-nous!\",\"mailing_list\":\"Liste de distribution\",\"repository\":\"Dépôt\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Version\",\"build_matrix\":\"Matrice des versions\",\"commit\":\"Commit\",\"committer\":\"Committeur\",\"compare\":\"Comparer\",\"config\":\"Config\",\"duration\":\"Durée\",\"finished_at\":\"Terminé à\",\"job\":\"Tâche\",\"log\":\"Journal\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"message\":{\"your_repos\":\"Utilisez les boutons ci-dessous pour activer Travis sur vos projets puis déployez sur GitHub. \\nPour tester sur plus de versions de ruby, voir\",\"config\":\"comment configurer des options de version personnalisées\"},\"messages\":{\"notice\":\"Pour commencer, veuillez lire notre guide de démarrage .\\n Cela ne vous prendra que quelques minutes. \"},\"token\":\"Jeton\",\"your_repos\":\"Vos dépôts\",\"email\":\"Courriel\",\"update\":\"Modifier\",\"update_locale\":\"Modifier\",\"your_locale\":\"Votre langue\"}},\"statistics\":{\"index\":{\"count\":\"Décompte\",\"repo_growth\":\"Croissance de dépôt\",\"total_projects\":\"Total des projets/dépôts\",\"build_count\":\"Décompte des versions\",\"last_month\":\"mois dernier\",\"total_builds\":\"Total des versions\"}},\"admin\":{\"actions\":{\"create\":\"créer\",\"created\":\"créé\",\"delete\":\"supprimer\",\"deleted\":\"supprimé\",\"update\":\"mise à jour\",\"updated\":\"mis à jour\"},\"credentials\":{\"log_out\":\"Déconnection\"},\"delete\":{\"confirmation\":\"Oui, je suis sure\",\"flash_confirmation\":\"%{name} a été détruit avec succès\"},\"flash\":{\"error\":\"%{name} n'a pas pu être %{action}\",\"noaction\":\"Aucune action n'a été entreprise\",\"successful\":\"%{name} a réussi à %{action}\"},\"history\":{\"name\":\"Historique\",\"no_activity\":\"Aucune activité\",\"page_name\":\"Historique pour %{name}\"},\"list\":{\"add_new\":\"Ajouter un nouveau\",\"delete_action\":\"Supprimer\",\"delete_selected\":\"Supprimer la sélection\",\"edit_action\":\"Modifier\",\"search\":\"Rechercher\",\"select\":\"Sélectionner le %{name} à modifier\",\"select_action\":\"Sélectionner\",\"show_all\":\"Montrer tout\"},\"new\":{\"basic_info\":\"Information de base\",\"cancel\":\"Annuler\",\"chosen\":\"%{name} choisi\",\"chose_all\":\"Choisir tout\",\"clear_all\":\"Déselectionner tout\",\"many_chars\":\"caractères ou moins\",\"one_char\":\"caractère.\",\"optional\":\"Optionnel\",\"required\":\"Requis\",\"save\":\"Sauvegarder\",\"save_and_add_another\":\"Sauvegarder et en ajouter un autre\",\"save_and_edit\":\"Sauvegarder et modifier\",\"select_choice\":\"Faites vos choix et cliquez\"},\"dashboard\":{\"add_new\":\"Ajouter un nouveau\",\"last_used\":\"Dernière utilisation\",\"model_name\":\"Nom du modèle\",\"modify\":\"Modification\",\"name\":\"Tableau de bord\",\"pagename\":\"Administration du site\",\"records\":\"Enregistrements\",\"show\":\"Voir\",\"ago\":\"plus tôt\"}},\"home\":{\"name\":\"accueil\"},\"repository\":{\"duration\":\"Durée\"},\"devise\":{\"confirmations\":{\"confirmed\":\"Votre compte a été crée avec succès. Vous être maintenant connecté.\",\"send_instructions\":\"Vous allez recevoir un courriel avec les instructions de confirmation de votre compte dans quelques minutes.\"},\"failure\":{\"inactive\":\"Votre compte n'a pas encore été activé.\",\"invalid\":\"Adresse courriel ou mot de passe invalide.\",\"invalid_token\":\"Jeton d'authentification invalide.\",\"locked\":\"Votre compte est bloqué.\",\"timeout\":\"Votre session est expirée, veuillez vous reconnecter pour continuer.\",\"unauthenticated\":\"Vous devez vous connecter ou vous enregistrer afin de continuer\",\"unconfirmed\":\"Vous devez confirmer votre compte avant de continuer.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instructions de confirmations\"},\"reset_password_instructions\":{\"subject\":\"Instruction de remise à zéro du mot de passe\"},\"unlock_instructions\":{\"subject\":\"Instruction de débloquage\"}},\"passwords\":{\"send_instructions\":\"Vous recevrez un courriel avec les instructions de remise à zéro du mot de passe dans quelques minutes.\",\"updated\":\"Votre mot de passe a été changé avec succès. Vous êtes maintenant connecté.\"},\"registrations\":{\"destroyed\":\"Au revoir! Votre compte a été annulé avec succès. Nous espérons vous revoir bientôt.\",\"signed_up\":\"Vous êtes enregistré avec succès. Si activé, une confirmation vous a été envoyé par courriel.\",\"updated\":\"Votre compte a été mis a jour avec succès\"},\"sessions\":{\"signed_in\":\"Connecté avec succès\",\"signed_out\":\"Déconnecté avec succès\"},\"unlocks\":{\"send_instructions\":\"Vous recevrez un courriel contenant les instructions pour débloquer votre compte dans quelques minutes.\",\"unlocked\":\"Votre compte a été débloqué avec succès.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"étais déja confirmé\",\"not_found\":\"n'a pas été trouvé\",\"not_locked\":\"n'étais pas bloqué\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"ja\":{\"workers\":\"ワーカー\",\"queue\":\"キュー\",\"no_job\":\"ジョブはありません\",\"repositories\":{\"branch\":\"ブランチ\",\"image_url\":\"画像URL\",\"markdown\":\".md\",\"textile\":\".textile\",\"rdoc\":\".rdoc\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"tabs\":{\"current\":\"最新\",\"build_history\":\"ビルド履歴\",\"branches\":\"ブランチまとめ\",\"build\":\"ビルド\",\"job\":\"ジョブ\"}},\"build\":{\"job\":\"ジョブ\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"ビルドマトリクス\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"builds\":{\"name\":\"ビルド\",\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"失敗許容範囲外\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"layouts\":{\"about\":{\"alpha\":\"まだアルファですよ!\",\"join\":\"参加してみよう!\",\"mailing_list\":\"メールリスト\",\"messages\":{\"alpha\":\"Travis-ciは安定したサービスまで後一歩!詳しくはこちら \"},\"repository\":\"リポジトリ\",\"twitter\":\"ツイッター\"},\"application\":{\"fork_me\":\"Githubでフォークしよう\",\"my_repositories\":\"マイリポジトリ\",\"recent\":\"最近\",\"search\":\"検索\",\"sponsers\":\"スポンサー\",\"sponsors_link\":\"スポンサーをもっと見る →\"},\"top\":{\"blog\":\"ブログ\",\"docs\":\"Travisとは?\",\"github_login\":\"Githubでログイン\",\"home\":\"ホーム\",\"profile\":\"プロフィール\",\"sign_out\":\"ログアウト\",\"stats\":\"統計\",\"admin\":\"管理\"},\"mobile\":{\"author\":\"制作者\",\"build\":\"ビルド\",\"build_matrix\":\"ビルドマトリクス\",\"commit\":\"コミット\",\"committer\":\"コミット者\",\"compare\":\"比較\",\"config\":\"設定\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"job\":\"ジョブ\",\"log\":\"ログ\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"email\":\"メール\",\"message\":{\"config\":\"詳細設定\",\"your_repos\":\"以下のスイッチを設定し、Travis-ciを有効にします。Githubへプッシュしたらビルドは自動的に開始します。複数バーションや細かい設定はこちらへ:\"},\"messages\":{\"notice\":\"まずはTravisのはじめ方 を参照してください。\"},\"token\":\"トークン\",\"your_repos\":\"リポジトリ\",\"update\":\"更新\",\"update_locale\":\"更新\",\"your_locale\":\"言語設定\"}},\"statistics\":{\"index\":{\"build_count\":\"ビルド数\",\"count\":\"数\",\"last_month\":\"先月\",\"repo_growth\":\"リポジトリ\",\"total_builds\":\"合計ビルド数\",\"total_projects\":\"合計リポジトリ\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nb\":{\"admin\":{\"actions\":{\"create\":\"opprett\",\"created\":\"opprettet\",\"delete\":\"slett\",\"deleted\":\"slettet\",\"update\":\"oppdater\",\"updated\":\"oppdatert\"},\"credentials\":{\"log_out\":\"Logg ut\"},\"dashboard\":{\"add_new\":\"Legg til ny\",\"ago\":\"siden\",\"last_used\":\"Sist brukt\",\"model_name\":\"Modell\",\"modify\":\"Rediger\",\"name\":\"Dashbord\",\"pagename\":\"Nettstedsadministrasjon\",\"records\":\"Oppføringer\",\"show\":\"Vis\"},\"delete\":{\"confirmation\":\"Ja, jeg er sikker\",\"flash_confirmation\":\"%{name} ble slettet\"},\"flash\":{\"error\":\"%{name} kunne ikke bli %{action}\",\"noaction\":\"Ingen handlinger ble utført\",\"successful\":\"%{name} ble %{action}\"},\"history\":{\"name\":\"Logg\",\"no_activity\":\"Ingen aktivitet\",\"page_name\":\"Logg for %{name}\"},\"list\":{\"add_new\":\"Legg til ny\",\"delete_action\":\"Slett\",\"delete_selected\":\"Slett valgte\",\"edit_action\":\"Rediger\",\"search\":\"Søk\",\"select\":\"Velg %{name} for å redigere\",\"select_action\":\"Velg\",\"show_all\":\"Vis alle \"},\"new\":{\"basic_info\":\"Basisinformasjon\",\"cancel\":\"Avbryt\",\"chosen\":\"Valgt %{name}\",\"chose_all\":\"Velg alle\",\"clear_all\":\"Fjern alle\",\"many_chars\":\"eller færre tegn.\",\"one_char\":\"tegn.\",\"optional\":\"Valgfri\",\"required\":\"Påkrevd\",\"save\":\"Lagre\",\"save_and_add_another\":\"Lagre og legg til ny\",\"save_and_edit\":\"Lagre og rediger\",\"select_choice\":\"Kryss av for dine valg og klikk\"}},\"build\":{\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\"},\"builds\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testen ble kjørt på en maskin sponset av\"},\"name\":\"Jobb\",\"started_at\":\"Startet\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} time\",\"other\":\"%{count} timer\"},\"minutes_exact\":{\"one\":\"%{count} minutt\",\"other\":\"%{count} minutter\"},\"seconds_exact\":{\"one\":\"%{count} sekund\",\"other\":\"%{count} sekunder\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Din konto er aktivert og du er nå innlogget.\",\"send_instructions\":\"Om noen få minutter så vil du få en e-post med informasjon om hvordan du bekrefter kontoen din.\"},\"failure\":{\"inactive\":\"Kontoen din har ikke blitt aktivert enda.\",\"invalid\":\"Ugyldig e-post eller passord.\",\"invalid_token\":\"Ugyldig autentiseringskode.\",\"locked\":\"Kontoen din er låst.\",\"timeout\":\"Du ble logget ut siden på grunn av mangel på aktivitet, vennligst logg inn på nytt.\",\"unauthenticated\":\"Du må logge inn eller registrere deg for å fortsette.\",\"unconfirmed\":\"Du må bekrefte kontoen din før du kan fortsette.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bekreftelsesinformasjon\"},\"reset_password_instructions\":{\"subject\":\"Instruksjoner for å få nytt passord\"},\"unlock_instructions\":{\"subject\":\"Opplåsningsinstruksjoner\"}},\"passwords\":{\"send_instructions\":\"Om noen få minutter så vil du få en epost med informasjon om hvordan du kan få et nytt passord.\",\"updated\":\"Passordet ditt ble endret, og du er logget inn.\"},\"registrations\":{\"destroyed\":\"Adjø! Kontoen din ble kansellert. Vi håper vi ser deg igjen snart.\",\"signed_up\":\"Du er nå registrert.\",\"updated\":\"Kontoen din ble oppdatert.\"},\"sessions\":{\"signed_in\":\"Du er nå logget inn.\",\"signed_out\":\"Du er nå logget ut.\"},\"unlocks\":{\"send_instructions\":\"Om noen få minutter så kommer du til å få en e-post med informasjon om hvordan du kan låse opp kontoen din.\",\"unlocked\":\"Kontoen din ble låst opp, og du er nå logget inn igjen.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"har allerede blitt bekreftet\",\"not_found\":\"ikke funnnet\",\"not_locked\":\"var ikke låst\"}},\"home\":{\"name\":\"hjem\"},\"jobs\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testserien ble kjørt på en maskin sponset av\"},\"started_at\":\"Startet\"},\"layouts\":{\"about\":{\"alpha\":\"Dette er alfa-greier.\",\"join\":\"Bli med og hjelp oss!\",\"mailing_list\":\"E-postliste\",\"messages\":{\"alpha\":\"Dette er ikke en stabil tjeneste. Vi har fremdeles et stykke igjen! Mer informasjon finner du her .\"},\"repository\":\"Kodelager\",\"twitter\":\"Twitter.\"},\"application\":{\"fork_me\":\"Se koden på Github\",\"my_repositories\":\"Mine kodelagre\",\"recent\":\"Nylig\",\"search\":\"Søk\",\"sponsers\":\"Sponsorer\",\"sponsors_link\":\"Se alle de flotte sponsorene våre →\"},\"mobile\":{\"author\":\"Forfatter\",\"build\":\"Jobb\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\",\"log\":\"Logg\"},\"top\":{\"admin\":\"Administrator\",\"blog\":\"Blogg\",\"docs\":\"Dokumentasjon\",\"github_login\":\"Logg inn med Github\",\"home\":\"Hjem\",\"profile\":\"Profil\",\"sign_out\":\"Logg ut\",\"stats\":\"Statistikk\"}},\"no_job\":\"Ingen jobber finnnes\",\"profiles\":{\"show\":{\"email\":\"E-post\",\"github\":\"Github\",\"message\":{\"config\":\"hvordan sette opp egne jobbinnstillinger\",\"your_repos\":\"Slå\\u0010 på Travis for prosjektene dine ved å dra i bryterne under, og send koden til Github. \\nFor å teste mot flere ruby-versjoner, se dokumentasjonen for\"},\"messages\":{\"notice\":\"For å komme i gang, vennligst les kom-i-gang-veivisereren vår. Det tar bare et par minutter. \"},\"token\":\"Kode\",\"update\":\"Oppdater\",\"update_locale\":\"Oppdater\",\"your_locale\":\"Ditt språk\",\"your_repos\":\"Dine kodelagre\"}},\"queue\":\"Kø\",\"repositories\":{\"branch\":\"Gren\",\"commit\":\"Innsender\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"image_url\":\"Bilde-URL\",\"markdown\":\"Markdown\",\"message\":\"Beskrivelse\",\"rdoc\":\"RDOC\",\"started_at\":\"Startet\",\"tabs\":{\"branches\":\"Grensammendrag\",\"build\":\"Jobb\",\"build_history\":\"Jobblogg\",\"current\":\"Siste\",\"job\":\"Jobb\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Varighet\"},\"statistics\":{\"index\":{\"build_count\":\"Antall jobber\",\"count\":\"Antall\",\"last_month\":\"siste måned\",\"repo_growth\":\"Vekst i kodelager\",\"total_builds\":\"Totale jobber\",\"total_projects\":\"Antall prosjekter/kodelagre\"}},\"workers\":\"Arbeidere\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nl\":{\"admin\":{\"actions\":{\"create\":\"aanmaken\",\"created\":\"aangemaakt\",\"delete\":\"verwijderen\",\"deleted\":\"verwijderd\",\"update\":\"bijwerken\",\"updated\":\"bijgewerkt\"},\"credentials\":{\"log_out\":\"Afmelden\"},\"dashboard\":{\"add_new\":\"Nieuwe toevoegen\",\"ago\":\"geleden\",\"last_used\":\"Laatst gebruikt\",\"model_name\":\"Model naam\",\"modify\":\"Wijzigen\",\"pagename\":\"Site administratie\",\"show\":\"Laten zien\",\"records\":\"Gegevens\"},\"delete\":{\"confirmation\":\"Ja, ik ben zeker\",\"flash_confirmation\":\"%{name} is vernietigd\"},\"flash\":{\"error\":\"%{name} kon niet worden %{action}\",\"noaction\":\"Er zijn geen acties genomen\",\"successful\":\"%{name} is %{action}\"},\"history\":{\"name\":\"Geschiedenis\",\"no_activity\":\"Geen activiteit\",\"page_name\":\"Geschiedenis van %{name}\"},\"list\":{\"add_new\":\"Nieuwe toevoegen\",\"delete_action\":\"Verwijderen\",\"delete_selected\":\"Verwijder geselecteerden\",\"edit_action\":\"Bewerken\",\"search\":\"Zoeken\",\"select\":\"Selecteer %{name} om te bewerken\",\"select_action\":\"Selecteer\",\"show_all\":\"Laat allen zien\"},\"new\":{\"basic_info\":\"Basisinfo\",\"cancel\":\"Annuleren\",\"chosen\":\"%{name} gekozen\",\"chose_all\":\"Kies allen\",\"clear_all\":\"Deselecteer allen\",\"many_chars\":\"tekens of minder.\",\"one_char\":\"teken.\",\"optional\":\"Optioneel\",\"required\":\"Vereist\",\"save\":\"Opslaan\",\"save_and_add_another\":\"Opslaan en een nieuwe toevoegen\",\"save_and_edit\":\"Opslaan en bewerken\",\"select_choice\":\"Selecteer uw keuzes en klik\"}},\"build\":{\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"job\":\"Taak\"},\"builds\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw Matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze tests zijn gedraaid op een machine gesponsord door\"},\"name\":\"Bouw\",\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} uur\",\"other\":\"%{count} uren\"},\"minutes_exact\":{\"one\":\"%{count} minuut\",\"other\":\"%{count} minuten\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} seconden\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Uw account is bevestigd. U wordt nu ingelogd.\",\"send_instructions\":\"Binnen enkele minuten zal u een email ontvangen met instructies om uw account te bevestigen.\"},\"failure\":{\"inactive\":\"Uw account is nog niet geactiveerd.\",\"invalid\":\"Ongeldig email adres of wachtwoord.\",\"invalid_token\":\"Ongeldig authenticatie token.\",\"locked\":\"Uw account is vergrendeld.\",\"timeout\":\"Uw sessie is verlopen, gelieve opnieuw in te loggen om verder te gaan.\",\"unauthenticated\":\"U moet inloggen of u registeren voordat u verder gaat.\",\"unconfirmed\":\"U moet uw account bevestigen voordat u verder gaat.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bevestigings-instructies\"},\"reset_password_instructions\":{\"subject\":\"Wachtwoord herstel instructies\"},\"unlock_instructions\":{\"subject\":\"Ontgrendel-instructies\"}},\"passwords\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw wachtwoord opnieuw in te stellen.\",\"updated\":\"Uw wachtwoord is veranderd. U wordt nu ingelogd.\"},\"registrations\":{\"destroyed\":\"Dag! Uw account is geannuleerd. We hopen u vlug terug te zien.\",\"signed_up\":\"Uw registratie is voltooid. Als het ingeschakeld is wordt een bevestiging naar uw email adres verzonden.\",\"updated\":\"Het bijwerken van uw account is gelukt.\"},\"sessions\":{\"signed_in\":\"Inloggen gelukt.\",\"signed_out\":\"Uitloggen gelukt.\"},\"unlocks\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw account te ontgrendelen.\",\"unlocked\":\"Uw account is ontgrendeld. U wordt nu ingelogd.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"was al bevestigd\",\"not_found\":\"niet gevonden\",\"not_locked\":\"was niet vergrendeld\"}},\"jobs\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze testen zijn uitgevoerd op een machine gesponsord door\"},\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"layouts\":{\"about\":{\"alpha\":\"Dit is in alfa-stadium.\",\"join\":\"Doe met ons mee en help!\",\"mailing_list\":\"Mailing lijst\",\"messages\":{\"alpha\":\"Gelieve deze service niet te beschouwen als stabiel. Daar zijn we nog lang niet! Meer info hier. \"},\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Maak een fork op Github\",\"my_repositories\":\"Mijn repositories\",\"recent\":\"Recent\",\"search\":\"Zoeken\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Bekijk al onze geweldige sponsors →\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Bouw\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid op\",\"job\":\"Taak\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"log\":\"Logboek\"},\"top\":{\"admin\":\"Administratie\",\"blog\":\"Blog\",\"docs\":\"Documentatie\",\"github_login\":\"Inloggen met Github\",\"home\":\"Home\",\"profile\":\"Profiel\",\"sign_out\":\"Uitloggen\",\"stats\":\"Statistieken\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Er zijn geen taken\",\"profiles\":{\"show\":{\"email\":\"Email adres\",\"github\":\"Github\",\"message\":{\"config\":\"hoe eigen bouw-opties in te stellen\",\"your_repos\":\"Zet de schakelaars hieronder aan om de Travis hook voor uw projecten te activeren en push daarna naar Github \\nOm te testen tegen meerdere rubies, zie\"},\"messages\":{\"notice\":\"Om te beginnen kunt u onze startersgids lezen.\\\\n Het zal maar enkele minuten van uw tijd vergen. \"},\"update\":\"Bijwerken\",\"update_locale\":\"Bijwerken\",\"your_locale\":\"Uw taal\",\"your_repos\":\"Uw repositories\",\"token\":\"Token\"}},\"queue\":\"Wachtrij\",\"repositories\":{\"branch\":\"Tak\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"image_url\":\"Afbeeldings URL\",\"message\":\"Bericht\",\"started_at\":\"Gestart\",\"tabs\":{\"branches\":\"Tak samenvatting\",\"build\":\"Bouw\",\"build_history\":\"Bouw geschiedenis\",\"current\":\"Huidig\",\"job\":\"Taak\"},\"commit\":\"Commit\",\"markdown\":\"Markdown\",\"rdoc\":\"RDOC\",\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duur\"},\"statistics\":{\"index\":{\"build_count\":\"Bouw aantal\",\"count\":\"Aantal\",\"last_month\":\"voorbije maand\",\"repo_growth\":\"Repository groei\",\"total_builds\":\"Bouw totaal\",\"total_projects\":\"Projecten/Repository totaal\"}},\"workers\":\"Machines\",\"home\":{\"name\":\"Hoofdpagina\"}},\"pl\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} godzina\",\"other\":\"%{count} godziny\"},\"minutes_exact\":{\"one\":\"%{count} minuta\",\"other\":\"%{count} minuty\"},\"seconds_exact\":{\"one\":\"%{count} sekunda\",\"other\":\"%{count} sekundy\"}}},\"workers\":\"Workers\",\"queue\":\"Kolejka\",\"no_job\":\"Brak zadań\",\"repositories\":{\"branch\":\"Gałąź\",\"image_url\":\"URL obrazka\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"tabs\":{\"current\":\"Aktualny\",\"build_history\":\"Historia Buildów\",\"branches\":\"Wszystkie Gałęzie\",\"build\":\"Build\",\"job\":\"Zadanie\"}},\"build\":{\"job\":\"Zadanie\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Committer\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Komitujący\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"layouts\":{\"top\":{\"home\":\"Start\",\"blog\":\"Blog\",\"docs\":\"Dokumentacja\",\"stats\":\"Statystki\",\"github_login\":\"Zaloguj się przy pomocy Githuba\",\"profile\":\"Profil\",\"sign_out\":\"Wyloguj się\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Ostatnie\",\"search\":\"Wyniki\",\"sponsers\":\"Sponsorzy\",\"sponsors_link\":\"Zobacz naszych wszystkich wspaniałych sponsorów →\",\"my_repositories\":\"Moje repozytoria\"},\"about\":{\"alpha\":\"To wciąż jest wersja alpha.\",\"messages\":{\"alpha\":\"Proszę nie traktuj tego jako stabilnej usługi. Wciąż nam wiele do tego brakuje! Więcej informacji znajdziesz tutaj. \"},\"join\":\"Pomóż i dołącz do nas!\",\"mailing_list\":\"Lista mailingowa\",\"repository\":\"Repozytorium\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Macierz Buildów\",\"commit\":\"Commit\",\"committer\":\"Komitujący\",\"compare\":\"Porównianie\",\"config\":\"Konfiguracja\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"job\":\"Zadanie\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Przesuń suwak poniżej, aby włączyć Travisa, dla twoich projektów, a następnie umieść swój kod na GitHubie. \\n Aby testować swój kod przy użyciu wielu wersji Rubiego, zobacz\",\"config\":\"jak skonfigurować niestandardowe opcje builda\"},\"messages\":{\"notice\":\"Aby zacząć, przeczytaj nasz Przewodnik .\\n Zajmie ci to tylko kilka minut. \"},\"token\":\"Token\",\"your_repos\":\"Twoje repozytoria\"}},\"statistics\":{\"index\":{\"count\":\"Ilość\",\"repo_growth\":\"Przyrost repozytoriów\",\"total_projects\":\"Łącznie projektów/repozytoriów\",\"build_count\":\"Liczba buildów\",\"last_month\":\"ostatni miesiąc\",\"total_builds\":\"Łącznie Buildów\"}},\"date\":{\"abbr_day_names\":[\"nie\",\"pon\",\"wto\",\"śro\",\"czw\",\"pią\",\"sob\"],\"abbr_month_names\":[\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\"],\"day_names\":[\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\"formats\":{\"default\":\"%d-%m-%Y\",\"long\":\"%B %d, %Y\",\"short\":\"%d %b\"},\"month_names\":[\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\"],\"order\":[\"day\",\"month\",\"year\"]},\"errors\":{\"format\":\"%{attribute} %{message}\",\"messages\":{\"accepted\":\"musi zostać zaakceptowane\",\"blank\":\"nie może być puste\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"pt-BR\":{\"admin\":{\"actions\":{\"create\":\"criar\",\"created\":\"criado\",\"delete\":\"deletar\",\"deleted\":\"deletado\",\"update\":\"atualizar\",\"updated\":\"atualizado\"},\"credentials\":{\"log_out\":\"Deslogar\"},\"dashboard\":{\"add_new\":\"Adicionar novo\",\"ago\":\"atrás\",\"last_used\":\"Última utilização\",\"model_name\":\"Nome do modelo\",\"modify\":\"Modificar\",\"name\":\"Dashboard\",\"pagename\":\"Administração do site\",\"records\":\"Registros\",\"show\":\"Mostrar\"},\"delete\":{\"confirmation\":\"Sim, tenho certeza\",\"flash_confirmation\":\"%{name} foi destruído com sucesso\"},\"flash\":{\"error\":\"%{name} falhou ao %{action}\",\"noaction\":\"Nenhuma ação foi tomada\",\"successful\":\"%{name} foi %{action} com sucesso\"},\"history\":{\"name\":\"Histórico\",\"no_activity\":\"Nenhuma Atividade\",\"page_name\":\"Histórico para %{name}\"},\"list\":{\"add_new\":\"Adicionar novo\",\"delete_action\":\"Deletar\",\"delete_selected\":\"Deletar selecionados\",\"edit_action\":\"Editar\",\"search\":\"Buscar\",\"select\":\"Selecionar %{name} para editar\",\"select_action\":\"Selecionar\",\"show_all\":\"Mostrar todos\"},\"new\":{\"basic_info\":\"Informações básicas\",\"cancel\":\"Cancelar\",\"chosen\":\"Escolhido %{name}\",\"chose_all\":\"Escolher todos\",\"clear_all\":\"Limpar todos\",\"many_chars\":\"caracteres ou menos.\",\"one_char\":\"caractere.\",\"optional\":\"Opcional\",\"required\":\"Requerido\",\"save\":\"Salvar\",\"save_and_add_another\":\"Salvar e adicionar outro\",\"save_and_edit\":\"Salvar e alterar\",\"select_choice\":\"Selecione e clique\"}},\"build\":{\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\"},\"builds\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"name\":\"Build\",\"started_at\":\"Iniciou em\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Sua conta foi confirmada com sucesso. Você agora está logado.\",\"send_instructions\":\"Você receberá um email com instruções de como confirmar sua conta em alguns minutos.\"},\"failure\":{\"inactive\":\"Sua conta ainda não foi ativada.\",\"invalid\":\"Email ou senha inválidos.\",\"invalid_token\":\"Token de autenticação inválido.\",\"locked\":\"Sua conta está trancada.\",\"timeout\":\"Sua sessão expirou, por favor faça seu login novamente.\",\"unauthenticated\":\"Você precisa fazer o login ou cadastrar-se antes de continuar.\",\"unconfirmed\":\"Você precisa confirmar sua conta antes de continuar.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instruções de confirmação\"},\"reset_password_instructions\":{\"subject\":\"Instruções de atualização de senha\"},\"unlock_instructions\":{\"subject\":\"Instruções de destrancamento\"}},\"passwords\":{\"send_instructions\":\"Você receberá um email com instruções de como atualizar sua senha em alguns minutos.\",\"updated\":\"Sua senha foi alterada com sucesso. Você agora está logado.\"},\"registrations\":{\"destroyed\":\"Tchau! Sua conta foi cancelada com sucesso. Esperamos vê-lo novamente em breve!\",\"signed_up\":\"Você se cadastrou com sucesso. Se ativada, uma confirmação foi enviada para seu email.\",\"updated\":\"Você atualizou sua conta com sucesso.\"},\"sessions\":{\"signed_in\":\"Logado com sucesso.\",\"signed_out\":\"Deslogado com sucesso.\"},\"unlocks\":{\"send_instructions\":\"Você receberá um email com instruções de como destrancar sua conta em alguns minutos.\",\"unlocked\":\"Sua conta foi destrancada com sucesso. Você agora está logado.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"já foi confirmado\",\"not_found\":\"não encontrado\",\"not_locked\":\"não estava trancado\"}},\"home\":{\"name\":\"home\"},\"jobs\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"started_at\":\"Iniciou em\"},\"layouts\":{\"about\":{\"alpha\":\"Isto é um alpha.\",\"join\":\"Junte-se à nós e ajude!\",\"mailing_list\":\"Lista de email\",\"messages\":{\"alpha\":\"Por favor, não considere isto um serviço estável. Estamos muito longe disso! Mais informações aqui. \"},\"repository\":\"Repositório\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Faça fork no Github\",\"my_repositories\":\"Meus Repositórios\",\"recent\":\"Recentes\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Conheça todos os nossos patrocinadores →\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\",\"log\":\"Log\"},\"top\":{\"admin\":\"Admin\",\"blog\":\"Blog\",\"docs\":\"Documentação\",\"github_login\":\"Logue com o Github\",\"home\":\"Home\",\"profile\":\"Perfil\",\"sign_out\":\"Sair\",\"stats\":\"Estatísticas\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Não há trabalhos\",\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"config\":\"como configurar opções de build\",\"your_repos\":\"Use os botões abaixo para ligar ou desligar o hook de serviço do Travis para seus projetos, e então, faça um push para o Github. Para testar com múltiplas versões do Ruby, leia\"},\"messages\":{\"notice\":\"Para começar, leia nosso Guia de início . Só leva alguns minutinhos. \"},\"token\":\"Token\",\"update\":\"Atualizar\",\"update_locale\":\"Atualizar\",\"your_locale\":\"Sua língua\",\"your_repos\":\"Seus Repositórios\"}},\"queue\":\"Fila\",\"repositories\":{\"branch\":\"Branch\",\"commit\":\"Commit\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"image_url\":\"URL da imagem\",\"markdown\":\"Markdown\",\"message\":\"Mensagem\",\"rdoc\":\"RDOC\",\"started_at\":\"Iniciou em\",\"tabs\":{\"branches\":\"Sumário do Branch\",\"build\":\"Build\",\"build_history\":\"Histórico de Build\",\"current\":\"Atual\",\"job\":\"Trabalho\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duração\"},\"statistics\":{\"index\":{\"build_count\":\"Número de Builds\",\"count\":\"Número\",\"last_month\":\"último mês\",\"repo_growth\":\"Crescimento de Repositório\",\"total_builds\":\"Total de Builds\",\"total_projects\":\"Total de Projetos/Repositórios\"}},\"workers\":\"Processos\"},\"ru\":{\"admin\":{\"actions\":{\"create\":\"создать\",\"created\":\"создано\",\"delete\":\"удалить\",\"deleted\":\"удалено\",\"update\":\"обновить\",\"updated\":\"обновлено\"},\"credentials\":{\"log_out\":\"Выход\"},\"dashboard\":{\"add_new\":\"Добавить\",\"ago\":\"назад\",\"last_used\":\"Использовалось в последний раз\",\"model_name\":\"Имя модели\",\"modify\":\"Изменить\",\"name\":\"Панель управления\",\"pagename\":\"Управление сайтом\",\"records\":\"Записи\",\"show\":\"Показать\"},\"delete\":{\"confirmation\":\"Да, я уверен\",\"flash_confirmation\":\"%{name} успешно удалено\"},\"history\":{\"name\":\"История\",\"no_activity\":\"Нет активности\",\"page_name\":\"История %{name}\"},\"list\":{\"add_new\":\"Добавить\",\"delete_action\":\"Удалить\",\"delete_selected\":\"Удалить выбранные\",\"edit_action\":\"Редактировать\",\"search\":\"Поиск\",\"select\":\"Для редактирования выберите %{name}\",\"select_action\":\"Выбрать\",\"show_all\":\"Показать все\"},\"new\":{\"basic_info\":\"Основная информация\",\"cancel\":\"Отмена\",\"chosen\":\"Выбрано %{name}\",\"chose_all\":\"Выбрать все\",\"clear_all\":\"Очистить все\",\"one_char\":\"символ.\",\"optional\":\"Необязательно\",\"required\":\"Обязательно\",\"save\":\"Сохранить\",\"save_and_add_another\":\"Сохранить и добавить другое\",\"save_and_edit\":\"Сохранить и продолжить редактирование\",\"select_choice\":\"Выберите и кликните\",\"many_chars\":\"символов или меньше.\"},\"flash\":{\"error\":\"%{name} не удалось %{action}\",\"noaction\":\"Никаких действий не произведено\",\"successful\":\"%{name} было успешно %{action}\"}},\"build\":{\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\"},\"builds\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Дифф\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине, спонсируемой\"},\"name\":\"Билд\",\"started_at\":\"Начало\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} час\",\"few\":\"%{count} часа\",\"many\":\"%{count} часов\",\"other\":\"%{count} часа\"},\"minutes_exact\":{\"one\":\"%{count} минута\",\"few\":\"%{count} минуты\",\"many\":\"%{count} минут\",\"other\":\"%{count} минуты\"},\"seconds_exact\":{\"one\":\"%{count} секунда\",\"few\":\"%{count} секунды\",\"many\":\"%{count} секунд\",\"other\":\"%{count} секунды\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Ваш аккаунт успешно подтвержден. Приветствуем!\",\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для прохождения процедуры подтверждения аккаунта.\"},\"failure\":{\"inactive\":\"Ваш аккаунт еще не активирован.\",\"invalid\":\"Ошибка в адресе почты или пароле.\",\"invalid_token\":\"Неправильный токен аутентификации.\",\"locked\":\"Ваш аккаунт заблокирован.\",\"timeout\":\"Сессия окончена. Для продолжения работы войдите снова.\",\"unauthenticated\":\"Вам нужно войти или зарегистрироваться.\",\"unconfirmed\":\"Вы должны сначала подтвердить свой аккаунт.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Инструкции для подтверждению аккаунта\"},\"reset_password_instructions\":{\"subject\":\"Инструкции для сброса пароля\"},\"unlock_instructions\":{\"subject\":\"Инструкции для разблокирования аккаунта\"}},\"passwords\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для сброса пароля.\",\"updated\":\"Ваш пароль успешно изменен. Приветствуем!\"},\"registrations\":{\"destroyed\":\"Ваш аккаунт был успешно удален. Живите долго и процветайте!\",\"signed_up\":\"Вы успешно прошли регистрацию. Инструкции для подтверждения аккаунта отправлены на ваш электронный адрес.\",\"updated\":\"Аккаунт успешно обновлен.\"},\"sessions\":{\"signed_in\":\"Приветствуем!\",\"signed_out\":\"Удачи!\"},\"unlocks\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциям для разблокировния аккаунта.\",\"unlocked\":\"Ваш аккаунт успешно разблокирован. Приветствуем!\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"уже подтвержден\",\"not_found\":\"не найден\",\"not_locked\":\"не заблокирован\"}},\"home\":{\"name\":\"Главная\"},\"jobs\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине спонсируемой\"},\"started_at\":\"Начало\"},\"layouts\":{\"about\":{\"alpha\":\"Это альфа-версия\",\"join\":\"Присоединяйтесь к нам и помогайте!\",\"mailing_list\":\"Лист рассылки\",\"messages\":{\"alpha\":\"Пожалуйста, не считайте данный сервис стабильным. Мы еще очень далеки от стабильности! Подробности \"},\"repository\":\"Репозиторий\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"my_repositories\":\"Мои репозитории\",\"recent\":\"Недавние\",\"search\":\"Поиск\",\"sponsers\":\"Спонсоры\",\"sponsors_link\":\"Список всех наших замечательных спонсоров →\"},\"mobile\":{\"author\":\"Автор\",\"build\":\"Сборка\",\"build_matrix\":\"Матрица сборок\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\",\"log\":\"Журнал\"},\"top\":{\"admin\":\"Управление\",\"blog\":\"Блог\",\"docs\":\"Документация\",\"github_login\":\"Войти через Github\",\"home\":\"Главная\",\"profile\":\"Профиль\",\"sign_out\":\"Выход\",\"stats\":\"Статистика\"}},\"no_job\":\"Очередь пуста\",\"profiles\":{\"show\":{\"email\":\"Электронная почта\",\"github\":\"Github\",\"message\":{\"config\":\"как настроить специальные опции билда\",\"your_repos\":\"Используйте переключатели, чтобы включить Travis service hook для вашего проекта, а потом отправьте код на GitHub. \\nДля тестирования на нескольких версиях Ruby смотрите\"},\"messages\":{\"notice\":\"Перед началом, пожалуйста, прочтите Руководство для быстрого старта . Это займет всего несколько минут. \"},\"token\":\"Токен\",\"update\":\"Обновить\",\"update_locale\":\"Обновить\",\"your_locale\":\"Ваш язык\",\"your_repos\":\"Ваши репозитории\"}},\"queue\":\"Очередь\",\"repositories\":{\"branch\":\"Ветка\",\"commit\":\"Коммит\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"image_url\":\"URL изображения\",\"markdown\":\"Markdown\",\"message\":\"Комментарий\",\"rdoc\":\"RDOC\",\"started_at\":\"Начало\",\"tabs\":{\"branches\":\"Статус веток\",\"build\":\"Билд\",\"build_history\":\"История\",\"current\":\"Текущий\",\"job\":\"Задача\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Длительность\"},\"statistics\":{\"index\":{\"build_count\":\"Количество билдов\",\"count\":\"Количество\",\"last_month\":\"прошлый месяц\",\"repo_growth\":\"Рост числа репозиториев\",\"total_builds\":\"Всего билдов\",\"total_projects\":\"Всего проектов/репозиториев\"}},\"workers\":\"Машины\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}}};\n\n\n})();\n//@ sourceURL=config/locales");minispade.register('ext/ember/bound_helper', "(function() {// https://gist.github.com/2018185\n// For reference: https://github.com/wagenet/ember.js/blob/ac66dcb8a1cbe91d736074441f853e0da474ee6e/packages/ember-handlebars/lib/views/bound_property_view.js\nvar BoundHelperView = Ember.View.extend(Ember._Metamorph, {\n\n context: null,\n options: null,\n property: null,\n // paths of the property that are also observed\n propertyPaths: [],\n\n value: Ember.K,\n\n valueForRender: function() {\n var value = this.value(Ember.get(this.context, this.property), this.options);\n if (this.options.escaped) { value = Handlebars.Utils.escapeExpression(value); }\n return value;\n },\n\n render: function(buffer) {\n buffer.push(this.valueForRender());\n },\n\n valueDidChange: function() {\n if (this.morph.isRemoved()) { return; }\n this.morph.html(this.valueForRender());\n },\n\n didInsertElement: function() {\n this.valueDidChange();\n },\n\n init: function() {\n this._super();\n Ember.addObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n Ember.addObserver(this.context, this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n },\n\n destroy: function() {\n Ember.removeObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n this.context.removeObserver(this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n this._super();\n }\n\n});\n\nEmber.registerBoundHelper = function(name, func) {\n var propertyPaths = Array.prototype.slice.call(arguments, 2);\n Ember.Handlebars.registerHelper(name, function(property, options) {\n var data = options.data,\n view = data.view,\n ctx = this;\n\n var bindView = view.createChildView(BoundHelperView, {\n property: property,\n propertyPaths: propertyPaths,\n context: ctx,\n options: options.hash,\n value: func\n });\n\n view.appendChild(bindView);\n });\n};\n\n\n})();\n//@ sourceURL=ext/ember/bound_helper");minispade.register('ext/ember/namespace', "(function() {Em.Namespace.reopen = Em.Namespace.reopenClass\n\n\n\n})();\n//@ sourceURL=ext/ember/namespace");
\ No newline at end of file
+;minispade.register('app', "(function() {(function() {\nminispade.require('auth');\nminispade.require('controllers');\nminispade.require('helpers');\nminispade.require('models');\nminispade.require('pusher');\nminispade.require('routes');\nminispade.require('slider');\nminispade.require('store');\nminispade.require('tailing');\nminispade.require('templates');\nminispade.require('views');\nminispade.require('config/locales');\nminispade.require('data/sponsors');\n\n Travis.reopen({\n App: Em.Application.extend({\n autoinit: false,\n currentUserBinding: 'auth.user',\n authStateBinding: 'auth.state',\n init: function() {\n this._super.apply(this, arguments);\n this.store = Travis.Store.create();\n this.store.loadMany(Travis.Sponsor, Travis.SPONSORS);\n this.set('auth', Travis.Auth.create({\n app: this,\n endpoint: Travis.config.api_endpoint\n }));\n this.slider = new Travis.Slider();\n this.pusher = new Travis.Pusher(Travis.config.pusher_key);\n return this.tailing = new Travis.Tailing();\n },\n signIn: function() {\n return this.get('auth').signIn();\n },\n autoSignIn: function() {\n return this.get('auth').autoSignIn();\n },\n signOut: function() {\n this.get('auth').signOut();\n return this.get('router').send('afterSignOut');\n },\n receive: function() {\n return this.store.receive.apply(this.store, arguments);\n },\n toggleSidebar: function() {\n var element;\n $('body').toggleClass('maximized');\n element = $(' ');\n $('#top .profile').append(element);\n Em.run.later((function() {\n return element.remove();\n }), 10);\n element = $(' ');\n $('#repo').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=app");minispade.register('auth', "(function() {(function() {\n\n this.Travis.Auth = Ember.Object.extend({\n iframe: $('').hide(),\n timeout: 5000,\n state: 'signed-out',\n receivingEnd: \"\" + location.protocol + \"//\" + location.host,\n init: function() {\n var _this = this;\n this.iframe.appendTo('body');\n window.addEventListener('message', function(e) {\n return _this.receiveMessage(e);\n });\n return this.loadUser();\n },\n accessToken: (function() {\n return sessionStorage.getItem('travis.token');\n }).property(),\n loadUser: function() {\n var user;\n if (user = sessionStorage.getItem('travis.user')) {\n return this.setData({\n user: JSON.parse(user)\n });\n } else {\n return this.autoSignIn();\n }\n },\n signIn: function() {\n this.set('state', 'signing-in');\n this.trySignIn();\n return Ember.run.later(this, this.checkSignIn.bind(this), this.timeout);\n },\n autoSignIn: function() {\n if (localStorage.getItem('travis.auto_signin')) {\n return this.signIn();\n }\n },\n signOut: function() {\n localStorage.clear();\n sessionStorage.clear();\n return this.setData();\n },\n trySignIn: function() {\n return this.iframe.attr('src', \"\" + this.endpoint + \"/auth/post_message?origin=\" + this.receivingEnd);\n },\n checkSignIn: function() {\n if (this.get('state') === 'signing-in') {\n return this.forceSignIn();\n }\n },\n forceSignIn: function() {\n localStorage.setItem('travis.auto_signin', 'true');\n return window.location = \"\" + this.endpoint + \"/auth/handshake?redirect_uri=\" + location;\n },\n setData: function(data) {\n var router, user, _ref;\n if (typeof data === 'string') {\n data = JSON.parse(data);\n }\n if (data != null ? data.token : void 0) {\n this.storeToken(data.token);\n }\n if (data != null ? data.user : void 0) {\n user = this.storeUser(data.user);\n }\n this.set('state', user ? 'signed-in' : 'signed-out');\n this.set('user', user ? user : void 0);\n if (router = (_ref = Travis.app) != null ? _ref.get('router') : void 0) {\n return router.send('afterSignIn');\n }\n },\n storeToken: function(token) {\n sessionStorage.setItem('travis.token', token);\n return this.notifyPropertyChange('accessToken');\n },\n storeUser: function(user) {\n localStorage.setItem('travis.auto_signin', 'true');\n sessionStorage.setItem('travis.user', JSON.stringify(user));\n this.app.store.load(Travis.User, user);\n user = this.app.store.find(Travis.User, user.id);\n user.get('permissions');\n return user;\n },\n receiveMessage: function(event) {\n if (event.origin === this.expectedOrigin()) {\n if (event.data.token) {\n event.data.user.token = event.data.token;\n }\n this.setData(event.data);\n return console.log(\"signed in as \" + event.data.user.login);\n } else {\n return console.log(\"unexpected message \" + event.origin + \": \" + event.data);\n }\n },\n expectedOrigin: function() {\n if (this.endpoint[0] === '/') {\n return this.receivingEnd;\n } else {\n return this.endpoint;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=auth");minispade.register('controllers', "(function() {(function() {\nminispade.require('helpers');\nminispade.require('travis/ticker');\n\n Travis.reopen({\n Controller: Em.Controller.extend({\n connectOutlet: function() {\n var view, _connectedOutletViews;\n view = this._super.apply(this, arguments);\n if (view) {\n _connectedOutletViews = Travis.app.get('_connectedOutletViews');\n if (!_connectedOutletViews) {\n _connectedOutletViews = [];\n }\n _connectedOutletViews.pushObject(view);\n Travis.app.set('_connectedOutletViews', _connectedOutletViews);\n }\n return view;\n }\n }),\n TopController: Em.Controller.extend({\n userBinding: 'Travis.app.currentUser'\n }),\n ApplicationController: Em.Controller.extend(),\n MainController: Em.Controller.extend(),\n StatsLayoutController: Em.Controller.extend(),\n ProfileLayoutController: Em.Controller.extend(),\n AuthLayoutController: Em.Controller.extend()\n });\nminispade.require('controllers/accounts');\nminispade.require('controllers/builds');\nminispade.require('controllers/flash');\nminispade.require('controllers/home');\nminispade.require('controllers/profile');\nminispade.require('controllers/repos');\nminispade.require('controllers/repo');\nminispade.require('controllers/sidebar');\nminispade.require('controllers/stats');\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers");minispade.register('controllers/accounts', "(function() {(function() {\n\n Travis.AccountsController = Ember.ArrayController.extend({\n tab: 'accounts',\n init: function() {\n return this._super();\n },\n findByLogin: function(login) {\n return this.find(function(account) {\n return account.get('login') === login;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/accounts");minispade.register('controllers/builds', "(function() {(function() {\n\n Travis.BuildsController = Em.ArrayController.extend({\n repo: 'parent.repo',\n contentBinding: 'parent.builds'\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/builds");minispade.register('controllers/flash', "(function() {(function() {\n\n Travis.FlashController = Ember.ArrayController.extend({\n init: function() {\n this._super.apply(this, arguments);\n return this.set('content', Ember.A());\n },\n pushObjects: function(objects) {\n Ember.run.later(this, (function() {\n return this.removeObjects(objects);\n }), 10000);\n return this._super(objects);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/flash");minispade.register('controllers/home', "(function() {(function() {\n\n Travis.HomeLayoutController = Travis.Controller.extend();\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/home");minispade.register('controllers/profile', "(function() {(function() {\n\n Travis.ProfileController = Travis.Controller.extend({\n name: 'profile',\n userBinding: 'Travis.app.currentUser',\n accountsBinding: 'Travis.app.router.accountsController',\n account: (function() {\n var account, login;\n login = this.get('params.login') || Travis.app.get('currentUser.login');\n account = this.get('accounts').filter(function(account) {\n if (account.get('login') === login) {\n return account;\n }\n })[0];\n if (account) {\n account.select();\n }\n return account;\n }).property('accounts.length', 'params.login'),\n activate: function(action, params) {\n this.setParams(params || this.get('params'));\n return this[\"view\" + ($.camelize(action))]();\n },\n viewHooks: function() {\n this.connectTab('hooks');\n return this.set('hooks', Travis.Hook.find({\n owner_name: this.get('params.login') || Travis.app.get('currentUser.login')\n }));\n },\n viewUser: function() {\n return this.connectTab('user');\n },\n connectTab: function(tab) {\n var viewClass;\n viewClass = Travis[\"\" + ($.camelize(tab)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n setParams: function(params) {\n var key, value, _results;\n this.set('params', {});\n _results = [];\n for (key in params) {\n value = params[key];\n _results.push(this.set(\"params.\" + key, params[key]));\n }\n return _results;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/profile");minispade.register('controllers/repo', "(function() {(function() {\n\n Travis.RepoController = Travis.Controller.extend({\n bindings: [],\n init: function() {\n this._super.apply(this, arguments);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var build, builds, jobs;\n if (builds = this.get('builds')) {\n builds.forEach(function(b) {\n return b.updateTimes();\n });\n }\n if (build = this.get('build')) {\n build.updateTimes();\n }\n if (build && (jobs = build.get('jobs'))) {\n jobs.forEach(function(j) {\n return j.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(action) {\n this._unbind();\n return this[\"view\" + ($.camelize(action))]();\n },\n viewIndex: function() {\n this._bind('repo', 'controllers.reposController.firstObject');\n this._bind('build', 'repo.lastBuild');\n return this.connectTab('current');\n },\n viewCurrent: function() {\n this.connectTab('current');\n return this._bind('build', 'repo.lastBuild');\n },\n viewBuilds: function() {\n this.connectTab('builds');\n return this._bind('builds', 'repo.builds');\n },\n viewPullRequests: function() {\n this.connectTab('pull_requests');\n return this._bind('builds', 'repo.pullRequests');\n },\n viewBranches: function() {\n this.connectTab('branches');\n return this._bind('builds', 'repo.branches');\n },\n viewEvents: function() {\n this.connectTab('events');\n return this._bind('events', 'repo.events');\n },\n viewBuild: function() {\n return this.connectTab('build');\n },\n viewJob: function() {\n this._bind('build', 'job.build');\n return this.connectTab('job');\n },\n repoObserver: (function() {\n var repo;\n repo = this.get('repo');\n if (repo) {\n return repo.select();\n }\n }).observes('repo.id'),\n connectTab: function(tab) {\n var name, viewClass;\n name = tab === 'current' ? 'build' : tab;\n viewClass = name === 'builds' || name === 'branches' || name === 'pull_requests' ? Travis.BuildsView : Travis[\"\" + ($.camelize(name)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n _bind: function(to, from) {\n return this.bindings.push(Ember.oneWay(this, to, from));\n },\n _unbind: function() {\n var binding, _i, _len, _ref;\n _ref = this.bindings;\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n binding = _ref[_i];\n binding.disconnect(this);\n }\n return this.bindings.length = 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repo");minispade.register('controllers/repos', "(function() {(function() {\nminispade.require('travis/limited_array');\n\n Travis.ReposController = Ember.ArrayController.extend({\n defaultTab: 'recent',\n sortProperties: ['sortOrder'],\n init: function() {\n this.activate(this.defaultTab);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var content;\n if (content = this.get('content')) {\n content.forEach(function(r) {\n return r.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(tab, params) {\n this.set('tab', tab);\n return this[\"view\" + ($.camelize(tab))](params);\n },\n viewRecent: function() {\n var content;\n content = Travis.LimitedArray.create({\n content: Travis.Repo.find(),\n limit: 30\n });\n return this.set('content', content);\n },\n viewOwned: function() {\n return this.set('content', Travis.Repo.accessibleBy(Travis.app.get('currentUser.login')));\n },\n viewSearch: function(params) {\n return this.set('content', Travis.Repo.search(params.search));\n },\n searchObserver: (function() {\n var search;\n search = this.get('search');\n if (search) {\n return this.searchFor(search);\n } else {\n this.activate('recent');\n return 'recent';\n }\n }).observes('search'),\n searchFor: function(phrase) {\n if (this.searchLater) {\n Ember.run.cancel(this.searchLater);\n }\n return this.searchLater = Ember.run.later(this, (function() {\n return this.activate('search', {\n search: phrase\n });\n }), 500);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repos");minispade.register('controllers/sidebar', "(function() {(function() {\n\n Travis.reopen({\n SidebarController: Em.ArrayController.extend({\n init: function() {\n this.tickables = [];\n return Travis.Ticker.create({\n target: this,\n interval: Travis.INTERVALS.sponsors\n });\n },\n tick: function() {\n var tickable, _i, _len, _ref, _results;\n _ref = this.tickables;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n tickable = _ref[_i];\n _results.push(tickable.tick());\n }\n return _results;\n }\n }),\n QueuesController: Em.ArrayController.extend(),\n WorkersController: Em.ArrayController.extend({\n groups: (function() {\n var content, groups, host, worker, _i, _len, _ref;\n if (content = this.get('arrangedContent')) {\n groups = {};\n _ref = content.toArray();\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n worker = _ref[_i];\n host = worker.get('host');\n if (!groups[host]) {\n groups[host] = Em.ArrayProxy.create(Em.SortableMixin, {\n content: [],\n sortProperties: ['nameForSort']\n });\n }\n groups[host].addObject(worker);\n }\n return $.values(groups);\n }\n }).property('length')\n }),\n SponsorsController: Em.ArrayController.extend({\n page: 0,\n arrangedContent: (function() {\n return this.get('shuffled').slice(this.start(), this.end());\n }).property('shuffled.length', 'page'),\n shuffled: (function() {\n var content;\n if (content = this.get('content')) {\n return $.shuffle(content);\n } else {\n return [];\n }\n }).property('content.length'),\n tick: function() {\n return this.set('page', this.isLast() ? 0 : this.get('page') + 1);\n },\n pages: (function() {\n var length;\n length = this.get('content.length');\n if (length) {\n return parseInt(length / this.get('perPage') + 1);\n } else {\n return 1;\n }\n }).property('length'),\n isLast: function() {\n return this.get('page') === this.get('pages') - 1;\n },\n start: function() {\n return this.get('page') * this.get('perPage');\n },\n end: function() {\n return this.start() + this.get('perPage');\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/sidebar");minispade.register('controllers/stats', "(function() {(function() {\n\n Travis.StatsController = Travis.Controller.extend({\n name: 'stats',\n init: function() {\n return this._super('top');\n },\n activate: function(action, params) {}\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/stats");minispade.register('helpers', "(function() {(function() {\nminispade.require('helpers/handlebars');\nminispade.require('helpers/helpers');\nminispade.require('helpers/urls');\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers");minispade.register('helpers/handlebars', "(function() {(function() {\n var safe;\nminispade.require('ext/ember/bound_helper');\n\n safe = function(string) {\n return new Handlebars.SafeString(string);\n };\n\n Handlebars.registerHelper('tipsy', function(text, tip) {\n return safe('' + text + ' ');\n });\n\n Handlebars.registerHelper('t', function(key) {\n return safe(I18n.t(key));\n });\n\n Ember.registerBoundHelper('formatTime', function(value, options) {\n return safe(Travis.Helpers.timeAgoInWords(value) || '-');\n });\n\n Ember.registerBoundHelper('formatDuration', function(duration, options) {\n return safe(Travis.Helpers.timeInWords(duration));\n });\n\n Ember.registerBoundHelper('formatCommit', function(commit, options) {\n if (commit) {\n return safe(Travis.Helpers.formatCommit(commit.get('sha'), commit.get('branch')));\n }\n });\n\n Ember.registerBoundHelper('formatSha', function(sha, options) {\n return safe(Travis.Helpers.formatSha(sha));\n });\n\n Ember.registerBoundHelper('pathFrom', function(url, options) {\n return safe(Travis.Helpers.pathFrom(url));\n });\n\n Ember.registerBoundHelper('formatMessage', function(message, options) {\n return safe(Travis.Helpers.formatMessage(message, options));\n });\n\n Ember.registerBoundHelper('formatConfig', function(config, options) {\n return safe(Travis.Helpers.formatConfig(config));\n });\n\n Ember.registerBoundHelper('formatLog', function(log, options) {\n var item, parentView, repo;\n parentView = this.get('parentView');\n repo = parentView.get(options.repo);\n item = parentView.get(options.item);\n return Travis.Helpers.formatLog(log, repo, item) || '';\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/handlebars");minispade.register('helpers/helpers', "(function() {(function() {\nminispade.require('travis/log');\nminispade.require('config/emoij');\n\n this.Travis.Helpers = {\n compact: function(object) {\n var key, result, value, _ref;\n result = {};\n _ref = object || {};\n for (key in _ref) {\n value = _ref[key];\n if (!$.isEmpty(value)) {\n result[key] = value;\n }\n }\n return result;\n },\n safe: function(string) {\n return new Handlebars.SafeString(string);\n },\n colorForResult: function(result) {\n if (result === 0) {\n return 'green';\n } else {\n if (result === 1) {\n return 'red';\n } else {\n return null;\n }\n }\n },\n formatCommit: function(sha, branch) {\n return Travis.Helpers.formatSha(sha) + (branch ? \" (\" + branch + \")\" : '');\n },\n formatSha: function(sha) {\n return (sha || '').substr(0, 7);\n },\n formatConfig: function(config) {\n var values;\n config = $.only(config, 'rvm', 'gemfile', 'env', 'otp_release', 'php', 'node_js', 'scala', 'jdk', 'python', 'perl');\n values = $.map(config, function(value, key) {\n value = (value && value.join ? value.join(', ') : value) || '';\n return '%@: %@'.fmt($.camelize(key), value);\n });\n if (values.length === 0) {\n return '-';\n } else {\n return values.join(', ');\n }\n },\n formatMessage: function(message, options) {\n message = message || '';\n if (options.short) {\n message = message.split(/\\n/)[0];\n }\n return this._emojize(this._escape(message)).replace(/\\n/g, ' ');\n },\n formatLog: function(log, repo, item) {\n var event, url;\n event = item.constructor === Travis.Build ? 'showBuild' : 'showJob';\n url = Travis.app.get('router').urlForEvent(event, repo, item);\n return Travis.Log.filter(log, url);\n },\n pathFrom: function(url) {\n return (url || '').split('/').pop();\n },\n timeAgoInWords: function(date) {\n return $.timeago.distanceInWords(date);\n },\n durationFrom: function(started, finished) {\n started = started && this._toUtc(new Date(this._normalizeDateString(started)));\n finished = finished ? this._toUtc(new Date(this._normalizeDateString(finished))) : this._nowUtc();\n if (started && finished) {\n return Math.round((finished - started) / 1000);\n } else {\n return 0;\n }\n },\n timeInWords: function(duration) {\n var days, hours, minutes, result, seconds;\n days = Math.floor(duration / 86400);\n hours = Math.floor(duration % 86400 / 3600);\n minutes = Math.floor(duration % 3600 / 60);\n seconds = duration % 60;\n if (days > 0) {\n return 'more than 24 hrs';\n } else {\n result = [];\n if (hours === 1) {\n result.push(hours + ' hr');\n }\n if (hours > 1) {\n result.push(hours + ' hrs');\n }\n if (minutes > 0) {\n result.push(minutes + ' min');\n }\n if (seconds > 0) {\n result.push(seconds + ' sec');\n }\n if (result.length > 0) {\n return result.join(' ');\n } else {\n return '-';\n }\n }\n },\n _normalizeDateString: function(string) {\n if (window.JHW) {\n string = string.replace('T', ' ').replace(/-/g, '/');\n string = string.replace('Z', '').replace(/\\..*$/, '');\n }\n return string;\n },\n _nowUtc: function() {\n return this._toUtc(new Date());\n },\n _toUtc: function(date) {\n return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds());\n },\n _emojize: function(text) {\n var emojis;\n emojis = text.match(/:\\S+?:/g);\n if (emojis !== null) {\n $.each(emojis.uniq(), function(ix, emoji) {\n var image, strippedEmoji;\n strippedEmoji = emoji.substring(1, emoji.length - 1);\n if (EmojiDictionary.indexOf(strippedEmoji) !== -1) {\n image = ' ';\n return text = text.replace(new RegExp(emoji, 'g'), image);\n }\n });\n }\n return text;\n },\n _escape: function(text) {\n return text.replace(/&/g, '&').replace(//g, '>');\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/helpers");minispade.register('helpers/urls', "(function() {(function() {\n\n this.Travis.Urls = {\n repo: function(slug) {\n return \"/\" + slug;\n },\n builds: function(slug) {\n return \"/\" + slug + \"/builds\";\n },\n pullRequests: function(slug) {\n return \"/\" + slug + \"/pull_requests\";\n },\n branches: function(slug) {\n return \"/\" + slug + \"/branches\";\n },\n build: function(slug, id) {\n return \"/\" + slug + \"/builds/\" + id;\n },\n job: function(slug, id) {\n return \"/\" + slug + \"/jobs/\" + id;\n },\n githubCommit: function(slug, sha) {\n return \"http://github.com/\" + slug + \"/commit/\" + sha;\n },\n githubRepo: function(slug) {\n return \"http://github.com/\" + slug;\n },\n githubWatchers: function(slug) {\n return \"http://github.com/\" + slug + \"/watchers\";\n },\n githubNetwork: function(slug) {\n return \"http://github.com/\" + slug + \"/network\";\n },\n githubAdmin: function(slug) {\n return \"http://github.com/\" + slug + \"/admin/hooks#travis_minibucket\";\n },\n statusImage: function(slug, branch) {\n return (\"https://secure.travis-ci.org/\" + slug + \".png\") + (branch ? \"?branch=\" + branch : '');\n },\n email: function(email) {\n return \"mailto:\" + email;\n },\n account: function(login) {\n return \"/profile/\" + login;\n },\n user: function(login) {\n return \"/profile/\" + login + \"/me\";\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/urls");minispade.register('models', "(function() {(function() {\nminispade.require('models/extensions');\nminispade.require('models/account');\nminispade.require('models/artifact');\nminispade.require('models/branch');\nminispade.require('models/build');\nminispade.require('models/commit');\nminispade.require('models/event');\nminispade.require('models/hook');\nminispade.require('models/job');\nminispade.require('models/repo');\nminispade.require('models/sponsor');\nminispade.require('models/user');\nminispade.require('models/worker');\n\n}).call(this);\n\n})();\n//@ sourceURL=models");minispade.register('models/account', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Account = Travis.Model.extend({\n primaryKey: 'login',\n login: DS.attr('string'),\n name: DS.attr('string'),\n type: DS.attr('string'),\n reposCount: DS.attr('number'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('login'));\n }).property()\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/account");minispade.register('models/artifact', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Artifact = Travis.Model.extend({\n body: DS.attr('string'),\n init: function() {\n this._super.apply(this, arguments);\n this.set('queue', Ember.A([]));\n this.addObserver('body', this.fetchWorker);\n return this.fetchWorker();\n },\n append: function(body) {\n if (this.get('isLoaded')) {\n return this.set('body', this.get('body') + body);\n } else {\n return this.get('queue').pushObject(body);\n }\n },\n recordDidLoad: (function() {\n var queue;\n if (this.get('isLoaded')) {\n queue = this.get('queue');\n if (queue.get('length') > 0) {\n return this.append(queue.toArray().join(''));\n }\n }\n }).observes('isLoaded'),\n fetchWorker: function() {\n var body, line, match, worker;\n if (body = this.get('body')) {\n line = body.split(\"\\n\")[0];\n if (line && (match = line.match(/Using worker: (.*)/))) {\n if (worker = match[1]) {\n worker = worker.trim().split(':')[0];\n this.set('workerName', worker);\n return this.removeObserver('body', this.fetchWorker);\n }\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/artifact");minispade.register('models/branch', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Branch = Travis.Model.extend(Travis.Helpers, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n duration: DS.attr('number'),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n commit: DS.belongsTo('Travis.Commit'),\n repo: (function() {\n if (this.get('repoId')) {\n return Travis.Repo.find(this.get('repoId'));\n }\n }).property('repoId'),\n updateTimes: function() {\n this.notifyPropertyChange('started_at');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n this.Travis.Branch.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/branch");minispade.register('models/build', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Build = Travis.Model.extend(Travis.DurationCalculations, {\n eventType: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n state: DS.attr('string'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string', {\n key: 'started_at'\n }),\n finishedAt: DS.attr('string', {\n key: 'finished_at'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n commit: DS.belongsTo('Travis.Commit'),\n jobs: DS.hasMany('Travis.Job', {\n key: 'job_ids'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n isMatrix: (function() {\n return this.get('data.job_ids.length') > 1;\n }).property('data.job_ids.length'),\n isFinished: (function() {\n return this.get('state') === 'finished';\n }).property('state'),\n requiredJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return !data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n allowedFailureJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n configKeys: (function() {\n var config, headers, key, keys;\n if (!(config = this.get('config'))) {\n return [];\n }\n keys = $.intersect($.keys(config), Travis.CONFIG_KEYS);\n headers = (function() {\n var _i, _len, _ref, _results;\n _ref = ['build.job', 'build.duration', 'build.finished_at'];\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n key = _ref[_i];\n _results.push(I18n.t(key));\n }\n return _results;\n })();\n return $.map(headers.concat(keys), function(key) {\n return $.camelize(key);\n });\n }).property('config'),\n requeue: (function() {\n return Travis.ajax.post('/requests', {\n build_id: this.get('id')\n });\n })\n });\n\n this.Travis.Build.reopenClass({\n byRepoId: function(id, parameters) {\n return this.find($.extend(parameters || {}, {\n repository_id: id\n }));\n },\n olderThanNumber: function(id, build_number) {\n return this.find({\n url: \"/builds\",\n repository_id: id,\n after_number: build_number\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/build");minispade.register('models/commit', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Commit = Travis.Model.extend({\n buildId: DS.attr('number'),\n sha: DS.attr('string'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n compareUrl: DS.attr('string'),\n authorName: DS.attr('string'),\n authorEmail: DS.attr('string'),\n committerName: DS.attr('string'),\n committerEmail: DS.attr('string'),\n build: DS.belongsTo('Travis.Build', {\n key: 'buildId'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/commit");minispade.register('models/event', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Event = Travis.Model.extend({\n event: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n sourceId: DS.attr('number', {\n key: 'source_id'\n }),\n sourceType: DS.attr('string', {\n key: 'source_type'\n }),\n createdAt: DS.attr('string', {\n key: 'created_at'\n }),\n event_: (function() {\n return this.get('event');\n }).property('event'),\n result: (function() {\n return this.get('data.data.result');\n }).property('data.data.result'),\n message: (function() {\n return this.get('data.data.message');\n }).property('data.data.message'),\n source: (function() {\n var type;\n if (type = this.get('sourceType')) {\n return Travis[type].find(this.get('sourceId'));\n }\n }).property('sourceType', 'sourceId')\n });\n\n this.Travis.Event.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/event");minispade.register('models/extensions', "(function() {(function() {\n\n Travis.DurationCalculations = Ember.Mixin.create({\n duration: (function() {\n var duration;\n if (duration = this.get('_duration')) {\n return duration;\n } else {\n return Travis.Helpers.durationFrom(this.get('startedAt'), this.get('finishedAt'));\n }\n }).property('_duration', 'finishedAt', 'startedAt'),\n updateTimes: function() {\n this.notifyPropertyChange('_duration');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/extensions");minispade.register('models/hook', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Hook = Travis.Model.extend({\n name: DS.attr('string'),\n ownerName: DS.attr('string'),\n description: DS.attr('string'),\n active: DS.attr('boolean'),\n account: (function() {\n return this.get('slug').split('/')[0];\n }).property('slug'),\n slug: (function() {\n return \"\" + (this.get('ownerName')) + \"/\" + (this.get('name'));\n }).property('ownerName', 'name'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('slug'));\n }).property(),\n urlGithubAdmin: (function() {\n return \"http://github.com/\" + (this.get('slug')) + \"/admin/hooks#travis_minibucket\";\n }).property(),\n toggle: function() {\n var transaction;\n transaction = this.get('store').transaction();\n transaction.add(this);\n this.set('active', !this.get('active'));\n return transaction.commit();\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/hook");minispade.register('models/job', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Job = Travis.Model.extend(Travis.DurationCalculations, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n buildId: DS.attr('number'),\n commitId: DS.attr('number'),\n logId: DS.attr('number'),\n queue: DS.attr('string'),\n state: DS.attr('string'),\n number: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n allowFailure: DS.attr('boolean', {\n key: 'allow_failure'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n build: DS.belongsTo('Travis.Build', {\n key: 'build_id'\n }),\n commit: DS.belongsTo('Travis.Commit', {\n key: 'commit_id'\n }),\n log: DS.belongsTo('Travis.Artifact', {\n key: 'log_id'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n sponsor: (function() {\n var worker;\n worker = this.get('log.workerName');\n if (worker && worker.length) {\n return Travis.WORKERS[worker] || {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n };\n }\n }).property('log.workerName'),\n configValues: (function() {\n var config;\n if (config = this.get('config')) {\n return $.values($.only.apply(config, Travis.CONFIG_KEYS));\n } else {\n return [];\n }\n }).property('config'),\n appendLog: function(text) {\n var log;\n if (log = this.get('log')) {\n return log.append(text);\n }\n },\n subscribe: function() {\n var id;\n if (id = this.get('id')) {\n return Travis.app.pusher.subscribe(\"job-\" + id);\n }\n },\n onStateChange: (function() {\n if (this.get('state') === 'finished') {\n return Travis.app.pusher.unsubscribe(\"job-\" + (this.get('id')));\n }\n }).observes('state')\n });\n\n this.Travis.Job.reopenClass({\n queued: function(queue) {\n this.find();\n return Travis.app.store.filter(this, function(job) {\n var queued;\n queued = ['created', 'queued'].indexOf(job.get('state')) !== -1;\n return queued && (!queue || job.get('queue') === (\"builds.\" + queue));\n });\n },\n findMany: function(ids) {\n return Travis.app.store.findMany(this, ids);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/job");minispade.register('models/repo', "(function() {(function() {\nminispade.require('travis/expandable_record_array');\nminispade.require('travis/model');\n\n this.Travis.Repo = Travis.Model.extend({\n slug: DS.attr('string'),\n description: DS.attr('string'),\n lastBuildId: DS.attr('number'),\n lastBuildNumber: DS.attr('string'),\n lastBuildResult: DS.attr('number'),\n lastBuildStartedAt: DS.attr('string'),\n lastBuildFinishedAt: DS.attr('string'),\n lastBuild: DS.belongsTo('Travis.Build'),\n builds: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'push'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n pullRequests: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'pull_request'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n branches: (function() {\n return Travis.Branch.byRepoId(this.get('id'));\n }).property(),\n events: (function() {\n return Travis.Event.byRepoId(this.get('id'));\n }).property(),\n owner: (function() {\n return (this.get('slug') || '').split('/')[0];\n }).property('slug'),\n name: (function() {\n return (this.get('slug') || '').split('/')[1];\n }).property('slug'),\n lastBuildDuration: (function() {\n var duration;\n duration = this.get('data.last_build_duration');\n if (!duration) {\n duration = Travis.Helpers.durationFrom(this.get('lastBuildStartedAt'), this.get('lastBuildFinishedAt'));\n }\n return duration;\n }).property('data.last_build_duration', 'lastBuildStartedAt', 'lastBuildFinishedAt'),\n sortOrder: (function() {\n var lastBuildFinishedAt;\n if (lastBuildFinishedAt = this.get('lastBuildFinishedAt')) {\n return -new Date(lastBuildFinishedAt).getTime();\n } else {\n return -new Date('9999').getTime() - parseInt(this.get('lastBuildId'));\n }\n }).property('lastBuildFinishedAt', 'lastBuildId'),\n stats: (function() {\n var _this = this;\n return this.get('_stats') || $.get(\"https://api.github.com/repos/\" + (this.get('slug')), function(data) {\n _this.set('_stats', data);\n return _this.notifyPropertyChange('stats');\n }) && {};\n }).property(),\n updateTimes: function() {\n return this.notifyPropertyChange('lastBuildDuration');\n }\n });\n\n this.Travis.Repo.reopenClass({\n recent: function() {\n return this.find();\n },\n ownedBy: function(login) {\n return this.find({\n owner_name: login,\n orderBy: 'name'\n });\n },\n accessibleBy: function(login) {\n return this.find({\n member: login,\n orderBy: 'name'\n });\n },\n search: function(query) {\n return this.find({\n search: query,\n orderBy: 'name'\n });\n },\n bySlug: function(slug) {\n var repo;\n repo = $.select(this.find().toArray(), function(repo) {\n return repo.get('slug') === slug;\n });\n if (repo.length > 0) {\n return repo;\n } else {\n return this.find({\n slug: slug\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/repo");minispade.register('models/sponsor', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Sponsor = Travis.Model.extend({\n type: DS.attr('string'),\n url: DS.attr('string'),\n link: DS.attr('string'),\n image: (function() {\n return \"/images/sponsors/\" + (this.get('data.image'));\n }).property('data.image')\n });\n\n Travis.Sponsor.reopenClass({\n decks: function() {\n return this.platinum().concat(this.gold());\n },\n platinum: function() {\n var platinum, sponsor, _i, _len, _results;\n platinum = this.byType('platinum').toArray();\n _results = [];\n for (_i = 0, _len = platinum.length; _i < _len; _i++) {\n sponsor = platinum[_i];\n _results.push([sponsor]);\n }\n return _results;\n },\n gold: function() {\n var gold, _results;\n gold = this.byType('gold').toArray();\n _results = [];\n while (gold.length > 0) {\n _results.push(gold.splice(0, 2));\n }\n return _results;\n },\n links: function() {\n return this.byType('silver');\n },\n byType: function() {\n var types;\n types = Array.prototype.slice.apply(arguments);\n return Travis.Sponsor.filter(function(sponsor) {\n return types.indexOf(sponsor.get('type')) !== -1;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/sponsor");minispade.register('models/user', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('travis/model');\n\n this.Travis.User = Travis.Model.extend({\n name: DS.attr('string'),\n email: DS.attr('string'),\n login: DS.attr('string'),\n token: DS.attr('string'),\n locale: DS.attr('string'),\n gravatarId: DS.attr('string'),\n isSyncing: DS.attr('boolean'),\n syncedAt: DS.attr('string'),\n repoCount: DS.attr('number'),\n init: function() {\n if (this.get('isSyncing')) {\n this.poll();\n }\n this._super();\n return Ember.run.next(this, function() {\n var transaction;\n transaction = this.get('store').transaction();\n return transaction.add(this);\n });\n },\n urlGithub: (function() {\n return \"https://github.com/\" + (this.get('login'));\n }).property(),\n permissions: (function() {\n var _this = this;\n if (!this.permissions) {\n this.permissions = Ember.ArrayProxy.create({\n content: []\n });\n Travis.ajax.get('/users/permissions', function(data) {\n return _this.permissions.set('content', data.permissions);\n });\n }\n return this.permissions;\n }).property(),\n updateLocale: function(locale) {\n var observer, self, transaction;\n this.setWithSession('locale', locale);\n transaction = this.get('transaction');\n transaction.commit();\n self = this;\n observer = function() {\n if (!self.get('isSaving')) {\n self.removeObserver('isSaving', observer);\n transaction = self.get('store').transaction();\n return transaction.add(self);\n }\n };\n return this.addObserver('isSaving', observer);\n },\n type: (function() {\n return 'user';\n }).property(),\n sync: function() {\n Travis.ajax.post('/users/sync');\n this.setWithSession('isSyncing', true);\n return this.poll();\n },\n poll: function() {\n var _this = this;\n return Travis.ajax.get('/users', function(data) {\n if (data.user.is_syncing) {\n return Ember.run.later(_this, _this.poll.bind(_this), 3000);\n } else {\n _this.set('isSyncing', false);\n return _this.setWithSession('syncedAt', data.user.synced_at);\n }\n });\n },\n setWithSession: function(name, value) {\n var user;\n this.set(name, value);\n user = JSON.parse(typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.getItem('travis.user') : void 0);\n user[$.underscore(name)] = this.get(name);\n return typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.setItem('travis.user', JSON.stringify(user)) : void 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/user");minispade.register('models/worker', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Worker = Travis.Model.extend({\n state: DS.attr('string'),\n name: DS.attr('string'),\n host: DS.attr('string'),\n lastSeenAt: DS.attr('string'),\n payload: (function() {\n return this.get('data.payload');\n }).property('data.payload'),\n number: (function() {\n return this.get('name').match(/\\d+$/)[0];\n }).property('name'),\n isWorking: (function() {\n return this.get('state') === 'working';\n }).property('state'),\n repo: (function() {\n return Travis.Repo.find(this.get('payload.repository.id') || this.get('payload.repo.id'));\n }).property('payload.repository.id', 'payload.repo.id'),\n job_id: (function() {\n return this.get('payload.job.id');\n }).property('payload.job.id'),\n job: (function() {\n return Travis.Job.find(this.get('job_id'));\n }).property('job_id'),\n nameForSort: (function() {\n var id, match, name;\n if (name = this.get('name')) {\n match = name.match(/(.*?)-(\\d+)/);\n if (match) {\n name = match[1];\n id = match[2].toString();\n if (id.length < 2) {\n id = \"00\" + id;\n } else if (id.length < 3) {\n id = \"0\" + id;\n }\n return \"\" + name + \"-\" + id;\n }\n }\n }).property('name')\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/worker");minispade.register('pusher', "(function() {(function() {\n\n Travis.Pusher = function(key) {\n if (key) {\n this.init(key);\n }\n return this;\n };\n\n $.extend(Travis.Pusher, {\n CHANNELS: ['common'],\n CHANNEL_PREFIX: ''\n });\n\n $.extend(Travis.Pusher.prototype, {\n active_channels: [],\n init: function(key) {\n var channel, _i, _len, _ref, _results;\n Pusher.warn = this.warn.bind(this);\n this.pusher = new Pusher(key);\n _ref = Travis.Pusher.CHANNELS;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n channel = _ref[_i];\n _results.push(this.subscribe(channel));\n }\n return _results;\n },\n subscribe: function(channel) {\n var _this = this;\n if (this.pusher && this.active_channels.indexOf(channel) === -1) {\n this.active_channels.push(channel);\n return this.pusher.subscribe(this.prefix(channel)).bind_all(function(event, data) {\n return _this.receive(event, data);\n });\n }\n },\n unsubscribe: function(channel) {\n var ix;\n ix = this.active_channels.indexOf(channel);\n if (this.pusher && ix === -1) {\n this.active_channels.splice(ix, 1);\n return this.pusher.unsubscribe(this.prefix(channel));\n }\n },\n prefix: function(channel) {\n return \"\" + Travis.Pusher.CHANNEL_PREFIX + channel;\n },\n receive: function(event, data) {\n if (event.substr(0, 6) === 'pusher') {\n return;\n }\n if (data.id) {\n data = this.normalize(event, data);\n }\n return Ember.run.next(function() {\n return Travis.app.store.receive(event, data);\n });\n },\n normalize: function(event, data) {\n switch (event) {\n case 'build:started':\n case 'build:finished':\n return data;\n case 'job:created':\n case 'job:started':\n case 'job:finished':\n case 'job:log':\n if (data.queue) {\n data.queue = data.queue.replace('builds.', '');\n }\n return {\n job: data\n };\n case 'worker:added':\n case 'worker:updated':\n case 'worker:removed':\n return {\n worker: data\n };\n }\n },\n warn: function(type, warning) {\n if (!this.ignoreWarning(warning)) {\n return console.warn(warning);\n }\n },\n ignoreWarning: function(warning) {\n var message, _ref;\n if (message = (_ref = warning.data) != null ? _ref.message : void 0) {\n return message.indexOf('Existing subscription') === 0 || message.indexOf('No current subscription') === 0;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=pusher");minispade.register('routes', "(function() {(function() {\n var defaultRoute, lineNumberRoute, nonHashRouteMatcher, resolvePath;\nminispade.require('travis/location');\n\n defaultRoute = Ember.Route.extend({\n route: '/',\n index: 1000\n });\n\n lineNumberRoute = Ember.Route.extend({\n route: '#L:number',\n index: 1,\n connectOutlets: function(router) {\n return router.saveLineNumberHash();\n },\n routeMatcher: Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([0-9]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(regex);\n }\n });\n }\n }).cacheable()\n });\n\n nonHashRouteMatcher = Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([^/#]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(\"^/?\" + regex);\n }\n });\n }\n }).cacheable();\n\n resolvePath = function(manager, path) {\n var childStates, match, resolvedState, state, states;\n if (this.get('isLeafRoute')) {\n return Ember.A();\n }\n childStates = this.get('childStates');\n childStates = Ember.A(childStates.filterProperty('isRoutable'));\n childStates = childStates.sort(function(a, b) {\n var aDynamicSegments, aIndex, aRoute, bDynamicSegments, bIndex, bRoute;\n aDynamicSegments = a.get('routeMatcher.identifiers.length');\n bDynamicSegments = b.get('routeMatcher.identifiers.length');\n aRoute = a.get('route');\n bRoute = b.get('route');\n aIndex = a.get('index');\n bIndex = b.get('index');\n if (aIndex && bIndex) {\n return aIndex - bIndex;\n }\n if (aRoute.indexOf(bRoute) === 0) {\n return -1;\n } else if (bRoute.indexOf(aRoute) === 0) {\n return 1;\n }\n if (aDynamicSegments !== bDynamicSegments) {\n return aDynamicSegments - bDynamicSegments;\n }\n return b.get('route.length') - a.get('route.length');\n });\n match = null;\n state = childStates.find(function(state) {\n var matcher;\n matcher = state.get('routeMatcher');\n if (match = matcher.match(path)) {\n return match;\n }\n });\n Ember.assert(\"Could not find state for path \" + path, !!state);\n resolvedState = Ember._ResolvedState.create({\n manager: manager,\n state: state,\n match: match\n });\n states = state.resolvePath(manager, match.remaining);\n return Ember.A([resolvedState]).pushObjects(states);\n };\n\n Travis.Router = Ember.Router.extend({\n location: 'travis',\n enableLogging: true,\n initialState: 'loading',\n showRoot: Ember.Route.transitionTo('root.home.show'),\n showStats: Ember.Route.transitionTo('root.stats'),\n showRepo: Ember.Route.transitionTo('root.home.repo.show'),\n showBuilds: Ember.Route.transitionTo('root.home.repo.builds.index'),\n showBuild: Ember.Route.transitionTo('root.home.repo.builds.show'),\n showPullRequests: Ember.Route.transitionTo('root.home.repo.pullRequests'),\n showBranches: Ember.Route.transitionTo('root.home.repo.branches'),\n showEvents: Ember.Route.transitionTo('root.home.repo.events'),\n showJob: Ember.Route.transitionTo('root.home.repo.job'),\n showProfile: Ember.Route.transitionTo('root.profile'),\n showAccount: Ember.Route.transitionTo('root.profile.account'),\n showUserProfile: Ember.Route.transitionTo('root.profile.account.profile'),\n saveLineNumberHash: function(path) {\n return Ember.run.next(this, function() {\n var match;\n path = path || this.get('location').getURL();\n if (match = path.match(/#L\\d+$/)) {\n return this.set('repoController.lineNumberHash', match[0]);\n }\n });\n },\n reload: function() {\n var url;\n url = this.get('location').getURL();\n this.transitionTo('loading');\n return this.route(url);\n },\n signedIn: function() {\n return !!Travis.app.get('auth.user');\n },\n needsAuth: function(path) {\n return path.indexOf('/profile') === 0;\n },\n afterSignOut: function() {\n return this.authorize('/');\n },\n authorize: function(path) {\n if (!this.signedIn() && this.needsAuth(path)) {\n sessionStorage.setItem('travis.after_signin_path', path);\n this.transitionTo('root.auth');\n return Travis.app.autoSignIn();\n } else {\n this.transitionTo('root');\n return this.route(path);\n }\n },\n loading: Ember.Route.extend({\n routePath: function(router, path) {\n router.saveLineNumberHash(path);\n return router.authorize(path);\n }\n }),\n root: Ember.Route.extend({\n route: '/',\n loading: Ember.State.extend(),\n afterSignIn: (function() {}),\n auth: Ember.Route.extend({\n route: '/auth',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('authLayout');\n $('body').attr('id', 'auth');\n router.get('authLayoutController').connectOutlet('top', 'top');\n return router.get('authLayoutController').connectOutlet('main', 'signin');\n },\n afterSignIn: function(router) {\n var path;\n path = sessionStorage.getItem('travis.after_signin_path');\n sessionStorage.removeItem('travis.after_signin_path');\n router.transitionTo('root');\n return router.route(path || '/');\n }\n }),\n stats: Ember.Route.extend({\n route: '/stats',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('statsLayout');\n $('body').attr('id', 'stats');\n router.get('statsLayoutController').connectOutlet('top', 'top');\n return router.get('statsLayoutController').connectOutlet('main', 'stats');\n }\n }),\n profile: Ember.Route.extend({\n initialState: 'index',\n route: '/profile',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('profileLayout');\n $('body').attr('id', 'profile');\n router.get('accountsController').set('content', Travis.Account.find());\n router.get('profileLayoutController').connectOutlet('top', 'top');\n return router.get('profileLayoutController').connectOutlet('left', 'accounts');\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('profileLayoutController').connectOutlet('main', 'profile');\n return router.get('profileController').activate('hooks');\n }\n }),\n account: Ember.Route.extend({\n initialState: 'index',\n route: '/:login',\n connectOutlets: function(router, account) {\n var params;\n if (account) {\n params = {\n login: account.get('login')\n };\n return router.get('profileController').setParams(params);\n } else {\n return router.send('showProfile');\n }\n },\n deserialize: function(router, params) {\n var account, controller, deferred, observer;\n controller = router.get('accountsController');\n if (!controller.get('content')) {\n controller.set('content', Travis.Account.find());\n }\n account = controller.findByLogin(params.login);\n if (account) {\n return account;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (account = controller.findByLogin(params.login)) {\n controller.removeObserver('content.length', observer);\n return deferred.resolve(account);\n }\n };\n controller.addObserver('content.length', observer);\n return deferred.promise();\n }\n },\n serialize: function(router, account) {\n if (account) {\n return {\n login: account.get('login')\n };\n } else {\n return {};\n }\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('profileController').activate('hooks');\n }\n }),\n profile: Ember.Route.extend({\n route: '/profile',\n connectOutlets: function(router) {\n return router.get('profileController').activate('user');\n }\n })\n })\n }),\n home: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('homeLayout');\n $('body').attr('id', 'home');\n router.get('homeLayoutController').connectOutlet('left', 'repos');\n router.get('homeLayoutController').connectOutlet('right', 'sidebar');\n router.get('homeLayoutController').connectOutlet('top', 'top');\n router.get('homeLayoutController').connectOutlet('main', 'repo');\n router.get('homeLayoutController').connectOutlet('flash', 'flash');\n return router.get('repoController').set('repos', router.get('reposController'));\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n showWithLineNumber: Ember.Route.extend({\n route: '/#/L:number',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n }\n }),\n repo: Ember.Route.extend({\n route: '/:owner/:name',\n routeMatcher: nonHashRouteMatcher,\n connectOutlets: function(router, repo) {\n return router.get('repoController').set('repo', repo);\n },\n deserialize: function(router, params) {\n var deferred, observer, repos, slug;\n slug = \"\" + params.owner + \"/\" + params.name;\n repos = Travis.Repo.bySlug(slug);\n deferred = $.Deferred();\n observer = function() {\n if (repos.get('isLoaded')) {\n repos.removeObserver('isLoaded', observer);\n return deferred.resolve(repos.objectAt(0));\n }\n };\n if (repos.length) {\n deferred.resolve(repos[0]);\n } else {\n repos.addObserver('isLoaded', observer);\n }\n return deferred.promise();\n },\n serialize: function(router, repo) {\n if (repo) {\n return {\n owner: repo.get('owner'),\n name: repo.get('name')\n };\n } else {\n return {};\n }\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('current');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n builds: Ember.Route.extend({\n route: '/builds',\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('builds');\n }\n }),\n show: Ember.Route.extend({\n route: '/:build_id',\n connectOutlets: function(router, build) {\n if (!build.get) {\n build = Travis.Build.find(build);\n }\n router.get('repoController').set('build', build);\n return router.get('repoController').activate('build');\n },\n serialize: function(router, build) {\n if (build.get) {\n return {\n build_id: build.get('id')\n };\n } else {\n return {\n build_id: build\n };\n }\n },\n deserialize: function(router, params) {\n var build, deferred, observer;\n build = Travis.Build.find(params.build_id);\n if (build.get('id')) {\n return build;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (build.get('id')) {\n build.removeObserver('id', observer);\n return deferred.resolve(build);\n }\n };\n build.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n }),\n pullRequests: Ember.Route.extend({\n route: '/pull_requests',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('pull_requests');\n }\n }),\n branches: Ember.Route.extend({\n route: '/branches',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('branches');\n }\n }),\n events: Ember.Route.extend({\n route: '/events',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('events');\n }\n }),\n job: Ember.Route.extend({\n route: '/jobs/:job_id',\n connectOutlets: function(router, job) {\n if (!job.get) {\n job = Travis.Job.find(job);\n }\n router.get('repoController').set('job', job);\n return router.get('repoController').activate('job');\n },\n serialize: function(router, job) {\n if (job.get) {\n return {\n job_id: job.get('id')\n };\n } else {\n return {\n job_id: job\n };\n }\n },\n deserialize: function(router, params) {\n var deferred, job, observer;\n job = Travis.Job.find(params.job_id);\n if (job.get('id')) {\n return job;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (job.get('id')) {\n job.removeObserver('id', observer);\n return deferred.resolve(job);\n }\n };\n job.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n })\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=routes");minispade.register('slider', "(function() {(function() {\n\n this.Travis.Slider = function() {\n if ((typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.getItem('travis.maximized') : void 0) === 'true') {\n this.minimize();\n }\n return this;\n };\n\n $.extend(Travis.Slider.prototype, {\n persist: function() {\n return typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.setItem('travis.maximized', this.isMinimized()) : void 0;\n },\n isMinimized: function() {\n return $('body').hasClass('maximized');\n },\n minimize: function() {\n return $('body').addClass('maximized');\n },\n toggle: function() {\n var element;\n $('body').toggleClass('maximized');\n this.persist();\n element = $(' ');\n $('#top .profile').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=slider");minispade.register('store', "(function() {(function() {\n var DATA_PROXY,\n __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };\nminispade.require('store/rest_adapter');\n\n DATA_PROXY = {\n get: function(name) {\n return this.savedData[name];\n }\n };\n\n Travis.Store = DS.Store.extend({\n revision: 4,\n adapter: Travis.RestAdapter.create(),\n load: function(type, id, hash) {\n var record, result;\n result = this._super.apply(this, arguments);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n record.set('incomplete', false);\n record.set('complete', true);\n }\n return result;\n },\n merge: function(type, id, hash) {\n var clientId, data, dataCache, primaryKey, record, recordCache, typeMap;\n if (hash === void 0) {\n hash = id;\n primaryKey = type.proto().primaryKey;\n Ember.assert(\"A data hash was loaded for a record of type \" + type.toString() + \" but no primary key '\" + primaryKey + \"' was provided.\", hash[primaryKey]);\n id = hash[primaryKey];\n }\n typeMap = this.typeMapFor(type);\n dataCache = typeMap.cidToHash;\n clientId = typeMap.idToCid[id];\n recordCache = this.get('recordCache');\n if (clientId !== void 0) {\n if (data = dataCache[clientId]) {\n $.extend(data, hash);\n } else {\n dataCache[clientId] = hash;\n }\n if (record = recordCache[clientId]) {\n record.send('didChangeData');\n }\n } else {\n clientId = this.pushHash(hash, id, type);\n }\n if (clientId) {\n DATA_PROXY.savedData = hash;\n this.updateRecordArrays(type, clientId, DATA_PROXY);\n return {\n id: id,\n clientId: clientId\n };\n }\n },\n receive: function(event, data) {\n var job, mappings, name, type, _ref;\n _ref = event.split(':'), name = _ref[0], type = _ref[1];\n mappings = this.adapter.get('mappings');\n type = mappings[name];\n if (event === 'job:log') {\n if (job = this.find(Travis.Job, data['job']['id'])) {\n return job.appendLog(data['job']['_log']);\n }\n } else if (data[type.singularName()]) {\n return this._loadOne(this, type, data);\n } else if (data[type.pluralName()]) {\n return this._loadMany(this, type, data);\n } else {\n if (!type) {\n throw \"can't load data for \" + name;\n }\n }\n },\n _loadOne: function(store, type, json) {\n var result, root;\n root = type.singularName();\n if (type === Travis.Build && json.repository) {\n result = this.loadIncomplete(Travis.Repo, json.repository);\n }\n return this.loadIncomplete(type, json[root]);\n },\n loadIncomplete: function(type, hash) {\n var record, result;\n result = this.merge(type, hash);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n if (!record.get('complete')) {\n record.set('incomplete', true);\n record.loadedAttributes = Object.keys(hash);\n }\n this._updateAssociations(type, type.singularName(), hash);\n return record;\n }\n },\n _loadMany: function(store, type, json) {\n var root;\n root = type.pluralName();\n this.adapter.sideload(store, type, json, root);\n return this.loadMany(type, json[root]);\n },\n _updateAssociations: function(type, name, data) {\n var _this = this;\n return Em.get(type, 'associationsByName').forEach(function(key, meta) {\n var clientId, dataProxy, id, ids, parent, _ref;\n if (meta.kind === 'belongsTo') {\n id = data[\"\" + key + \"_id\"];\n if (clientId = _this.typeMapFor(meta.type).idToCid[id]) {\n if (parent = _this.findByClientId(meta.type, clientId, id)) {\n dataProxy = parent.get('data');\n if (ids = dataProxy.get(\"\" + name + \"_ids\")) {\n if (_ref = data.id, __indexOf.call(ids, _ref) < 0) {\n ids.pushObject(data.id);\n }\n return parent.send('didChangeData');\n }\n }\n }\n }\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store");minispade.register('store/fixture_adapter', "(function() {(function() {\n\n this.Travis.FixtureAdapter = DS.Adapter.extend({\n find: function(store, type, id) {\n var fixtures;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n if (fixtures.hasLoaded) {\n return;\n }\n return setTimeout((function() {\n store.loadMany(type, fixtures);\n return fixtures.hasLoaded = true;\n }), 300);\n },\n findMany: function() {\n return this.find.apply(this, arguments);\n },\n findAll: function(store, type) {\n var fixtures, ids;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n ids = fixtures.map(function(item, index, self) {\n return item.id;\n });\n return store.loadMany(type, ids, fixtures);\n },\n findQuery: function(store, type, params, array) {\n var fixture, fixtures, hashes, key, matches, value;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n hashes = (function() {\n var _i, _len, _results;\n _results = [];\n for (_i = 0, _len = fixtures.length; _i < _len; _i++) {\n fixture = fixtures[_i];\n matches = (function() {\n var _results1;\n _results1 = [];\n for (key in params) {\n value = params[key];\n _results1.push(key === 'orderBy' || fixture[key] === value);\n }\n return _results1;\n })();\n if (matches.reduce(function(a, b) {\n return a && b;\n })) {\n _results.push(fixture);\n } else {\n _results.push(null);\n }\n }\n return _results;\n })();\n return array.load(hashes.compact());\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/fixture_adapter");minispade.register('store/rest_adapter', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('models');\n\n this.Travis.RestAdapter = DS.RESTAdapter.extend({\n mappings: {\n repositories: Travis.Repo,\n repository: Travis.Repo,\n repos: Travis.Repo,\n repo: Travis.Repo,\n builds: Travis.Build,\n build: Travis.Build,\n commits: Travis.Commit,\n commit: Travis.Commit,\n jobs: Travis.Job,\n job: Travis.Job,\n account: Travis.Account,\n accounts: Travis.Account,\n worker: Travis.Worker,\n workers: Travis.Worker\n },\n plurals: {\n repositories: 'repositories',\n repository: 'repositories',\n repo: 'repos',\n repos: 'repos',\n build: 'builds',\n branch: 'branches',\n job: 'jobs',\n worker: 'workers',\n profile: 'profile'\n },\n ajax: function() {\n return Travis.ajax.ajax.apply(this, arguments);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/rest_adapter");minispade.register('tailing', "(function() {(function() {\n\n this.Travis.Tailing = function() {\n this.position = $(window).scrollTop();\n $(window).scroll(this.onScroll.bind(this));\n return this;\n };\n\n $.extend(Travis.Tailing.prototype, {\n options: {\n timeout: 200\n },\n run: function() {\n this.autoScroll();\n this.positionButton();\n if (this.active()) {\n return Ember.run.later(this.run.bind(this), this.options.timeout);\n }\n },\n toggle: function(event) {\n if (this.active()) {\n return this.stop();\n } else {\n return this.start();\n }\n },\n active: function() {\n return $('#tail').hasClass('active');\n },\n start: function() {\n $('#tail').addClass('active');\n return this.run();\n },\n stop: function() {\n return $('#tail').removeClass('active');\n },\n autoScroll: function() {\n var log, logBottom, win, winBottom;\n if (!this.active()) {\n return;\n }\n win = $(window);\n log = $('#log');\n logBottom = log.offset().top + log.outerHeight() + 40;\n winBottom = win.scrollTop() + win.height();\n if (logBottom - winBottom > 0) {\n return win.scrollTop(logBottom - win.height());\n }\n },\n onScroll: function() {\n var position;\n this.positionButton();\n position = $(window).scrollTop();\n if (position < this.position) {\n this.stop();\n }\n return this.position = position;\n },\n positionButton: function() {\n var max, offset, tail;\n tail = $('#tail');\n if (tail.length === 0) {\n return;\n }\n offset = $(window).scrollTop() - $('#log').offset().top;\n max = $('#log').height() - $('#tail').height() + 5;\n if (offset > max) {\n offset = max;\n }\n if (offset > 0) {\n return tail.css({\n top: offset - 2\n });\n } else {\n return tail.css({\n top: 0\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=tailing");minispade.register('views', "(function() {(function() {\nminispade.require('ext/ember/namespace');\n\n this.Travis.reopen({\n View: Em.View.extend({\n popup: function(event) {\n this.popupCloseAll();\n return $(\"#\" + event.target.name).toggleClass('display');\n },\n popupClose: function(event) {\n return $(event.target).closest('.popup').removeClass('display');\n },\n popupCloseAll: function() {\n return $('.popup').removeClass('display');\n }\n })\n });\n\n this.Travis.reopen({\n HomeLayoutView: Travis.View.extend({\n templateName: 'layouts/home'\n }),\n AuthLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n }),\n ProfileLayoutView: Travis.View.extend({\n templateName: 'layouts/profile'\n }),\n StatsLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n })\n });\nminispade.require('views/accounts');\nminispade.require('views/application');\nminispade.require('views/build');\nminispade.require('views/events');\nminispade.require('views/flash');\nminispade.require('views/job');\nminispade.require('views/repo');\nminispade.require('views/profile');\nminispade.require('views/sidebar');\nminispade.require('views/stats');\nminispade.require('views/signin');\nminispade.require('views/top');\n\n}).call(this);\n\n})();\n//@ sourceURL=views");minispade.register('views/accounts', "(function() {(function() {\n\n this.Travis.reopen({\n AccountsView: Travis.View.extend({\n tabBinding: 'controller.tab',\n templateName: 'profile/accounts',\n classAccounts: (function() {\n if (this.get('tab') === 'accounts') {\n return 'active';\n }\n }).property('tab')\n }),\n AccountsListView: Em.CollectionView.extend({\n elementId: 'accounts',\n accountBinding: 'content',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n accountBinding: 'content',\n typeBinding: 'content.type',\n selectedBinding: 'account.selected',\n classNames: ['account'],\n classNameBindings: ['type', 'selected'],\n name: (function() {\n return this.get('content.name') || this.get('content.login');\n }).property('content.login', 'content.name'),\n urlAccount: (function() {\n return Travis.Urls.account(this.get('account.login'));\n }).property('account.login')\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/accounts");minispade.register('views/application', "(function() {(function() {\n\n this.Travis.reopen({\n ApplicationView: Travis.View.extend({\n templateName: 'application',\n classNames: ['application'],\n popup: function(event) {\n return console.log(event);\n },\n localeDidChange: (function() {\n var locale;\n if (locale = Travis.app.get('auth.user.locale')) {\n Travis.setLocale(locale);\n return Travis.app.get('router').reload();\n }\n }).observes('Travis.app.auth.user.locale'),\n click: function(event) {\n var targetAndParents;\n targetAndParents = $(event.target).parents().andSelf();\n if (!(targetAndParents.hasClass('open-popup') || targetAndParents.hasClass('popup'))) {\n this.popupCloseAll();\n }\n if (!targetAndParents.hasClass('menu')) {\n return $('.menu').removeClass('display');\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/application");minispade.register('views/build', "(function() {(function() {\n\n this.Travis.reopen({\n BuildsView: Travis.View.extend({\n templateName: 'builds/list',\n buildsBinding: 'controller.builds',\n showMore: function() {\n var id, number;\n id = this.get('controller.repo.id');\n number = this.get('builds.lastObject.number');\n return this.get('builds').load(Travis.Build.olderThanNumber(id, number));\n },\n ShowMoreButton: Em.View.extend({\n tagName: 'button',\n classNameBindings: ['isLoading'],\n attributeBindings: ['disabled'],\n isLoadingBinding: 'controller.builds.isLoading',\n template: Em.Handlebars.compile('{{view.label}}'),\n disabledBinding: 'isLoading',\n label: (function() {\n if (this.get('isLoading')) {\n return 'Loading';\n } else {\n return 'Show more';\n }\n }).property('isLoading'),\n click: function() {\n return this.get('parentView').showMore();\n }\n })\n }),\n BuildsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'controller.repo',\n buildBinding: 'context',\n commitBinding: 'build.commit',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha')\n }),\n BuildView: Travis.View.extend({\n templateName: 'builds/show',\n elementId: 'build',\n classNameBindings: ['color', 'loading'],\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n commitBinding: 'build.commit',\n currentItemBinding: 'build',\n loading: (function() {\n return !this.get('build.isComplete');\n }).property('build.isComplete'),\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/build");minispade.register('views/events', "(function() {(function() {\n\n this.Travis.reopen({\n EventsView: Travis.View.extend({\n templateName: 'events/list',\n eventsBinding: 'controller.events'\n }),\n EventsItemView: Travis.View.extend({\n tagName: 'tr'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/events");minispade.register('views/flash', "(function() {(function() {\n\n this.Travis.reopen({\n FlashView: Travis.View.extend({\n elementId: 'flash',\n tagName: 'ul',\n templateName: 'layouts/flash'\n }),\n FlashItemView: Travis.View.extend({\n tagName: 'li',\n classNameBindings: ['type'],\n type: (function() {\n return this.get('flash') && Ember.keys(this.get('flash'))[0];\n }).property('flash'),\n message: (function() {\n return this.get('flash') && this.get('flash')[this.get('type')];\n }).property('flash'),\n close: function(event) {\n return this.get('controller').removeObject(this.get('flash'));\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/flash");minispade.register('views/job', "(function() {(function() {\n\n this.Travis.reopen({\n JobsView: Travis.View.extend({\n templateName: 'jobs/list',\n buildBinding: 'controller.build'\n }),\n JobsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'context.repo',\n jobBinding: 'context',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id')\n }),\n JobView: Travis.View.extend({\n templateName: 'jobs/show',\n repoBinding: 'controller.repo',\n jobBinding: 'controller.job',\n commitBinding: 'job.commit',\n currentItemBinding: 'job',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n }),\n LogView: Travis.View.extend({\n templateName: 'jobs/log',\n logBinding: 'job.log',\n scrollTo: function(hash) {\n $('#main').scrollTop(0);\n $('html,body').scrollTop($(hash).offset().top);\n return this.set('controller.lineNumberHash', null);\n },\n lineNumberHashDidChange: (function() {\n return this.tryScrollingToHashLineNumber();\n }).observes('controller.lineNumberHash'),\n tryScrollingToHashLineNumber: function() {\n var checker, hash, self;\n if (hash = this.get('controller.lineNumberHash')) {\n self = this;\n checker = function() {\n if (self.get('isDestroyed')) {\n return;\n }\n if ($(hash).length) {\n return self.scrollTo(hash);\n } else {\n return setTimeout(checker, 100);\n }\n };\n return checker();\n }\n },\n didInsertElement: function() {\n this._super.apply(this, arguments);\n return this.tryScrollingToHashLineNumber();\n },\n click: function(event) {\n var path, target;\n target = $(event.target);\n target.closest('.fold').toggleClass('open');\n if (target.is('.log-line-number')) {\n path = target.attr('href');\n Travis.app.get('router').route(path);\n event.stopPropagation();\n return false;\n }\n },\n toTop: function() {\n return $(window).scrollTop(0);\n },\n jobBinding: 'context',\n toggleTailing: function(event) {\n Travis.app.tailing.toggle();\n return event.preventDefault();\n },\n logSubscriber: (function() {\n var job, state;\n job = this.get('job');\n state = this.get('job.state');\n if (job && state !== 'finished') {\n job.subscribe();\n }\n return null;\n }).property('job', 'job.state')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/job");minispade.register('views/left', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n tabBinding: 'controller.tab',\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/left");minispade.register('views/profile', "(function() {(function() {\n\n this.Travis.reopen({\n ProfileView: Travis.View.extend({\n templateName: 'profile/show',\n accountBinding: 'controller.account',\n name: (function() {\n return this.get('account.name') || this.get('account.login');\n }).property('account.name', 'account.login')\n }),\n ProfileTabsView: Travis.View.extend({\n templateName: 'profile/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classHooks: (function() {\n if (this.get('tab') === 'hooks') {\n return 'active';\n }\n }).property('tab'),\n classUser: (function() {\n if (this.get('tab') === 'user') {\n return 'active';\n }\n }).property('tab'),\n accountBinding: 'controller.account',\n displayUser: (function() {\n return this.get('controller.account.login') === this.get('controller.user.login');\n }).property('controller.account.login', 'controller.user.login')\n }),\n HooksView: Travis.View.extend({\n templateName: 'profile/tabs/hooks',\n userBinding: 'controller.user',\n urlGithubAdmin: (function() {\n return Travis.Urls.githubAdmin(this.get('hook.slug'));\n }).property('hook.slug')\n }),\n UserView: Travis.View.extend({\n templateName: 'profile/tabs/user',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=48&d=mm\";\n }).property('user.gravatarId'),\n locales: (function() {\n return [\n {\n key: null,\n name: ''\n }, {\n key: 'en',\n name: 'English'\n }, {\n key: 'ca',\n name: 'Catalan'\n }, {\n key: 'cs',\n name: 'Čeština'\n }, {\n key: 'es',\n name: 'Español'\n }, {\n key: 'fr',\n name: 'Français'\n }, {\n key: 'ja',\n name: '日本語'\n }, {\n key: 'nl',\n name: 'Nederlands'\n }, {\n key: 'nb',\n name: 'Norsk Bokmål'\n }, {\n key: 'pl',\n name: 'Polski'\n }, {\n key: {\n 'pt-BR': {\n name: 'Português brasileiro'\n }\n }\n }, {\n key: 'ru',\n name: 'Русский'\n }\n ];\n }).property(),\n saveLocale: function(event) {\n return this.get('user').updateLocale($('#locale').val());\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/profile");minispade.register('views/repo', "(function() {(function() {\nminispade.require('views/repo/list');\nminispade.require('views/repo/show');\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo");minispade.register('views/repo/list', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n toggleInfo: function(event) {\n return $('#repos').toggleClass('open');\n }\n }),\n ReposListView: Em.CollectionView.extend({\n elementId: 'repos',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n repoBinding: 'content',\n classNames: ['repo'],\n classNameBindings: ['color', 'selected'],\n selectedBinding: 'repo.selected',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('repo.lastBuildResult'));\n }).property('repo.lastBuildResult'),\n urlRepo: (function() {\n return Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlLastBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('repo.lastBuildId'));\n }).property('repo.slug', 'repo.lastBuildId')\n })\n }),\n ReposListTabsView: Travis.View.extend({\n templateName: 'repos/list/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.app.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/list");minispade.register('views/repo/show', "(function() {(function() {\n\n this.Travis.reopen({\n RepoView: Travis.View.extend({\n templateName: 'repos/show',\n reposBinding: 'controller.repos',\n repoBinding: 'controller.repo',\n \"class\": (function() {\n if (!this.get('repo.isComplete') && !this.get('isEmpty')) {\n return 'loading';\n }\n }).property('repo.isComplete'),\n isEmpty: (function() {\n return this.get('repos.length') === 0;\n }).property('repos.length'),\n urlGithub: (function() {\n return Travis.Urls.githubRepo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubWatchers: (function() {\n return Travis.Urls.githubWatchers(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubNetwork: (function() {\n return Travis.Urls.githubNetwork(this.get('repo.slug'));\n }).property('repo.slug')\n }),\n ReposEmptyView: Travis.View.extend({\n template: ''\n }),\n RepoShowTabsView: Travis.View.extend({\n templateName: 'repos/show/tabs',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n classCurrent: (function() {\n if (this.get('tab') === 'current') {\n return 'active';\n }\n }).property('tab'),\n classBuilds: (function() {\n if (this.get('tab') === 'builds') {\n return 'active';\n }\n }).property('tab'),\n classPullRequests: (function() {\n if (this.get('tab') === 'pull_requests') {\n return 'active';\n }\n }).property('tab'),\n classBranches: (function() {\n if (this.get('tab') === 'branches') {\n return 'active';\n }\n }).property('tab'),\n classEvents: (function() {\n if (this.get('tab') === 'events') {\n return 'active';\n }\n }).property('tab'),\n classBuild: (function() {\n var classes, tab;\n tab = this.get('tab');\n classes = [];\n if (tab === 'build') {\n classes.push('active');\n }\n if (tab === 'build' || tab === 'job') {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab'),\n classJob: (function() {\n if (this.get('tab') === 'job') {\n return 'active display-inline';\n }\n }).property('tab')\n }),\n RepoShowToolsView: Travis.View.extend({\n templateName: 'repos/show/tools',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n closeMenu: function() {\n return $('.menu').removeClass('display');\n },\n menu: function(event) {\n var element;\n this.popupCloseAll();\n element = $('#tools .menu').toggleClass('display');\n return event.stopPropagation();\n },\n requeue: function() {\n this.closeMenu();\n return this.get('build').requeue();\n },\n statusImages: function(event) {\n this.set('active', true);\n this.closeMenu();\n this.popup(event);\n return event.stopPropagation();\n },\n canPush: (function() {\n return this.get('isBuildTab') && this.get('build.isFinished') && this.get('hasPushPermissions');\n }).property('build.isFinished', 'hasPushPermissions', 'isBuildTab'),\n isBuildTab: (function() {\n return ['current', 'build', 'job'].indexOf(this.get('tab')) > -1;\n }).property('tab'),\n hasPushPermissions: (function() {\n var permissions;\n if (permissions = Travis.app.get('currentUser.permissions')) {\n return permissions.indexOf(this.get('repo.id')) > -1;\n }\n }).property('Travis.app.currentUser.permissions.length', 'repo.id'),\n branches: (function() {\n if (this.get('active')) {\n return this.get('repo.branches');\n }\n }).property('active', 'repo.branches'),\n urlRepo: (function() {\n return 'https://' + location.host + Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlStatusImage: (function() {\n return Travis.Urls.statusImage(this.get('repo.slug'), this.get('branch.commit.branch'));\n }).property('repo.slug', 'branch'),\n markdownStatusImage: (function() {\n return \"[) + \")](\" + (this.get('urlRepo')) + \")\";\n }).property('urlStatusImage'),\n textileStatusImage: (function() {\n return \"!\" + (this.get('urlStatusImage')) + \"!:\" + (this.get('urlRepo'));\n }).property('urlStatusImage'),\n rdocStatusImage: (function() {\n return \"{ }[\" + (this.get('urlRepo')) + \"]\";\n }).property('urlStatusImage')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/show");minispade.register('views/sidebar', "(function() {(function() {\n\n this.Travis.reopen({\n SidebarView: Travis.View.extend({\n templateName: 'layouts/sidebar',\n DecksView: Em.View.extend({\n templateName: \"sponsors/decks\",\n controller: Travis.SponsorsController.create({\n perPage: 1\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n Travis.app.get('router.sidebarController').tickables.push(controller);\n controller.set('content', Travis.Sponsor.decks());\n }\n return this._super.apply(this, arguments);\n }\n }),\n LinksView: Em.View.extend({\n templateName: \"sponsors/links\",\n controller: Travis.SponsorsController.create({\n perPage: 6\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n controller.set('content', Travis.Sponsor.links());\n Travis.app.get('router.sidebarController').tickables.push(controller);\n }\n return this._super.apply(this, arguments);\n }\n }),\n WorkersView: Em.View.extend({\n templateName: 'workers/list',\n controller: Travis.WorkersController.create(),\n didInsertElement: function() {\n this.set('controller.content', Travis.Worker.find());\n return this._super.apply(this, arguments);\n }\n }),\n QueuesView: Em.View.extend({\n templateName: 'queues/list',\n controller: Em.ArrayController.create(),\n didInsertElement: function() {\n var queue, queues;\n queues = (function() {\n var _i, _len, _ref, _results;\n _ref = Travis.QUEUES;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n queue = _ref[_i];\n _results.push(Em.ArrayController.create({\n content: Travis.Job.queued(queue.name),\n id: \"queue_\" + queue.name,\n name: queue.display\n }));\n }\n return _results;\n })();\n this.set('controller.content', queues);\n return this._super.apply(this, arguments);\n }\n })\n }),\n WorkersView: Travis.View.extend({\n toggleWorkers: function(event) {\n var handle;\n handle = $(event.target).toggleClass('open');\n if (handle.hasClass('open')) {\n return $('#workers li').addClass('open');\n } else {\n return $('#workers li').removeClass('open');\n }\n }\n }),\n WorkersListView: Travis.View.extend({\n toggle: function(event) {\n return $(event.target).closest('li').toggleClass('open');\n }\n }),\n WorkersItemView: Travis.View.extend({\n display: (function() {\n var name, number, payload, repo, state;\n name = (this.get('worker.name') || '').replace('travis-', '');\n state = this.get('worker.state');\n payload = this.get('worker.payload');\n if (state === 'working' && (payload != null ? payload.repository : void 0) && (payload != null ? payload.build : void 0)) {\n repo = payload.repository.slug;\n number = ' #' + payload.build.number;\n return (\"\" + name + \": \" + repo + \" \" + number).htmlSafe();\n } else {\n return \"\" + name + \": \" + state;\n }\n }).property('worker.state')\n }),\n QueueItemView: Travis.View.extend({\n tagName: 'li'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/sidebar");minispade.register('views/signin', "(function() {(function() {\n\n this.Travis.reopen({\n SigninView: Travis.View.extend({\n templateName: 'auth/signin',\n signingIn: (function() {\n return Travis.app.get('authState') === 'signing-in';\n }).property('Travis.app.authState')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/signin");minispade.register('views/stats', "(function() {(function() {\n\n this.Travis.reopen({\n StatsView: Travis.View.extend({\n templateName: 'stats/show',\n didInsertElement: function() {},\n renderChart: function(config) {\n var chart;\n chart = new Highcharts.Chart(config);\n return this.fetch(config.source, function(data) {\n var stats;\n stats = (function() {\n var _i, _len, _ref, _results;\n _ref = data.stats;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n stats = _ref[_i];\n _results.push(config.map(stats));\n }\n return _results;\n })();\n return chart.series[0].setData(stats);\n });\n },\n fetch: function(url, callback) {\n return $.ajax({\n type: 'GET',\n url: url,\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n },\n success: callback\n });\n },\n CHARTS: {\n repos: {\n source: '/api/stats/repos',\n total: 0,\n map: function(data) {\n return [Date.parse(data.date), this.total += parseInt(data.count)];\n },\n chart: {\n renderTo: \"repos_stats\"\n },\n title: {\n text: \"Total Projects/Repositories\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" repos\";\n }\n },\n series: [\n {\n name: \"Repository Growth\",\n data: []\n }\n ]\n },\n builds: {\n source: '/api/stats/tests',\n map: function(data) {\n return [Date.parse(data.date), parseInt(data.count)];\n },\n chart: {\n renderTo: \"tests_stats\",\n type: \"column\"\n },\n title: {\n text: \"Build Count\"\n },\n subtitle: {\n text: \"last month\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" builds\";\n }\n },\n series: [\n {\n name: \"Total Builds\",\n data: []\n }\n ]\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/stats");minispade.register('views/top', "(function() {(function() {\n\n this.Travis.reopen({\n TopView: Travis.View.extend({\n templateName: 'layouts/top',\n tabBinding: 'controller.tab',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=24&d=mm\";\n }).property('user.gravatarId'),\n classHome: (function() {\n if (this.get('tab') === 'home') {\n return 'active';\n }\n }).property('tab'),\n classStats: (function() {\n if (this.get('tab') === 'stats') {\n return 'active';\n }\n }).property('tab'),\n classProfile: (function() {\n var classes;\n classes = ['profile'];\n if (this.get('tab') === 'profile') {\n classes.push('active');\n }\n classes.push(Travis.app.get('authState'));\n return classes.join(' ');\n }).property('tab', 'Travis.app.authState'),\n showProfile: function() {\n return $('#top .profile ul').show();\n },\n hideProfile: function() {\n return $('#top .profile ul').hide();\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/top");minispade.register('config/emoij', "(function() {(function() {\n\n this.EmojiDictionary = ['-1', '0', '1', '109', '2', '3', '4', '5', '6', '7', '8', '8ball', '9', 'a', 'ab', 'airplane', 'alien', 'ambulance', 'angel', 'anger', 'angry', 'apple', 'aquarius', 'aries', 'arrow_backward', 'arrow_down', 'arrow_forward', 'arrow_left', 'arrow_lower_left', 'arrow_lower_right', 'arrow_right', 'arrow_up', 'arrow_upper_left', 'arrow_upper_right', 'art', 'astonished', 'atm', 'b', 'baby', 'baby_chick', 'baby_symbol', 'balloon', 'bamboo', 'bank', 'barber', 'baseball', 'basketball', 'bath', 'bear', 'beer', 'beers', 'beginner', 'bell', 'bento', 'bike', 'bikini', 'bird', 'birthday', 'black_square', 'blue_car', 'blue_heart', 'blush', 'boar', 'boat', 'bomb', 'book', 'boot', 'bouquet', 'bow', 'bowtie', 'boy', 'bread', 'briefcase', 'broken_heart', 'bug', 'bulb', 'bullettrain_front', 'bullettrain_side', 'bus', 'busstop', 'cactus', 'cake', 'calling', 'camel', 'camera', 'cancer', 'capricorn', 'car', 'cat', 'cd', 'chart', 'checkered_flag', 'cherry_blossom', 'chicken', 'christmas_tree', 'church', 'cinema', 'city_sunrise', 'city_sunset', 'clap', 'clapper', 'clock1', 'clock10', 'clock11', 'clock12', 'clock2', 'clock3', 'clock4', 'clock5', 'clock6', 'clock7', 'clock8', 'clock9', 'closed_umbrella', 'cloud', 'clubs', 'cn', 'cocktail', 'coffee', 'cold_sweat', 'computer', 'confounded', 'congratulations', 'construction', 'construction_worker', 'convenience_store', 'cool', 'cop', 'copyright', 'couple', 'couple_with_heart', 'couplekiss', 'cow', 'crossed_flags', 'crown', 'cry', 'cupid', 'currency_exchange', 'curry', 'cyclone', 'dancer', 'dancers', 'dango', 'dart', 'dash', 'de', 'department_store', 'diamonds', 'disappointed', 'dog', 'dolls', 'dolphin', 'dress', 'dvd', 'ear', 'ear_of_rice', 'egg', 'eggplant', 'egplant', 'eight_pointed_black_star', 'eight_spoked_asterisk', 'elephant', 'email', 'es', 'european_castle', 'exclamation', 'eyes', 'factory', 'fallen_leaf', 'fast_forward', 'fax', 'fearful', 'feelsgood', 'feet', 'ferris_wheel', 'finnadie', 'fire', 'fire_engine', 'fireworks', 'fish', 'fist', 'flags', 'flushed', 'football', 'fork_and_knife', 'fountain', 'four_leaf_clover', 'fr', 'fries', 'frog', 'fuelpump', 'gb', 'gem', 'gemini', 'ghost', 'gift', 'gift_heart', 'girl', 'goberserk', 'godmode', 'golf', 'green_heart', 'grey_exclamation', 'grey_question', 'grin', 'guardsman', 'guitar', 'gun', 'haircut', 'hamburger', 'hammer', 'hamster', 'hand', 'handbag', 'hankey', 'hash', 'headphones', 'heart', 'heart_decoration', 'heart_eyes', 'heartbeat', 'heartpulse', 'hearts', 'hibiscus', 'high_heel', 'horse', 'hospital', 'hotel', 'hotsprings', 'house', 'hurtrealbad', 'icecream', 'id', 'ideograph_advantage', 'imp', 'information_desk_person', 'iphone', 'it', 'jack_o_lantern', 'japanese_castle', 'joy', 'jp', 'key', 'kimono', 'kiss', 'kissing_face', 'kissing_heart', 'koala', 'koko', 'kr', 'leaves', 'leo', 'libra', 'lips', 'lipstick', 'lock', 'loop', 'loudspeaker', 'love_hotel', 'mag', 'mahjong', 'mailbox', 'man', 'man_with_gua_pi_mao', 'man_with_turban', 'maple_leaf', 'mask', 'massage', 'mega', 'memo', 'mens', 'metal', 'metro', 'microphone', 'minidisc', 'mobile_phone_off', 'moneybag', 'monkey', 'monkey_face', 'moon', 'mortar_board', 'mount_fuji', 'mouse', 'movie_camera', 'muscle', 'musical_note', 'nail_care', 'necktie', 'new', 'no_good', 'no_smoking', 'nose', 'notes', 'o', 'o2', 'ocean', 'octocat', 'octopus', 'oden', 'office', 'ok', 'ok_hand', 'ok_woman', 'older_man', 'older_woman', 'open_hands', 'ophiuchus', 'palm_tree', 'parking', 'part_alternation_mark', 'pencil', 'penguin', 'pensive', 'persevere', 'person_with_blond_hair', 'phone', 'pig', 'pill', 'pisces', 'plus1', 'point_down', 'point_left', 'point_right', 'point_up', 'point_up_2', 'police_car', 'poop', 'post_office', 'postbox', 'pray', 'princess', 'punch', 'purple_heart', 'question', 'rabbit', 'racehorse', 'radio', 'rage', 'rage1', 'rage2', 'rage3', 'rage4', 'rainbow', 'raised_hands', 'ramen', 'red_car', 'red_circle', 'registered', 'relaxed', 'relieved', 'restroom', 'rewind', 'ribbon', 'rice', 'rice_ball', 'rice_cracker', 'rice_scene', 'ring', 'rocket', 'roller_coaster', 'rose', 'ru', 'runner', 'sa', 'sagittarius', 'sailboat', 'sake', 'sandal', 'santa', 'satellite', 'satisfied', 'saxophone', 'school', 'school_satchel', 'scissors', 'scorpius', 'scream', 'seat', 'secret', 'shaved_ice', 'sheep', 'shell', 'ship', 'shipit', 'shirt', 'shit', 'shoe', 'signal_strength', 'six_pointed_star', 'ski', 'skull', 'sleepy', 'slot_machine', 'smile', 'smiley', 'smirk', 'smoking', 'snake', 'snowman', 'sob', 'soccer', 'space_invader', 'spades', 'spaghetti', 'sparkler', 'sparkles', 'speaker', 'speedboat', 'squirrel', 'star', 'star2', 'stars', 'station', 'statue_of_liberty', 'stew', 'strawberry', 'sunflower', 'sunny', 'sunrise', 'sunrise_over_mountains', 'surfer', 'sushi', 'suspect', 'sweat', 'sweat_drops', 'swimmer', 'syringe', 'tada', 'tangerine', 'taurus', 'taxi', 'tea', 'telephone', 'tennis', 'tent', 'thumbsdown', 'thumbsup', 'ticket', 'tiger', 'tm', 'toilet', 'tokyo_tower', 'tomato', 'tongue', 'top', 'tophat', 'traffic_light', 'train', 'trident', 'trophy', 'tropical_fish', 'truck', 'trumpet', 'tshirt', 'tulip', 'tv', 'u5272', 'u55b6', 'u6307', 'u6708', 'u6709', 'u6e80', 'u7121', 'u7533', 'u7a7a', 'umbrella', 'unamused', 'underage', 'unlock', 'up', 'us', 'v', 'vhs', 'vibration_mode', 'virgo', 'vs', 'walking', 'warning', 'watermelon', 'wave', 'wc', 'wedding', 'whale', 'wheelchair', 'white_square', 'wind_chime', 'wink', 'wink2', 'wolf', 'woman', 'womans_hat', 'womens', 'x', 'yellow_heart', 'zap', 'zzz'];\n\n}).call(this);\n\n})();\n//@ sourceURL=config/emoij");minispade.register('data/sponsors', "(function() {(function() {\n\n this.Travis.SPONSORS = [\n {\n type: 'platinum',\n url: \"http://www.wooga.com\",\n image: \"wooga-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://bendyworks.com\",\n image: \"bendyworks-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://cloudcontrol.com\",\n image: \"cloudcontrol-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://xing.de\",\n image: \"xing-205x130.png\"\n }, {\n type: 'gold',\n url: \"http://heroku.com\",\n image: \"heroku-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://soundcloud.com\",\n image: \"soundcloud-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://nedap.com\",\n image: \"nedap-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://mongohq.com\",\n image: \"mongohq-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://zweitag.de\",\n image: \"zweitag-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://kanbanery.com\",\n image: \"kanbanery-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://ticketevolution.com\",\n image: \"ticketevolution-205x60.jpg\"\n }, {\n type: 'gold',\n url: \"http://plan.io/travis\",\n image: \"planio-205x60.png\"\n }, {\n type: 'silver',\n link: \"Cobot : The one tool to run your coworking space \"\n }, {\n type: 'silver',\n link: \"JumpstartLab : We build developers \"\n }, {\n type: 'silver',\n link: \"Evil Martians : Agile Ruby on Rails development \"\n }, {\n type: 'silver',\n link: \"Zendesk : Love your helpdesk \"\n }, {\n type: 'silver',\n link: \"Stripe : Payments for developers \"\n }, {\n type: 'silver',\n link: \"Basho : We make Riak! \"\n }, {\n type: 'silver',\n link: \"Relevance : We deliver software solutions \"\n }, {\n type: 'silver',\n link: \"Mindmatters : Software für Menschen \"\n }, {\n type: 'silver',\n link: \"Amen : The best and worst of everything \"\n }, {\n type: 'silver',\n link: \"Site5 : Premium Web Hosting Solutions \"\n }, {\n type: 'silver',\n link: \"Crowd Interactive : Leading Rails consultancy in Mexico \"\n }, {\n type: 'silver',\n link: \"Atomic Object : Work with really smart people \"\n }, {\n type: 'silver',\n link: \"Codeminer : smart services for your startup \"\n }, {\n type: 'silver',\n link: \"Cloudant : grow into your data layer, not out of it \"\n }, {\n type: 'silver',\n link: \"Gidsy : Explore, organize & book unique things to do! \"\n }, {\n type: 'silver',\n link: \"5apps : Package & deploy HTML5 apps automatically \"\n }, {\n type: 'silver',\n link: \"Meltmedia : We are Interactive Superheroes \"\n }, {\n type: 'silver',\n link: \"Fingertips offers design and development services \"\n }, {\n type: 'silver',\n link: \"Engine Yard : Build epic apps, let us handle the rest \"\n }, {\n type: 'silver',\n link: \"Malwarebytes : Defeat Malware once and for all. \"\n }, {\n type: 'silver',\n link: \"Readmill : The best reading app on the iPad. \"\n }, {\n type: 'silver',\n link: \"Medidata : clinical tech improving quality of life \"\n }, {\n type: 'silver',\n link: \"ESM : Japan's best agile Ruby/Rails consultancy \"\n }, {\n type: 'silver',\n link: \"Twitter : instantly connects people everywhere \"\n }, {\n type: 'silver',\n link: \"AGiLE ANiMAL : we <3 Travis CI. \"\n }, {\n type: 'silver',\n link: \"Tupalo : Discover, review & share local businesses. \"\n }\n ];\n\n this.Travis.WORKERS = {\n \"jvm-otp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n },\n \"jvm-otp2.worker.travis-ci.org\": {\n name: \"Transloadit\",\n url: \"http://transloadit.com\"\n },\n \"ppp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://beta.travis-ci.com\"\n },\n \"ppp2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ppp3.worker.travis-ci.org\": {\n name: \"Alchemy CMS\",\n url: \"http://alchemy-cms.com/\"\n },\n \"rails1.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby1.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"ruby2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby3.worker.travis-ci.org\": {\n name: \"Railslove\",\n url: \"http://railslove.de\"\n },\n \"ruby4.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"spree.worker.travis-ci.org\": {\n name: \"Spree\",\n url: \"http://spreecommerce.com\"\n },\n \"staging.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=data/sponsors");minispade.register('ext/jquery', "(function() {(function() {\n\n $.fn.extend({\n outerHtml: function() {\n return $(this).wrap('
').parent().html();\n },\n outerElement: function() {\n return $($(this).outerHtml()).empty();\n },\n flash: function() {\n return Utils.flash(this);\n },\n unflash: function() {\n return Utils.unflash(this);\n },\n filterLog: function() {\n this.deansi();\n return this.foldLog();\n },\n deansi: function() {\n return this.html(Utils.deansi(this.html()));\n },\n foldLog: function() {\n return this.html(Utils.foldLog(this.html()));\n },\n unfoldLog: function() {\n return this.html(Utils.unfoldLog(this.html()));\n },\n updateTimes: function() {\n return Utils.updateTimes(this);\n },\n activateTab: function(tab) {\n return Utils.activateTab(this, tab);\n },\n timeInWords: function() {\n return $(this).each(function() {\n return $(this).text(Utils.timeInWords(parseInt($(this).attr('title'))));\n });\n },\n updateGithubStats: function(repo) {\n return Utils.updateGithubStats(repo, $(this));\n }\n });\n\n $.extend({\n isEmpty: function(obj) {\n if ($.isArray(obj)) {\n return !obj.length;\n } else if ($.isObject(obj)) {\n return !$.keys(obj).length;\n } else {\n return !obj;\n }\n },\n isObject: function(obj) {\n return Object.prototype.toString.call(obj) === '[object Object]';\n },\n keys: function(obj) {\n var keys;\n keys = [];\n $.each(obj, function(key) {\n return keys.push(key);\n });\n return keys;\n },\n values: function(obj) {\n var values;\n values = [];\n $.each(obj, function(key, value) {\n return values.push(value);\n });\n return values;\n },\n underscore: function(string) {\n return string[0].toLowerCase() + string.substring(1).replace(/([A-Z])?/g, function(match, chr) {\n if (chr) {\n return \"_\" + (chr.toUpperCase());\n } else {\n return '';\n }\n });\n },\n camelize: function(string, uppercase) {\n string = uppercase === false ? $.underscore(string) : $.capitalize(string);\n return string.replace(/_(.)?/g, function(match, chr) {\n if (chr) {\n return chr.toUpperCase();\n } else {\n return '';\n }\n });\n },\n capitalize: function(string) {\n return string[0].toUpperCase() + string.substring(1);\n },\n compact: function(object) {\n return $.grep(object, function(value) {\n return !!value;\n });\n },\n all: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return false;\n }\n i++;\n }\n return true;\n },\n detect: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return array[i];\n }\n i++;\n }\n },\n select: function(array, callback) {\n var args, i, result;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n result = [];\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n result.push(array[i]);\n }\n i++;\n }\n return result;\n },\n slice: function(object, key) {\n var keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) > -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n only: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) !== -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n except: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) === -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n intersect: function(array, other) {\n return array.filter(function(element) {\n return other.indexOf(element) !== -1;\n });\n },\n map: function(elems, callback, arg) {\n var i, isArray, key, length, ret, value;\n value = void 0;\n key = void 0;\n ret = [];\n i = 0;\n length = elems.length;\n isArray = elems instanceof jQuery || length !== void 0 && typeof length === 'number' && (length > 0 && elems[0] && elems[length - 1]) || length === 0 || jQuery.isArray(elems);\n if (isArray) {\n while (i < length) {\n value = callback(elems[i], i, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n i++;\n }\n } else {\n for (key in elems) {\n value = callback(elems[key], key, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n }\n }\n return ret.concat.apply([], ret);\n },\n shuffle: function(array) {\n var current, tmp, top;\n array = array.slice();\n top = array.length;\n while (top && --top) {\n current = Math.floor(Math.random() * (top + 1));\n tmp = array[current];\n array[current] = array[top];\n array[top] = tmp;\n }\n return array;\n },\n truncate: function(string, length) {\n if (string.length > length) {\n return string.trim().substring(0, length) + '...';\n } else {\n return string;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=ext/jquery");minispade.register('travis/ajax', "(function() {(function() {\n\n jQuery.support.cors = true;\n\n this.Travis.ajax = Em.Object.create({\n DEFAULT_OPTIONS: {\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n }\n },\n get: function(url, callback) {\n return this.ajax(url, 'get', {\n success: callback\n });\n },\n post: function(url, data, callback) {\n return this.ajax(url, 'post', {\n data: data,\n success: callback\n });\n },\n ajax: function(url, method, options) {\n var endpoint, success, token, _base,\n _this = this;\n endpoint = Travis.config.api_endpoint || '';\n options = options || {};\n if (token = sessionStorage.getItem('travis.token')) {\n options.headers || (options.headers = {});\n (_base = options.headers)['Authorization'] || (_base['Authorization'] = \"token \" + token);\n }\n options.url = \"\" + endpoint + url;\n options.type = method;\n options.dataType = 'json';\n options.contentType = 'application/json; charset=utf-8';\n options.context = this;\n if (options.data && method !== 'GET' && method !== 'get') {\n options.data = JSON.stringify(options.data);\n }\n success = options.success || (function() {});\n options.success = function(data) {\n var _ref;\n if (((_ref = Travis.app) != null ? _ref.router : void 0) && data.flash) {\n Travis.app.router.flashController.pushObjects(data.flash);\n }\n delete data.flash;\n return success.call(_this, data);\n };\n options.error = function(data) {\n if (data.flash) {\n return Travis.app.router.flashController.pushObject(data.flash);\n }\n };\n return $.ajax($.extend(options, Travis.ajax.DEFAULT_OPTIONS));\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ajax");minispade.register('travis/expandable_record_array', "(function() {(function() {\n\n Travis.ExpandableRecordArray = DS.RecordArray.extend({\n isLoaded: false,\n isLoading: false,\n load: function(array) {\n var observer, self;\n this.set('isLoading', true);\n self = this;\n observer = function() {\n var content;\n if (this.get('isLoaded')) {\n content = self.get('content');\n array.removeObserver('isLoaded', observer);\n array.forEach(function(record) {\n return self.pushObject(record);\n });\n self.set('isLoading', false);\n return self.set('isLoaded', true);\n }\n };\n return array.addObserver('isLoaded', observer);\n },\n pushObject: function(record) {\n var clientId, id, ids;\n ids = this.get('content');\n id = record.get('id');\n clientId = record.get('clientId');\n if (ids.contains(clientId)) {\n return;\n }\n return ids.pushObject(clientId);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/expandable_record_array");minispade.register('travis/limited_array', "(function() {(function() {\n\n Travis.LimitedArray = Em.ArrayProxy.extend({\n limit: 10,\n init: function() {\n return this._super.apply(this, arguments);\n },\n arrangedContent: (function() {\n var content;\n if (content = this.get('content')) {\n return content.slice(0, this.get('limit'));\n }\n }).property('content'),\n contentArrayDidChange: function(array, index, removedCount, addedCount) {\n var addedObjects, arrangedContent, length, limit, object, _i, _len;\n this._super.apply(this, arguments);\n if (addedCount > 0) {\n addedObjects = array.slice(index, index + addedCount);\n arrangedContent = this.get('arrangedContent');\n for (_i = 0, _len = addedObjects.length; _i < _len; _i++) {\n object = addedObjects[_i];\n arrangedContent.unshiftObject(object);\n }\n limit = this.get('limit');\n length = arrangedContent.get('length');\n if (length > limit) {\n return arrangedContent.replace(limit, length - limit);\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/limited_array");minispade.register('travis/location', "(function() {(function() {\n\n Travis.Location = Ember.HistoryLocation.extend({\n onUpdateURL: function(callback) {\n var guid;\n guid = Ember.guidFor(this);\n return Ember.$(window).bind('popstate.ember-location-' + guid, function(e) {\n return callback(location.pathname + location.hash);\n });\n },\n getURL: function() {\n var location;\n location = this.get('location');\n return location.pathname + location.hash;\n }\n });\n\n Ember.Location.implementations['travis'] = Travis.Location;\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/location");minispade.register('travis/log', "(function() {(function() {\n\n this.Travis.Log = {\n FOLDS: {\n schema: /(\\$ (?:bundle exec )?rake( db:create)? db:schema:load[\\s\\S]*?-- assume_migrated_upto_version[\\s\\S]*?<\\/p>\\n.*<\\/p>)/g,\n migrate: /(\\$ (?:bundle exec )?rake( db:create)? db:migrate[\\s\\S]*== +\\w+: migrated \\(.*\\) =+)/g,\n bundle: /(\\$ bundle install.*<\\/p>\\n((Updating|Using|Installing|Fetching|remote:|Receiving|Resolving).*?<\\/p>\\n|<\\/p>\\n)*)/g,\n exec: /([\\/\\w]*.rvm\\/rubies\\/[\\S]*?\\/(ruby|rbx|jruby) .*?<\\/p>)/g\n },\n filter: function(log, path) {\n log = this.escape(log);\n log = this.deansi(log);\n log = log.replace(/\\r/g, '');\n log = this.number(log, path);\n log = this.fold(log);\n log = log.replace(/\\n/g, '');\n return log;\n },\n stripPaths: function(log) {\n return log.replace(/\\/home\\/vagrant\\/builds(\\/[^\\/\\n]+){2}\\//g, '');\n },\n escape: function(log) {\n return Handlebars.Utils.escapeExpression(log);\n },\n escapeRuby: function(log) {\n return log.replace(/#<(\\w+.*?)>/, '#<$1>');\n },\n number: function(log, path) {\n var result;\n path = \"\" + path + \"/\";\n result = '';\n $.each(log.trim().split('\\n'), function(ix, line) {\n var number, pathWithNumber;\n number = ix + 1;\n pathWithNumber = \"\" + path + \"#L\" + number;\n return result += '%@ %@
\\n'.fmt(pathWithNumber, number, number, number, line);\n });\n return result.trim();\n },\n deansi: function(log) {\n var ansi, text;\n log = log.replace(/\\r\\r/g, '\\r').replace(/\\033\\[K\\r/g, '\\r').replace(/^.*\\r(?!$)/gm, '').replace(/\u001b\\[2K/g, '').replace(/\\033\\(B/g, \"\");\n ansi = ansiparse(log);\n text = '';\n ansi.forEach(function(part) {\n var classes;\n classes = [];\n part.foreground && classes.push(part.foreground);\n part.background && classes.push('bg-' + part.background);\n part.bold && classes.push('bold');\n part.italic && classes.push('italic');\n return text += (classes.length ? '' + part.text + ' ' : part.text);\n });\n return text.replace(/\\033/g, '');\n },\n fold: function(log) {\n log = this.unfold(log);\n $.each(Travis.Log.FOLDS, function(name, pattern) {\n return log = log.replace(pattern, function() {\n return '' + arguments[1].trim() + '
';\n });\n });\n return log;\n },\n unfold: function(log) {\n return log.replace(/([\\s\\S]*?)<\\/div>/g, '$1\\n');\n },\n location: function() {\n return window.location.hash;\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/log");minispade.register('travis/model', "(function() {(function() {\n\n this.Travis.Model = DS.Model.extend({\n primaryKey: 'id',\n id: DS.attr('number'),\n init: function() {\n this.loadedAttributes = [];\n return this._super.apply(this, arguments);\n },\n get: function(name) {\n if (this.constructor.isAttribute(name) && this.get('incomplete') && !this.isAttributeLoaded(name)) {\n this.loadTheRest();\n }\n return this._super.apply(this, arguments);\n },\n refresh: function() {\n var id, store;\n if (id = this.get('id')) {\n store = this.get('store');\n return store.adapter.find(store, this.constructor, id);\n }\n },\n update: function(attrs) {\n var _this = this;\n $.each(attrs, function(key, value) {\n if (key !== 'id') {\n return _this.set(key, value);\n }\n });\n return this;\n },\n isAttributeLoaded: function(name) {\n return this.loadedAttributes.contains(name);\n },\n isComplete: (function() {\n if (this.get('incomplete')) {\n this.loadTheRest();\n return false;\n } else {\n this.set('isCompleting', false);\n return this.get('isLoaded');\n }\n }).property('incomplete', 'isLoaded'),\n loadTheRest: function() {\n if (this.get('isCompleting')) {\n return;\n }\n this.set('isCompleting', true);\n return this.refresh();\n },\n select: function() {\n return this.constructor.select(this.get('id'));\n }\n });\n\n this.Travis.Model.reopenClass({\n find: function() {\n if (arguments.length === 0) {\n return Travis.app.store.findAll(this);\n } else {\n return this._super.apply(this, arguments);\n }\n },\n filter: function(callback) {\n return Travis.app.store.filter(this, callback);\n },\n load: function(attrs) {\n return Travis.app.store.load(this, attrs);\n },\n select: function(id) {\n return this.find().forEach(function(record) {\n return record.set('selected', record.get('id') === id);\n });\n },\n buildURL: function(suffix) {\n var base, url;\n base = this.url || this.pluralName();\n Ember.assert('Base URL (' + base + ') must not start with slash', !base || base.toString().charAt(0) !== '/');\n Ember.assert('URL suffix (' + suffix + ') must not start with slash', !suffix || suffix.toString().charAt(0) !== '/');\n url = [base];\n if (suffix !== void 0) {\n url.push(suffix);\n }\n return url.join('/');\n },\n singularName: function() {\n var name, parts;\n parts = this.toString().split('.');\n name = parts[parts.length - 1];\n return name.replace(/([A-Z])/g, '_$1').toLowerCase().slice(1);\n },\n pluralName: function() {\n return Travis.app.store.adapter.pluralize(this.singularName());\n },\n isAttribute: function(name) {\n if (!this.attributesSaved) {\n this._saveAttributes();\n }\n return this.cachedAttributes.contains(name);\n },\n _saveAttributes: function() {\n var cachedAttributes;\n this.attributesSaved = true;\n cachedAttributes = [];\n this.eachComputedProperty(function(name, meta) {\n if (meta.isAttribute) {\n return cachedAttributes.pushObject(name);\n }\n });\n return this.cachedAttributes = cachedAttributes;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/model");minispade.register('travis/ticker', "(function() {(function() {\n\n this.Travis.Ticker = Ember.Object.extend({\n init: function() {\n if (this.get('interval') !== -1) {\n return this.schedule();\n }\n },\n tick: function() {\n var context, target, targets, _i, _len;\n context = this.get('context');\n targets = this.get('targets') || [this.get('target')];\n for (_i = 0, _len = targets.length; _i < _len; _i++) {\n target = targets[_i];\n if (context) {\n target = context.get(target);\n }\n if (target) {\n target.tick();\n }\n }\n return this.schedule();\n },\n schedule: function() {\n var _this = this;\n return Ember.run.later((function() {\n return _this.tick();\n }), this.get('interval') || Travis.app.TICK_INTERVAL);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ticker");minispade.register('travis', "(function() {(function() {\nminispade.require('ext/jquery');\nminispade.require('ext/ember/namespace');\n\n this.Travis = Em.Namespace.create({\n config: {\n api_endpoint: $('meta[rel=\"travis.api_endpoint\"]').attr('href'),\n pusher_key: $('meta[name=\"travis.pusher_key\"]').attr('value')\n },\n CONFIG_KEYS: ['rvm', 'gemfile', 'env', 'jdk', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala'],\n ROUTES: {\n 'profile/:login/me': ['profile', 'user'],\n 'profile/:login': ['profile', 'hooks'],\n 'profile': ['profile', 'hooks'],\n 'stats': ['stats', 'show'],\n ':owner/:name/jobs/:id/:line': ['home', 'job'],\n ':owner/:name/jobs/:id': ['home', 'job'],\n ':owner/:name/builds/:id': ['home', 'build'],\n ':owner/:name/builds': ['home', 'builds'],\n ':owner/:name/pull_requests': ['home', 'pullRequests'],\n ':owner/:name/branches': ['home', 'branches'],\n ':owner/:name': ['home', 'current'],\n '': ['home', 'index'],\n '#': ['home', 'index']\n },\n QUEUES: [\n {\n name: 'common',\n display: 'Common'\n }, {\n name: 'php',\n display: 'PHP, Perl and Python'\n }, {\n name: 'node_js',\n display: 'Node.js'\n }, {\n name: 'jvmotp',\n display: 'JVM and Erlang'\n }, {\n name: 'rails',\n display: 'Rails'\n }, {\n name: 'spree',\n display: 'Spree'\n }\n ],\n INTERVALS: {\n sponsors: -1,\n times: -1,\n updateTimes: 1000\n },\n setLocale: function(locale) {\n if (!locale) {\n return;\n }\n I18n.locale = locale;\n return localStorage.setItem('travis.config.locale', locale);\n },\n run: function(attrs) {\n if (location.hash.slice(0, 2) === '#!') {\n location.href = location.href.replace('#!/', '');\n }\n this.setLocale(localStorage.getItem('travis.config.locale'));\n return Ember.run.next(this, function() {\n var app,\n _this = this;\n app = Travis.App.create(attrs || {});\n $.each(Travis, function(key, value) {\n if (value && value.isClass && key !== 'constructor') {\n return app[key] = value;\n }\n });\n this.app = app;\n this.store = app.store;\n return $(function() {\n return app.initialize();\n });\n });\n }\n });\nminispade.require('travis/ajax');\nminispade.require('app');\n\n}).call(this);\n\n})();\n//@ sourceURL=travis");minispade.register('templates', "(function() {\nEmber.TEMPLATES['application'] = Ember.Handlebars.compile(\"{{outlet}}\\n\");\n\nEmber.TEMPLATES['auth/signin'] = Ember.Handlebars.compile(\"{{#if view.signingIn}}\\n
Signing in ... \\n
\\n Trying to authenticate with GitHub.\\n
\\n{{else}}\\n
Sign in \\n
\\n Please sign in with GitHub. \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/list'] = Ember.Handlebars.compile(\"{{#if builds.isLoaded}}\\n
\\n \\n \\n {{t builds.name}} \\n {{t builds.commit}} \\n {{t builds.message}} \\n {{t builds.duration}} \\n {{t builds.finished_at}} \\n \\n \\n\\n \\n {{#each build in builds}}\\n {{#view Travis.BuildsItemView contextBinding=\\\"build\\\"}}\\n \\n \\n {{#if id}}\\n \\n {{number}}\\n \\n {{/if}}\\n \\n \\n \\n {{formatCommit commit}}\\n \\n \\n \\n {{{formatMessage commit.message short=\\\"true\\\"}}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n
\\n {{view view.ShowMoreButton}}\\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if loading}}\\n
Loading \\n {{else}}\\n
\\n \\n
{{t builds.name}} \\n
\\n \\n {{#if build.id}}\\n {{build.number}} \\n {{/if}}\\n \\n
{{t builds.finished_at}} \\n
{{formatTime build.finishedAt}} \\n
{{t builds.duration}} \\n
{{formatDuration build.duration}} \\n
\\n\\n \\n\\n {{t builds.message}} \\n {{{formatMessage build.commit.message}}} \\n\\n {{#unless isMatrix}}\\n {{t builds.config}} \\n {{formatConfig build.config}} \\n {{/unless}}\\n \\n\\n {{#if build.isMatrix}}\\n {{view Travis.JobsView jobsBinding=\\\"build.requiredJobs\\\" required=\\\"true\\\"}}\\n {{view Travis.JobsView jobsBinding=\\\"build.allowedFailureJobs\\\"}}\\n {{else}}\\n {{view Travis.LogView contextBinding=\\\"build.jobs.firstObject\\\"}}\\n {{/if}}\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['events/list'] = Ember.Handlebars.compile(\"{{#if view.events.isLoaded}}\\n
\\n \\n \\n Time \\n Event \\n Result \\n Message \\n \\n \\n\\n \\n {{#each event in view.events}}\\n {{#view Travis.EventsItemView contextBinding=\\\"event\\\"}}\\n \\n {{formatTime createdAt}}\\n \\n \\n {{event.event_}}\\n \\n \\n {{event.result}}\\n \\n \\n {{event.message}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\\n\");\n\nEmber.TEMPLATES['jobs/list'] = Ember.Handlebars.compile(\"{{#if view.jobs.length}}\\n {{#if view.required}}\\n
\\n \\n {{t jobs.build_matrix}}\\n \\n {{else}}\\n \\n \\n {{t jobs.allowed_failures}}\\n \\n \\n {{/if}}\\n \\n \\n {{#each key in view.build.configKeys}}\\n {{key}} \\n {{/each}}\\n \\n \\n \\n {{#each job in view.jobs}}\\n {{#view Travis.JobsItemView contextBinding=\\\"job\\\"}}\\n \\n \\n {{#if job.id}}\\n {{number}} \\n {{/if}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{#each value in configValues}}\\n {{value}} \\n {{/each}}\\n {{/view}}\\n {{/each}}\\n \\n
\\n\\n {{#unless view.required}}\\n \\n {{/unless}}\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/log'] = Ember.Handlebars.compile(\"{{view.logSubscriber}}\\n\\n{{#if log.isLoaded}}\\n \\n \\n Follow logs \\n {{{formatLog log.body repo=\\\"repository\\\" item=\\\"parentView.currentItem\\\"}}} \\n\\n {{#if sponsor.name}}\\n \\n {{/if}}\\n\\n To top \\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if job.isComplete}}\\n \\n
\\n \\n
Job \\n
\\n \\n {{#if job.id}}\\n {{job.number}} \\n {{/if}}\\n \\n
{{t jobs.finished_at}} \\n
{{formatTime job.finishedAt}} \\n
{{t jobs.duration}} \\n
{{formatDuration job.duration}} \\n
\\n\\n \\n\\n {{t jobs.message}} \\n {{formatMessage commit.message}} \\n {{t jobs.config}} \\n {{formatConfig job.config}} \\n \\n\\n {{view Travis.LogView contextBinding=\\\"job\\\"}}}\\n
\\n {{else}}\\n \\n Loading \\n
\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['layouts/flash'] = Ember.Handlebars.compile(\"{{#each flash in controller}}\\n {{#view Travis.FlashItemView flashBinding=\\\"flash\\\"}}\\n {{view.message}}
\\n \\n {{/view}}\\n{{/each}}\\n\");\n\nEmber.TEMPLATES['layouts/home'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n {{outlet right}}\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/profile'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n
\\n\\n
\\n\\n
\\n
Getting started? \\n
\\n Please read our guide .\\n It will only take a few minutes :)\\n
\\n
\\n You can find detailled docs on our about site.\\n
\\n
\\n If you need help please don't hesitate to join\\n #travis on irc.freenode.net\\n or our mailinglist .\\n
\\n
\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/sidebar'] = Ember.Handlebars.compile(\"\\n\\n\\n\\n{{view view.DecksView}}\\n{{view view.WorkersView}}\\n{{view view.QueuesView}}\\n{{view view.LinksView}}\\n\\n\\n
{{t layouts.about.join}} \\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/simple'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n
\\n\\n\");\n\nEmber.TEMPLATES['layouts/top'] = Ember.Handlebars.compile(\"\\n Travis \\n \\n\\n\\n\");\n\nEmber.TEMPLATES['profile/accounts'] = Ember.Handlebars.compile(\"\\n
\\n\\n\\n\\n\\n {{#collection Travis.AccountsListView contentBinding=\\\"controller\\\"}}\\n
{{view.name}} \\n
\\n Repositories: \\n {{view.account.reposCount}} \\n
\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['profile/show'] = Ember.Handlebars.compile(\"{{view.name}} \\n\\n{{view Travis.ProfileTabsView}}\\n\\n\\n {{outlet pane}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n {{#if view.displayUser}}\\n \\n \\n \\n {{/if}}\\n \\n\");\n\nEmber.TEMPLATES['profile/tabs/hooks'] = Ember.Handlebars.compile(\"\\n {{{t profiles.show.message.your_repos}}}\\n
\\n\\n{{#if hooks.isLoaded}}\\n {{#if user.isSyncing}}\\n \\n Please wait while we sync from GitHub \\n
\\n {{else}}\\n \\n Last synchronized from GitHub: {{formatTime user.syncedAt}}\\n \\n Sync now\\n \\n
\\n\\n \\n {{#each hook in hooks}}\\n \\n {{hook.slug}} \\n {{hook.description}}
\\n\\n \\n \\n {{else}}\\n \\n You do not seem to have any repositories that we could sync.\\n \\n {{/each}}\\n \\n {{/if}}\\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs/user'] = Ember.Handlebars.compile(\" \\n\\n\\n \\n {{t profiles.show.github}}:\\n \\n \\n {{user.login}} \\n \\n \\n {{t profiles.show.email}}:\\n \\n \\n {{user.email}}\\n \\n \\n {{t profiles.show.token}}:\\n \\n \\n {{user.token}}\\n \\n \\n\\n\\n\\n\\n\");\n\nEmber.TEMPLATES['queues/list'] = Ember.Handlebars.compile(\"\\n{{#each queue in controller}}\\n \\n {{t queue}}: {{queue.name}} \\n \\n \\n{{/each}}\\n \\n\");\n\nEmber.TEMPLATES['repos/list'] = Ember.Handlebars.compile(\"\\n {{view Ember.TextField valueBinding=\\\"controller.search\\\"}}\\n
\\n\\n{{view Travis.ReposListTabsView}}\\n\\n \\n\\n\\n {{#collection Travis.ReposListView contentBinding=\\\"controller\\\"}}\\n {{#with view.repo}}\\n
\\n
\\n {{#if slug}}\\n
{{slug}} \\n {{/if}}\\n
\\n {{#if lastBuildId}}\\n
{{lastBuildNumber}} \\n {{/if}}\\n\\n
\\n {{t repositories.duration}}: \\n {{formatDuration lastBuildDuration}} ,\\n {{t repositories.finished_at}}: \\n {{formatTime lastBuildFinishedAt}} \\n
\\n\\n
\\n\\n {{#if description}}\\n
\\n {{/if}}\\n {{/with}}\\n {{else}}\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['repos/list/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\\n\");\n\nEmber.TEMPLATES['repos/show'] = Ember.Handlebars.compile(\"\\n {{#if view.isEmpty}}\\n {{view Travis.ReposEmptyView}}\\n {{else}}\\n {{#if view.repo.isComplete}}\\n {{#with view.repo}}\\n
\\n\\n
{{description}}
\\n\\n
\\n\\n {{view Travis.RepoShowTabsView}}\\n {{view Travis.RepoShowToolsView}}\\n {{/with}}\\n\\n {{else}}\\n
Loading \\n {{/if}}\\n\\n
\\n {{outlet pane}}\\n
\\n {{/if}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['repos/show/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n {{#if view.repo.slug}}\\n \\n Events\\n \\n {{/if}}\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\");\n\nEmber.TEMPLATES['repos/show/tools'] = Ember.Handlebars.compile(\"\\n\\n\\n\");\n\nEmber.TEMPLATES['sponsors/decks'] = Ember.Handlebars.compile(\"{{t layouts.application.sponsers}} \\n\\n\\n\\n\\n \\n {{{t layouts.application.sponsors_link}}}\\n \\n
\\n\");\n\nEmber.TEMPLATES['sponsors/links'] = Ember.Handlebars.compile(\"\\n\\n\");\n\nEmber.TEMPLATES['stats/show'] = Ember.Handlebars.compile(\"Sorry \\nStatistics are disabled for now.
\\n We're looking into a solution. If you want to help, please ping us!
\\n\");\n\nEmber.TEMPLATES['workers/list'] = Ember.Handlebars.compile(\"{{#view Travis.WorkersView}}\\n \\n {{t workers}}\\n \\n \\n \\n {{#each group in controller.groups}}\\n {{#view Travis.WorkersListView}}\\n \\n \\n {{group.firstObject.host}}\\n \\n \\n {{#each worker in group}}\\n {{#view Travis.WorkersItemView workerBinding=\\\"worker\\\"}}\\n \\n
\\n {{#if worker.isWorking}}\\n {{#if worker.job_id}}\\n \\n {{view.display}}\\n \\n {{/if}}\\n {{else}}\\n {{view.display}}\\n {{/if}}\\n \\n {{/view}}\\n {{/each}}\\n \\n \\n {{/view}}\\n {{else}}\\n No workers\\n {{/each}}\\n \\n{{/view}}\\n\");\n\n})();\n//@ sourceURL=templates");minispade.register('config/locales', "(function() {window.I18n = window.I18n || {}\nwindow.I18n.translations = {\"ca\":{\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"pt-BR\":\"português brasileiro\",\"ru\":\"Русский\"}},\"en\":{\"errors\":{\"messages\":{\"not_found\":\"not found\",\"already_confirmed\":\"was already confirmed\",\"not_locked\":\"was not locked\"}},\"devise\":{\"failure\":{\"unauthenticated\":\"You need to sign in or sign up before continuing.\",\"unconfirmed\":\"You have to confirm your account before continuing.\",\"locked\":\"Your account is locked.\",\"invalid\":\"Invalid email or password.\",\"invalid_token\":\"Invalid authentication token.\",\"timeout\":\"Your session expired, please sign in again to continue.\",\"inactive\":\"Your account was not activated yet.\"},\"sessions\":{\"signed_in\":\"Signed in successfully.\",\"signed_out\":\"Signed out successfully.\"},\"passwords\":{\"send_instructions\":\"You will receive an email with instructions about how to reset your password in a few minutes.\",\"updated\":\"Your password was changed successfully. You are now signed in.\"},\"confirmations\":{\"send_instructions\":\"You will receive an email with instructions about how to confirm your account in a few minutes.\",\"confirmed\":\"Your account was successfully confirmed. You are now signed in.\"},\"registrations\":{\"signed_up\":\"You have signed up successfully. If enabled, a confirmation was sent to your e-mail.\",\"updated\":\"You updated your account successfully.\",\"destroyed\":\"Bye! Your account was successfully cancelled. We hope to see you again soon.\"},\"unlocks\":{\"send_instructions\":\"You will receive an email with instructions about how to unlock your account in a few minutes.\",\"unlocked\":\"Your account was successfully unlocked. You are now signed in.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Confirmation instructions\"},\"reset_password_instructions\":{\"subject\":\"Reset password instructions\"},\"unlock_instructions\":{\"subject\":\"Unlock Instructions\"}}},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hour\",\"other\":\"%{count} hours\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} second\",\"other\":\"%{count} seconds\"}}},\"workers\":\"Workers\",\"queue\":\"Queue\",\"no_job\":\"There are no jobs\",\"repositories\":{\"branch\":\"Branch\",\"image_url\":\"Image URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"tabs\":{\"current\":\"Current\",\"build_history\":\"Build History\",\"branches\":\"Branch Summary\",\"pull_requests\":\"Pull Requests\",\"build\":\"Build\",\"job\":\"Job\"}},\"build\":{\"job\":\"Job\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"show_more\":\"Show more\"},\"layouts\":{\"top\":{\"home\":\"Home\",\"blog\":\"Blog\",\"docs\":\"Docs\",\"stats\":\"Stats\",\"github_login\":\"Sign in with Github\",\"profile\":\"Profile\",\"sign_out\":\"Sign Out\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Recent\",\"search\":\"Search\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"See all of our amazing sponsors →\",\"my_repositories\":\"My Repositories\"},\"about\":{\"alpha\":\"This stuff is alpha.\",\"messages\":{\"alpha\":\"Please do not consider this a stable service. We're still far from that! More info here. \"},\"join\":\"Join us and help!\",\"mailing_list\":\"Mailing List\",\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Author\",\"build\":\"Build\",\"build_matrix\":\"Build Matrix\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Compare\",\"config\":\"Config\",\"duration\":\"Duration\",\"finished_at\":\"Finished at\",\"job\":\"Job\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Flick the switches below to turn on the Travis service hook for your projects, then push to GitHub.\",\"config\":\"how to configure custom build options\"},\"messages\":{\"notice\":\"To get started, please read our Getting Started guide .\\n It will only take a couple of minutes. \"},\"token\":\"Token\",\"your_repos\":\"Your Repositories\",\"update\":\"Update\",\"update_locale\":\"Update\",\"your_locale\":\"Your Locale\"}},\"statistics\":{\"index\":{\"count\":\"Count\",\"repo_growth\":\"Repository Growth\",\"total_projects\":\"Total Projects/Repositories\",\"build_count\":\"Build Count\",\"last_month\":\"last month\",\"total_builds\":\"Total Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"es\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"workers\":\"Procesos\",\"queue\":\"Cola\",\"no_job\":\"No hay trabajos\",\"repositories\":{\"branch\":\"Rama\",\"image_url\":\"Imagen URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"tabs\":{\"current\":\"Actual\",\"build_history\":\"Histórico\",\"branches\":\"Ramas\",\"build\":\"Builds\",\"job\":\"Trabajo\"}},\"build\":{\"job\":\"Trabajo\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"sponsored_by\":\"Patrocinado por\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"layouts\":{\"top\":{\"home\":\"Inicio\",\"blog\":\"Blog\",\"docs\":\"Documentación\",\"stats\":\"Estadísticas\",\"github_login\":\"Iniciar sesión con Github\",\"profile\":\"Perfil\",\"sign_out\":\"Desconectar\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Hazme un Fork en Github\",\"recent\":\"Reciente\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Ver todos nuestros patrocinadores →\",\"my_repositories\":\"Mis Repositorios\"},\"about\":{\"alpha\":\"Esto es alpha.\",\"messages\":{\"alpha\":\"Por favor no considereis esto un servicio estable. Estamos estamos aún lejos de ello! Más información aquí. \"},\"join\":\"Únetenos y ayudanos!\",\"mailing_list\":\"Lista de Correos\",\"repository\":\"Repositorio\",\"twitter\":\"Twitter\"}},\"profiles\":{\"show\":{\"email\":\"Correo electrónico\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Activa los interruptores para inicial el Travis service hook para tus proyectos, y haz un Push en GitHub. \\n Para probar varias versiones de ruby, mira\",\"config\":\"como configurar tus propias opciones para el Build\"},\"messages\":{\"notice\":\"Para comenzar, por favor lee nuestra Guía de Inicio .\\n Solo tomará unos pocos minutos. \"},\"token\":\"Token\",\"your_repos\":\"Tus repositorios\",\"update\":\"Actualizar\",\"update_locale\":\"Actualizar\",\"your_locale\":\"Tu Idioma\"}},\"statistics\":{\"index\":{\"count\":\"Número\",\"repo_growth\":\"Crecimiento de Repositorios\",\"total_projects\":\"Total de Proyectos/Repositorios\",\"build_count\":\"Número de Builds\",\"last_month\":\"mes anterior\",\"total_builds\":\"Total de Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"fr\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} heure\",\"other\":\"%{count} heures\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} secondes\"}}},\"workers\":\"Processus\",\"queue\":\"File\",\"no_job\":\"Pas de tâches\",\"repositories\":{\"branch\":\"Branche\",\"image_url\":\"Image\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"tabs\":{\"current\":\"Actuel\",\"build_history\":\"Historique des tâches\",\"branches\":\"Résumé des branches\",\"build\":\"Construction\",\"job\":\"Tâche\"}},\"build\":{\"job\":\"Tâche\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"builds\":{\"name\":\"Version\",\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"layouts\":{\"top\":{\"home\":\"Accueil\",\"blog\":\"Blog\",\"docs\":\"Documentation\",\"stats\":\"Statistiques\",\"github_login\":\"Connection Github\",\"profile\":\"Profil\",\"sign_out\":\"Déconnection\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Faites un Fork sur Github\",\"recent\":\"Récent\",\"search\":\"Chercher\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Voir tous nos extraordinaire sponsors →\",\"my_repositories\":\"Mes dépôts\"},\"about\":{\"alpha\":\"Ceci est en alpha.\",\"messages\":{\"alpha\":\"S'il vous plaît ne considérez pas ce service comme étant stable. Nous sommes loin de ça! Plus d'infos ici. \"},\"join\":\"Joignez-vous à nous et aidez-nous!\",\"mailing_list\":\"Liste de distribution\",\"repository\":\"Dépôt\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Version\",\"build_matrix\":\"Matrice des versions\",\"commit\":\"Commit\",\"committer\":\"Committeur\",\"compare\":\"Comparer\",\"config\":\"Config\",\"duration\":\"Durée\",\"finished_at\":\"Terminé à\",\"job\":\"Tâche\",\"log\":\"Journal\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"message\":{\"your_repos\":\"Utilisez les boutons ci-dessous pour activer Travis sur vos projets puis déployez sur GitHub. \\nPour tester sur plus de versions de ruby, voir\",\"config\":\"comment configurer des options de version personnalisées\"},\"messages\":{\"notice\":\"Pour commencer, veuillez lire notre guide de démarrage .\\n Cela ne vous prendra que quelques minutes. \"},\"token\":\"Jeton\",\"your_repos\":\"Vos dépôts\",\"email\":\"Courriel\",\"update\":\"Modifier\",\"update_locale\":\"Modifier\",\"your_locale\":\"Votre langue\"}},\"statistics\":{\"index\":{\"count\":\"Décompte\",\"repo_growth\":\"Croissance de dépôt\",\"total_projects\":\"Total des projets/dépôts\",\"build_count\":\"Décompte des versions\",\"last_month\":\"mois dernier\",\"total_builds\":\"Total des versions\"}},\"admin\":{\"actions\":{\"create\":\"créer\",\"created\":\"créé\",\"delete\":\"supprimer\",\"deleted\":\"supprimé\",\"update\":\"mise à jour\",\"updated\":\"mis à jour\"},\"credentials\":{\"log_out\":\"Déconnection\"},\"delete\":{\"confirmation\":\"Oui, je suis sure\",\"flash_confirmation\":\"%{name} a été détruit avec succès\"},\"flash\":{\"error\":\"%{name} n'a pas pu être %{action}\",\"noaction\":\"Aucune action n'a été entreprise\",\"successful\":\"%{name} a réussi à %{action}\"},\"history\":{\"name\":\"Historique\",\"no_activity\":\"Aucune activité\",\"page_name\":\"Historique pour %{name}\"},\"list\":{\"add_new\":\"Ajouter un nouveau\",\"delete_action\":\"Supprimer\",\"delete_selected\":\"Supprimer la sélection\",\"edit_action\":\"Modifier\",\"search\":\"Rechercher\",\"select\":\"Sélectionner le %{name} à modifier\",\"select_action\":\"Sélectionner\",\"show_all\":\"Montrer tout\"},\"new\":{\"basic_info\":\"Information de base\",\"cancel\":\"Annuler\",\"chosen\":\"%{name} choisi\",\"chose_all\":\"Choisir tout\",\"clear_all\":\"Déselectionner tout\",\"many_chars\":\"caractères ou moins\",\"one_char\":\"caractère.\",\"optional\":\"Optionnel\",\"required\":\"Requis\",\"save\":\"Sauvegarder\",\"save_and_add_another\":\"Sauvegarder et en ajouter un autre\",\"save_and_edit\":\"Sauvegarder et modifier\",\"select_choice\":\"Faites vos choix et cliquez\"},\"dashboard\":{\"add_new\":\"Ajouter un nouveau\",\"last_used\":\"Dernière utilisation\",\"model_name\":\"Nom du modèle\",\"modify\":\"Modification\",\"name\":\"Tableau de bord\",\"pagename\":\"Administration du site\",\"records\":\"Enregistrements\",\"show\":\"Voir\",\"ago\":\"plus tôt\"}},\"home\":{\"name\":\"accueil\"},\"repository\":{\"duration\":\"Durée\"},\"devise\":{\"confirmations\":{\"confirmed\":\"Votre compte a été crée avec succès. Vous être maintenant connecté.\",\"send_instructions\":\"Vous allez recevoir un courriel avec les instructions de confirmation de votre compte dans quelques minutes.\"},\"failure\":{\"inactive\":\"Votre compte n'a pas encore été activé.\",\"invalid\":\"Adresse courriel ou mot de passe invalide.\",\"invalid_token\":\"Jeton d'authentification invalide.\",\"locked\":\"Votre compte est bloqué.\",\"timeout\":\"Votre session est expirée, veuillez vous reconnecter pour continuer.\",\"unauthenticated\":\"Vous devez vous connecter ou vous enregistrer afin de continuer\",\"unconfirmed\":\"Vous devez confirmer votre compte avant de continuer.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instructions de confirmations\"},\"reset_password_instructions\":{\"subject\":\"Instruction de remise à zéro du mot de passe\"},\"unlock_instructions\":{\"subject\":\"Instruction de débloquage\"}},\"passwords\":{\"send_instructions\":\"Vous recevrez un courriel avec les instructions de remise à zéro du mot de passe dans quelques minutes.\",\"updated\":\"Votre mot de passe a été changé avec succès. Vous êtes maintenant connecté.\"},\"registrations\":{\"destroyed\":\"Au revoir! Votre compte a été annulé avec succès. Nous espérons vous revoir bientôt.\",\"signed_up\":\"Vous êtes enregistré avec succès. Si activé, une confirmation vous a été envoyé par courriel.\",\"updated\":\"Votre compte a été mis a jour avec succès\"},\"sessions\":{\"signed_in\":\"Connecté avec succès\",\"signed_out\":\"Déconnecté avec succès\"},\"unlocks\":{\"send_instructions\":\"Vous recevrez un courriel contenant les instructions pour débloquer votre compte dans quelques minutes.\",\"unlocked\":\"Votre compte a été débloqué avec succès.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"étais déja confirmé\",\"not_found\":\"n'a pas été trouvé\",\"not_locked\":\"n'étais pas bloqué\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"ja\":{\"workers\":\"ワーカー\",\"queue\":\"キュー\",\"no_job\":\"ジョブはありません\",\"repositories\":{\"branch\":\"ブランチ\",\"image_url\":\"画像URL\",\"markdown\":\".md\",\"textile\":\".textile\",\"rdoc\":\".rdoc\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"tabs\":{\"current\":\"最新\",\"build_history\":\"ビルド履歴\",\"branches\":\"ブランチまとめ\",\"build\":\"ビルド\",\"job\":\"ジョブ\"}},\"build\":{\"job\":\"ジョブ\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"ビルドマトリクス\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"builds\":{\"name\":\"ビルド\",\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"失敗許容範囲外\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"layouts\":{\"about\":{\"alpha\":\"まだアルファですよ!\",\"join\":\"参加してみよう!\",\"mailing_list\":\"メールリスト\",\"messages\":{\"alpha\":\"Travis-ciは安定したサービスまで後一歩!詳しくはこちら \"},\"repository\":\"リポジトリ\",\"twitter\":\"ツイッター\"},\"application\":{\"fork_me\":\"Githubでフォークしよう\",\"my_repositories\":\"マイリポジトリ\",\"recent\":\"最近\",\"search\":\"検索\",\"sponsers\":\"スポンサー\",\"sponsors_link\":\"スポンサーをもっと見る →\"},\"top\":{\"blog\":\"ブログ\",\"docs\":\"Travisとは?\",\"github_login\":\"Githubでログイン\",\"home\":\"ホーム\",\"profile\":\"プロフィール\",\"sign_out\":\"ログアウト\",\"stats\":\"統計\",\"admin\":\"管理\"},\"mobile\":{\"author\":\"制作者\",\"build\":\"ビルド\",\"build_matrix\":\"ビルドマトリクス\",\"commit\":\"コミット\",\"committer\":\"コミット者\",\"compare\":\"比較\",\"config\":\"設定\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"job\":\"ジョブ\",\"log\":\"ログ\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"email\":\"メール\",\"message\":{\"config\":\"詳細設定\",\"your_repos\":\"以下のスイッチを設定し、Travis-ciを有効にします。Githubへプッシュしたらビルドは自動的に開始します。複数バーションや細かい設定はこちらへ:\"},\"messages\":{\"notice\":\"まずはTravisのはじめ方 を参照してください。\"},\"token\":\"トークン\",\"your_repos\":\"リポジトリ\",\"update\":\"更新\",\"update_locale\":\"更新\",\"your_locale\":\"言語設定\"}},\"statistics\":{\"index\":{\"build_count\":\"ビルド数\",\"count\":\"数\",\"last_month\":\"先月\",\"repo_growth\":\"リポジトリ\",\"total_builds\":\"合計ビルド数\",\"total_projects\":\"合計リポジトリ\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nb\":{\"admin\":{\"actions\":{\"create\":\"opprett\",\"created\":\"opprettet\",\"delete\":\"slett\",\"deleted\":\"slettet\",\"update\":\"oppdater\",\"updated\":\"oppdatert\"},\"credentials\":{\"log_out\":\"Logg ut\"},\"dashboard\":{\"add_new\":\"Legg til ny\",\"ago\":\"siden\",\"last_used\":\"Sist brukt\",\"model_name\":\"Modell\",\"modify\":\"Rediger\",\"name\":\"Dashbord\",\"pagename\":\"Nettstedsadministrasjon\",\"records\":\"Oppføringer\",\"show\":\"Vis\"},\"delete\":{\"confirmation\":\"Ja, jeg er sikker\",\"flash_confirmation\":\"%{name} ble slettet\"},\"flash\":{\"error\":\"%{name} kunne ikke bli %{action}\",\"noaction\":\"Ingen handlinger ble utført\",\"successful\":\"%{name} ble %{action}\"},\"history\":{\"name\":\"Logg\",\"no_activity\":\"Ingen aktivitet\",\"page_name\":\"Logg for %{name}\"},\"list\":{\"add_new\":\"Legg til ny\",\"delete_action\":\"Slett\",\"delete_selected\":\"Slett valgte\",\"edit_action\":\"Rediger\",\"search\":\"Søk\",\"select\":\"Velg %{name} for å redigere\",\"select_action\":\"Velg\",\"show_all\":\"Vis alle \"},\"new\":{\"basic_info\":\"Basisinformasjon\",\"cancel\":\"Avbryt\",\"chosen\":\"Valgt %{name}\",\"chose_all\":\"Velg alle\",\"clear_all\":\"Fjern alle\",\"many_chars\":\"eller færre tegn.\",\"one_char\":\"tegn.\",\"optional\":\"Valgfri\",\"required\":\"Påkrevd\",\"save\":\"Lagre\",\"save_and_add_another\":\"Lagre og legg til ny\",\"save_and_edit\":\"Lagre og rediger\",\"select_choice\":\"Kryss av for dine valg og klikk\"}},\"build\":{\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\"},\"builds\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testen ble kjørt på en maskin sponset av\"},\"name\":\"Jobb\",\"started_at\":\"Startet\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} time\",\"other\":\"%{count} timer\"},\"minutes_exact\":{\"one\":\"%{count} minutt\",\"other\":\"%{count} minutter\"},\"seconds_exact\":{\"one\":\"%{count} sekund\",\"other\":\"%{count} sekunder\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Din konto er aktivert og du er nå innlogget.\",\"send_instructions\":\"Om noen få minutter så vil du få en e-post med informasjon om hvordan du bekrefter kontoen din.\"},\"failure\":{\"inactive\":\"Kontoen din har ikke blitt aktivert enda.\",\"invalid\":\"Ugyldig e-post eller passord.\",\"invalid_token\":\"Ugyldig autentiseringskode.\",\"locked\":\"Kontoen din er låst.\",\"timeout\":\"Du ble logget ut siden på grunn av mangel på aktivitet, vennligst logg inn på nytt.\",\"unauthenticated\":\"Du må logge inn eller registrere deg for å fortsette.\",\"unconfirmed\":\"Du må bekrefte kontoen din før du kan fortsette.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bekreftelsesinformasjon\"},\"reset_password_instructions\":{\"subject\":\"Instruksjoner for å få nytt passord\"},\"unlock_instructions\":{\"subject\":\"Opplåsningsinstruksjoner\"}},\"passwords\":{\"send_instructions\":\"Om noen få minutter så vil du få en epost med informasjon om hvordan du kan få et nytt passord.\",\"updated\":\"Passordet ditt ble endret, og du er logget inn.\"},\"registrations\":{\"destroyed\":\"Adjø! Kontoen din ble kansellert. Vi håper vi ser deg igjen snart.\",\"signed_up\":\"Du er nå registrert.\",\"updated\":\"Kontoen din ble oppdatert.\"},\"sessions\":{\"signed_in\":\"Du er nå logget inn.\",\"signed_out\":\"Du er nå logget ut.\"},\"unlocks\":{\"send_instructions\":\"Om noen få minutter så kommer du til å få en e-post med informasjon om hvordan du kan låse opp kontoen din.\",\"unlocked\":\"Kontoen din ble låst opp, og du er nå logget inn igjen.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"har allerede blitt bekreftet\",\"not_found\":\"ikke funnnet\",\"not_locked\":\"var ikke låst\"}},\"home\":{\"name\":\"hjem\"},\"jobs\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testserien ble kjørt på en maskin sponset av\"},\"started_at\":\"Startet\"},\"layouts\":{\"about\":{\"alpha\":\"Dette er alfa-greier.\",\"join\":\"Bli med og hjelp oss!\",\"mailing_list\":\"E-postliste\",\"messages\":{\"alpha\":\"Dette er ikke en stabil tjeneste. Vi har fremdeles et stykke igjen! Mer informasjon finner du her .\"},\"repository\":\"Kodelager\",\"twitter\":\"Twitter.\"},\"application\":{\"fork_me\":\"Se koden på Github\",\"my_repositories\":\"Mine kodelagre\",\"recent\":\"Nylig\",\"search\":\"Søk\",\"sponsers\":\"Sponsorer\",\"sponsors_link\":\"Se alle de flotte sponsorene våre →\"},\"mobile\":{\"author\":\"Forfatter\",\"build\":\"Jobb\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\",\"log\":\"Logg\"},\"top\":{\"admin\":\"Administrator\",\"blog\":\"Blogg\",\"docs\":\"Dokumentasjon\",\"github_login\":\"Logg inn med Github\",\"home\":\"Hjem\",\"profile\":\"Profil\",\"sign_out\":\"Logg ut\",\"stats\":\"Statistikk\"}},\"no_job\":\"Ingen jobber finnnes\",\"profiles\":{\"show\":{\"email\":\"E-post\",\"github\":\"Github\",\"message\":{\"config\":\"hvordan sette opp egne jobbinnstillinger\",\"your_repos\":\"Slå\\u0010 på Travis for prosjektene dine ved å dra i bryterne under, og send koden til Github. \\nFor å teste mot flere ruby-versjoner, se dokumentasjonen for\"},\"messages\":{\"notice\":\"For å komme i gang, vennligst les kom-i-gang-veivisereren vår. Det tar bare et par minutter. \"},\"token\":\"Kode\",\"update\":\"Oppdater\",\"update_locale\":\"Oppdater\",\"your_locale\":\"Ditt språk\",\"your_repos\":\"Dine kodelagre\"}},\"queue\":\"Kø\",\"repositories\":{\"branch\":\"Gren\",\"commit\":\"Innsender\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"image_url\":\"Bilde-URL\",\"markdown\":\"Markdown\",\"message\":\"Beskrivelse\",\"rdoc\":\"RDOC\",\"started_at\":\"Startet\",\"tabs\":{\"branches\":\"Grensammendrag\",\"build\":\"Jobb\",\"build_history\":\"Jobblogg\",\"current\":\"Siste\",\"job\":\"Jobb\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Varighet\"},\"statistics\":{\"index\":{\"build_count\":\"Antall jobber\",\"count\":\"Antall\",\"last_month\":\"siste måned\",\"repo_growth\":\"Vekst i kodelager\",\"total_builds\":\"Totale jobber\",\"total_projects\":\"Antall prosjekter/kodelagre\"}},\"workers\":\"Arbeidere\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nl\":{\"admin\":{\"actions\":{\"create\":\"aanmaken\",\"created\":\"aangemaakt\",\"delete\":\"verwijderen\",\"deleted\":\"verwijderd\",\"update\":\"bijwerken\",\"updated\":\"bijgewerkt\"},\"credentials\":{\"log_out\":\"Afmelden\"},\"dashboard\":{\"add_new\":\"Nieuwe toevoegen\",\"ago\":\"geleden\",\"last_used\":\"Laatst gebruikt\",\"model_name\":\"Model naam\",\"modify\":\"Wijzigen\",\"pagename\":\"Site administratie\",\"show\":\"Laten zien\",\"records\":\"Gegevens\"},\"delete\":{\"confirmation\":\"Ja, ik ben zeker\",\"flash_confirmation\":\"%{name} is vernietigd\"},\"flash\":{\"error\":\"%{name} kon niet worden %{action}\",\"noaction\":\"Er zijn geen acties genomen\",\"successful\":\"%{name} is %{action}\"},\"history\":{\"name\":\"Geschiedenis\",\"no_activity\":\"Geen activiteit\",\"page_name\":\"Geschiedenis van %{name}\"},\"list\":{\"add_new\":\"Nieuwe toevoegen\",\"delete_action\":\"Verwijderen\",\"delete_selected\":\"Verwijder geselecteerden\",\"edit_action\":\"Bewerken\",\"search\":\"Zoeken\",\"select\":\"Selecteer %{name} om te bewerken\",\"select_action\":\"Selecteer\",\"show_all\":\"Laat allen zien\"},\"new\":{\"basic_info\":\"Basisinfo\",\"cancel\":\"Annuleren\",\"chosen\":\"%{name} gekozen\",\"chose_all\":\"Kies allen\",\"clear_all\":\"Deselecteer allen\",\"many_chars\":\"tekens of minder.\",\"one_char\":\"teken.\",\"optional\":\"Optioneel\",\"required\":\"Vereist\",\"save\":\"Opslaan\",\"save_and_add_another\":\"Opslaan en een nieuwe toevoegen\",\"save_and_edit\":\"Opslaan en bewerken\",\"select_choice\":\"Selecteer uw keuzes en klik\"}},\"build\":{\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"job\":\"Taak\"},\"builds\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw Matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze tests zijn gedraaid op een machine gesponsord door\"},\"name\":\"Bouw\",\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} uur\",\"other\":\"%{count} uren\"},\"minutes_exact\":{\"one\":\"%{count} minuut\",\"other\":\"%{count} minuten\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} seconden\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Uw account is bevestigd. U wordt nu ingelogd.\",\"send_instructions\":\"Binnen enkele minuten zal u een email ontvangen met instructies om uw account te bevestigen.\"},\"failure\":{\"inactive\":\"Uw account is nog niet geactiveerd.\",\"invalid\":\"Ongeldig email adres of wachtwoord.\",\"invalid_token\":\"Ongeldig authenticatie token.\",\"locked\":\"Uw account is vergrendeld.\",\"timeout\":\"Uw sessie is verlopen, gelieve opnieuw in te loggen om verder te gaan.\",\"unauthenticated\":\"U moet inloggen of u registeren voordat u verder gaat.\",\"unconfirmed\":\"U moet uw account bevestigen voordat u verder gaat.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bevestigings-instructies\"},\"reset_password_instructions\":{\"subject\":\"Wachtwoord herstel instructies\"},\"unlock_instructions\":{\"subject\":\"Ontgrendel-instructies\"}},\"passwords\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw wachtwoord opnieuw in te stellen.\",\"updated\":\"Uw wachtwoord is veranderd. U wordt nu ingelogd.\"},\"registrations\":{\"destroyed\":\"Dag! Uw account is geannuleerd. We hopen u vlug terug te zien.\",\"signed_up\":\"Uw registratie is voltooid. Als het ingeschakeld is wordt een bevestiging naar uw email adres verzonden.\",\"updated\":\"Het bijwerken van uw account is gelukt.\"},\"sessions\":{\"signed_in\":\"Inloggen gelukt.\",\"signed_out\":\"Uitloggen gelukt.\"},\"unlocks\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw account te ontgrendelen.\",\"unlocked\":\"Uw account is ontgrendeld. U wordt nu ingelogd.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"was al bevestigd\",\"not_found\":\"niet gevonden\",\"not_locked\":\"was niet vergrendeld\"}},\"jobs\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze testen zijn uitgevoerd op een machine gesponsord door\"},\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"layouts\":{\"about\":{\"alpha\":\"Dit is in alfa-stadium.\",\"join\":\"Doe met ons mee en help!\",\"mailing_list\":\"Mailing lijst\",\"messages\":{\"alpha\":\"Gelieve deze service niet te beschouwen als stabiel. Daar zijn we nog lang niet! Meer info hier. \"},\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Maak een fork op Github\",\"my_repositories\":\"Mijn repositories\",\"recent\":\"Recent\",\"search\":\"Zoeken\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Bekijk al onze geweldige sponsors →\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Bouw\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid op\",\"job\":\"Taak\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"log\":\"Logboek\"},\"top\":{\"admin\":\"Administratie\",\"blog\":\"Blog\",\"docs\":\"Documentatie\",\"github_login\":\"Inloggen met Github\",\"home\":\"Home\",\"profile\":\"Profiel\",\"sign_out\":\"Uitloggen\",\"stats\":\"Statistieken\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Er zijn geen taken\",\"profiles\":{\"show\":{\"email\":\"Email adres\",\"github\":\"Github\",\"message\":{\"config\":\"hoe eigen bouw-opties in te stellen\",\"your_repos\":\"Zet de schakelaars hieronder aan om de Travis hook voor uw projecten te activeren en push daarna naar Github \\nOm te testen tegen meerdere rubies, zie\"},\"messages\":{\"notice\":\"Om te beginnen kunt u onze startersgids lezen.\\\\n Het zal maar enkele minuten van uw tijd vergen. \"},\"update\":\"Bijwerken\",\"update_locale\":\"Bijwerken\",\"your_locale\":\"Uw taal\",\"your_repos\":\"Uw repositories\",\"token\":\"Token\"}},\"queue\":\"Wachtrij\",\"repositories\":{\"branch\":\"Tak\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"image_url\":\"Afbeeldings URL\",\"message\":\"Bericht\",\"started_at\":\"Gestart\",\"tabs\":{\"branches\":\"Tak samenvatting\",\"build\":\"Bouw\",\"build_history\":\"Bouw geschiedenis\",\"current\":\"Huidig\",\"job\":\"Taak\"},\"commit\":\"Commit\",\"markdown\":\"Markdown\",\"rdoc\":\"RDOC\",\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duur\"},\"statistics\":{\"index\":{\"build_count\":\"Bouw aantal\",\"count\":\"Aantal\",\"last_month\":\"voorbije maand\",\"repo_growth\":\"Repository groei\",\"total_builds\":\"Bouw totaal\",\"total_projects\":\"Projecten/Repository totaal\"}},\"workers\":\"Machines\",\"home\":{\"name\":\"Hoofdpagina\"}},\"pl\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} godzina\",\"other\":\"%{count} godziny\"},\"minutes_exact\":{\"one\":\"%{count} minuta\",\"other\":\"%{count} minuty\"},\"seconds_exact\":{\"one\":\"%{count} sekunda\",\"other\":\"%{count} sekundy\"}}},\"workers\":\"Workers\",\"queue\":\"Kolejka\",\"no_job\":\"Brak zadań\",\"repositories\":{\"branch\":\"Gałąź\",\"image_url\":\"URL obrazka\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"tabs\":{\"current\":\"Aktualny\",\"build_history\":\"Historia Buildów\",\"branches\":\"Wszystkie Gałęzie\",\"build\":\"Build\",\"job\":\"Zadanie\"}},\"build\":{\"job\":\"Zadanie\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Committer\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Komitujący\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"layouts\":{\"top\":{\"home\":\"Start\",\"blog\":\"Blog\",\"docs\":\"Dokumentacja\",\"stats\":\"Statystki\",\"github_login\":\"Zaloguj się przy pomocy Githuba\",\"profile\":\"Profil\",\"sign_out\":\"Wyloguj się\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Ostatnie\",\"search\":\"Wyniki\",\"sponsers\":\"Sponsorzy\",\"sponsors_link\":\"Zobacz naszych wszystkich wspaniałych sponsorów →\",\"my_repositories\":\"Moje repozytoria\"},\"about\":{\"alpha\":\"To wciąż jest wersja alpha.\",\"messages\":{\"alpha\":\"Proszę nie traktuj tego jako stabilnej usługi. Wciąż nam wiele do tego brakuje! Więcej informacji znajdziesz tutaj. \"},\"join\":\"Pomóż i dołącz do nas!\",\"mailing_list\":\"Lista mailingowa\",\"repository\":\"Repozytorium\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Macierz Buildów\",\"commit\":\"Commit\",\"committer\":\"Komitujący\",\"compare\":\"Porównianie\",\"config\":\"Konfiguracja\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"job\":\"Zadanie\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Przesuń suwak poniżej, aby włączyć Travisa, dla twoich projektów, a następnie umieść swój kod na GitHubie. \\n Aby testować swój kod przy użyciu wielu wersji Rubiego, zobacz\",\"config\":\"jak skonfigurować niestandardowe opcje builda\"},\"messages\":{\"notice\":\"Aby zacząć, przeczytaj nasz Przewodnik .\\n Zajmie ci to tylko kilka minut. \"},\"token\":\"Token\",\"your_repos\":\"Twoje repozytoria\"}},\"statistics\":{\"index\":{\"count\":\"Ilość\",\"repo_growth\":\"Przyrost repozytoriów\",\"total_projects\":\"Łącznie projektów/repozytoriów\",\"build_count\":\"Liczba buildów\",\"last_month\":\"ostatni miesiąc\",\"total_builds\":\"Łącznie Buildów\"}},\"date\":{\"abbr_day_names\":[\"nie\",\"pon\",\"wto\",\"śro\",\"czw\",\"pią\",\"sob\"],\"abbr_month_names\":[\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\"],\"day_names\":[\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\"formats\":{\"default\":\"%d-%m-%Y\",\"long\":\"%B %d, %Y\",\"short\":\"%d %b\"},\"month_names\":[\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\"],\"order\":[\"day\",\"month\",\"year\"]},\"errors\":{\"format\":\"%{attribute} %{message}\",\"messages\":{\"accepted\":\"musi zostać zaakceptowane\",\"blank\":\"nie może być puste\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"pt-BR\":{\"admin\":{\"actions\":{\"create\":\"criar\",\"created\":\"criado\",\"delete\":\"deletar\",\"deleted\":\"deletado\",\"update\":\"atualizar\",\"updated\":\"atualizado\"},\"credentials\":{\"log_out\":\"Deslogar\"},\"dashboard\":{\"add_new\":\"Adicionar novo\",\"ago\":\"atrás\",\"last_used\":\"Última utilização\",\"model_name\":\"Nome do modelo\",\"modify\":\"Modificar\",\"name\":\"Dashboard\",\"pagename\":\"Administração do site\",\"records\":\"Registros\",\"show\":\"Mostrar\"},\"delete\":{\"confirmation\":\"Sim, tenho certeza\",\"flash_confirmation\":\"%{name} foi destruído com sucesso\"},\"flash\":{\"error\":\"%{name} falhou ao %{action}\",\"noaction\":\"Nenhuma ação foi tomada\",\"successful\":\"%{name} foi %{action} com sucesso\"},\"history\":{\"name\":\"Histórico\",\"no_activity\":\"Nenhuma Atividade\",\"page_name\":\"Histórico para %{name}\"},\"list\":{\"add_new\":\"Adicionar novo\",\"delete_action\":\"Deletar\",\"delete_selected\":\"Deletar selecionados\",\"edit_action\":\"Editar\",\"search\":\"Buscar\",\"select\":\"Selecionar %{name} para editar\",\"select_action\":\"Selecionar\",\"show_all\":\"Mostrar todos\"},\"new\":{\"basic_info\":\"Informações básicas\",\"cancel\":\"Cancelar\",\"chosen\":\"Escolhido %{name}\",\"chose_all\":\"Escolher todos\",\"clear_all\":\"Limpar todos\",\"many_chars\":\"caracteres ou menos.\",\"one_char\":\"caractere.\",\"optional\":\"Opcional\",\"required\":\"Requerido\",\"save\":\"Salvar\",\"save_and_add_another\":\"Salvar e adicionar outro\",\"save_and_edit\":\"Salvar e alterar\",\"select_choice\":\"Selecione e clique\"}},\"build\":{\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\"},\"builds\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"name\":\"Build\",\"started_at\":\"Iniciou em\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Sua conta foi confirmada com sucesso. Você agora está logado.\",\"send_instructions\":\"Você receberá um email com instruções de como confirmar sua conta em alguns minutos.\"},\"failure\":{\"inactive\":\"Sua conta ainda não foi ativada.\",\"invalid\":\"Email ou senha inválidos.\",\"invalid_token\":\"Token de autenticação inválido.\",\"locked\":\"Sua conta está trancada.\",\"timeout\":\"Sua sessão expirou, por favor faça seu login novamente.\",\"unauthenticated\":\"Você precisa fazer o login ou cadastrar-se antes de continuar.\",\"unconfirmed\":\"Você precisa confirmar sua conta antes de continuar.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instruções de confirmação\"},\"reset_password_instructions\":{\"subject\":\"Instruções de atualização de senha\"},\"unlock_instructions\":{\"subject\":\"Instruções de destrancamento\"}},\"passwords\":{\"send_instructions\":\"Você receberá um email com instruções de como atualizar sua senha em alguns minutos.\",\"updated\":\"Sua senha foi alterada com sucesso. Você agora está logado.\"},\"registrations\":{\"destroyed\":\"Tchau! Sua conta foi cancelada com sucesso. Esperamos vê-lo novamente em breve!\",\"signed_up\":\"Você se cadastrou com sucesso. Se ativada, uma confirmação foi enviada para seu email.\",\"updated\":\"Você atualizou sua conta com sucesso.\"},\"sessions\":{\"signed_in\":\"Logado com sucesso.\",\"signed_out\":\"Deslogado com sucesso.\"},\"unlocks\":{\"send_instructions\":\"Você receberá um email com instruções de como destrancar sua conta em alguns minutos.\",\"unlocked\":\"Sua conta foi destrancada com sucesso. Você agora está logado.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"já foi confirmado\",\"not_found\":\"não encontrado\",\"not_locked\":\"não estava trancado\"}},\"home\":{\"name\":\"home\"},\"jobs\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"started_at\":\"Iniciou em\"},\"layouts\":{\"about\":{\"alpha\":\"Isto é um alpha.\",\"join\":\"Junte-se à nós e ajude!\",\"mailing_list\":\"Lista de email\",\"messages\":{\"alpha\":\"Por favor, não considere isto um serviço estável. Estamos muito longe disso! Mais informações aqui. \"},\"repository\":\"Repositório\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Faça fork no Github\",\"my_repositories\":\"Meus Repositórios\",\"recent\":\"Recentes\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Conheça todos os nossos patrocinadores →\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\",\"log\":\"Log\"},\"top\":{\"admin\":\"Admin\",\"blog\":\"Blog\",\"docs\":\"Documentação\",\"github_login\":\"Logue com o Github\",\"home\":\"Home\",\"profile\":\"Perfil\",\"sign_out\":\"Sair\",\"stats\":\"Estatísticas\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Não há trabalhos\",\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"config\":\"como configurar opções de build\",\"your_repos\":\"Use os botões abaixo para ligar ou desligar o hook de serviço do Travis para seus projetos, e então, faça um push para o Github. Para testar com múltiplas versões do Ruby, leia\"},\"messages\":{\"notice\":\"Para começar, leia nosso Guia de início . Só leva alguns minutinhos. \"},\"token\":\"Token\",\"update\":\"Atualizar\",\"update_locale\":\"Atualizar\",\"your_locale\":\"Sua língua\",\"your_repos\":\"Seus Repositórios\"}},\"queue\":\"Fila\",\"repositories\":{\"branch\":\"Branch\",\"commit\":\"Commit\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"image_url\":\"URL da imagem\",\"markdown\":\"Markdown\",\"message\":\"Mensagem\",\"rdoc\":\"RDOC\",\"started_at\":\"Iniciou em\",\"tabs\":{\"branches\":\"Sumário do Branch\",\"build\":\"Build\",\"build_history\":\"Histórico de Build\",\"current\":\"Atual\",\"job\":\"Trabalho\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duração\"},\"statistics\":{\"index\":{\"build_count\":\"Número de Builds\",\"count\":\"Número\",\"last_month\":\"último mês\",\"repo_growth\":\"Crescimento de Repositório\",\"total_builds\":\"Total de Builds\",\"total_projects\":\"Total de Projetos/Repositórios\"}},\"workers\":\"Processos\"},\"ru\":{\"admin\":{\"actions\":{\"create\":\"создать\",\"created\":\"создано\",\"delete\":\"удалить\",\"deleted\":\"удалено\",\"update\":\"обновить\",\"updated\":\"обновлено\"},\"credentials\":{\"log_out\":\"Выход\"},\"dashboard\":{\"add_new\":\"Добавить\",\"ago\":\"назад\",\"last_used\":\"Использовалось в последний раз\",\"model_name\":\"Имя модели\",\"modify\":\"Изменить\",\"name\":\"Панель управления\",\"pagename\":\"Управление сайтом\",\"records\":\"Записи\",\"show\":\"Показать\"},\"delete\":{\"confirmation\":\"Да, я уверен\",\"flash_confirmation\":\"%{name} успешно удалено\"},\"history\":{\"name\":\"История\",\"no_activity\":\"Нет активности\",\"page_name\":\"История %{name}\"},\"list\":{\"add_new\":\"Добавить\",\"delete_action\":\"Удалить\",\"delete_selected\":\"Удалить выбранные\",\"edit_action\":\"Редактировать\",\"search\":\"Поиск\",\"select\":\"Для редактирования выберите %{name}\",\"select_action\":\"Выбрать\",\"show_all\":\"Показать все\"},\"new\":{\"basic_info\":\"Основная информация\",\"cancel\":\"Отмена\",\"chosen\":\"Выбрано %{name}\",\"chose_all\":\"Выбрать все\",\"clear_all\":\"Очистить все\",\"one_char\":\"символ.\",\"optional\":\"Необязательно\",\"required\":\"Обязательно\",\"save\":\"Сохранить\",\"save_and_add_another\":\"Сохранить и добавить другое\",\"save_and_edit\":\"Сохранить и продолжить редактирование\",\"select_choice\":\"Выберите и кликните\",\"many_chars\":\"символов или меньше.\"},\"flash\":{\"error\":\"%{name} не удалось %{action}\",\"noaction\":\"Никаких действий не произведено\",\"successful\":\"%{name} было успешно %{action}\"}},\"build\":{\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\"},\"builds\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Дифф\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине, спонсируемой\"},\"name\":\"Билд\",\"started_at\":\"Начало\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} час\",\"few\":\"%{count} часа\",\"many\":\"%{count} часов\",\"other\":\"%{count} часа\"},\"minutes_exact\":{\"one\":\"%{count} минута\",\"few\":\"%{count} минуты\",\"many\":\"%{count} минут\",\"other\":\"%{count} минуты\"},\"seconds_exact\":{\"one\":\"%{count} секунда\",\"few\":\"%{count} секунды\",\"many\":\"%{count} секунд\",\"other\":\"%{count} секунды\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Ваш аккаунт успешно подтвержден. Приветствуем!\",\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для прохождения процедуры подтверждения аккаунта.\"},\"failure\":{\"inactive\":\"Ваш аккаунт еще не активирован.\",\"invalid\":\"Ошибка в адресе почты или пароле.\",\"invalid_token\":\"Неправильный токен аутентификации.\",\"locked\":\"Ваш аккаунт заблокирован.\",\"timeout\":\"Сессия окончена. Для продолжения работы войдите снова.\",\"unauthenticated\":\"Вам нужно войти или зарегистрироваться.\",\"unconfirmed\":\"Вы должны сначала подтвердить свой аккаунт.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Инструкции для подтверждению аккаунта\"},\"reset_password_instructions\":{\"subject\":\"Инструкции для сброса пароля\"},\"unlock_instructions\":{\"subject\":\"Инструкции для разблокирования аккаунта\"}},\"passwords\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для сброса пароля.\",\"updated\":\"Ваш пароль успешно изменен. Приветствуем!\"},\"registrations\":{\"destroyed\":\"Ваш аккаунт был успешно удален. Живите долго и процветайте!\",\"signed_up\":\"Вы успешно прошли регистрацию. Инструкции для подтверждения аккаунта отправлены на ваш электронный адрес.\",\"updated\":\"Аккаунт успешно обновлен.\"},\"sessions\":{\"signed_in\":\"Приветствуем!\",\"signed_out\":\"Удачи!\"},\"unlocks\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциям для разблокировния аккаунта.\",\"unlocked\":\"Ваш аккаунт успешно разблокирован. Приветствуем!\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"уже подтвержден\",\"not_found\":\"не найден\",\"not_locked\":\"не заблокирован\"}},\"home\":{\"name\":\"Главная\"},\"jobs\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине спонсируемой\"},\"started_at\":\"Начало\"},\"layouts\":{\"about\":{\"alpha\":\"Это альфа-версия\",\"join\":\"Присоединяйтесь к нам и помогайте!\",\"mailing_list\":\"Лист рассылки\",\"messages\":{\"alpha\":\"Пожалуйста, не считайте данный сервис стабильным. Мы еще очень далеки от стабильности! Подробности \"},\"repository\":\"Репозиторий\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"my_repositories\":\"Мои репозитории\",\"recent\":\"Недавние\",\"search\":\"Поиск\",\"sponsers\":\"Спонсоры\",\"sponsors_link\":\"Список всех наших замечательных спонсоров →\"},\"mobile\":{\"author\":\"Автор\",\"build\":\"Сборка\",\"build_matrix\":\"Матрица сборок\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\",\"log\":\"Журнал\"},\"top\":{\"admin\":\"Управление\",\"blog\":\"Блог\",\"docs\":\"Документация\",\"github_login\":\"Войти через Github\",\"home\":\"Главная\",\"profile\":\"Профиль\",\"sign_out\":\"Выход\",\"stats\":\"Статистика\"}},\"no_job\":\"Очередь пуста\",\"profiles\":{\"show\":{\"email\":\"Электронная почта\",\"github\":\"Github\",\"message\":{\"config\":\"как настроить специальные опции билда\",\"your_repos\":\"Используйте переключатели, чтобы включить Travis service hook для вашего проекта, а потом отправьте код на GitHub. \\nДля тестирования на нескольких версиях Ruby смотрите\"},\"messages\":{\"notice\":\"Перед началом, пожалуйста, прочтите Руководство для быстрого старта . Это займет всего несколько минут. \"},\"token\":\"Токен\",\"update\":\"Обновить\",\"update_locale\":\"Обновить\",\"your_locale\":\"Ваш язык\",\"your_repos\":\"Ваши репозитории\"}},\"queue\":\"Очередь\",\"repositories\":{\"branch\":\"Ветка\",\"commit\":\"Коммит\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"image_url\":\"URL изображения\",\"markdown\":\"Markdown\",\"message\":\"Комментарий\",\"rdoc\":\"RDOC\",\"started_at\":\"Начало\",\"tabs\":{\"branches\":\"Статус веток\",\"build\":\"Билд\",\"build_history\":\"История\",\"current\":\"Текущий\",\"job\":\"Задача\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Длительность\"},\"statistics\":{\"index\":{\"build_count\":\"Количество билдов\",\"count\":\"Количество\",\"last_month\":\"прошлый месяц\",\"repo_growth\":\"Рост числа репозиториев\",\"total_builds\":\"Всего билдов\",\"total_projects\":\"Всего проектов/репозиториев\"}},\"workers\":\"Машины\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}}};\n\n\n})();\n//@ sourceURL=config/locales");minispade.register('ext/ember/bound_helper', "(function() {// https://gist.github.com/2018185\n// For reference: https://github.com/wagenet/ember.js/blob/ac66dcb8a1cbe91d736074441f853e0da474ee6e/packages/ember-handlebars/lib/views/bound_property_view.js\nvar BoundHelperView = Ember.View.extend(Ember._Metamorph, {\n\n context: null,\n options: null,\n property: null,\n // paths of the property that are also observed\n propertyPaths: [],\n\n value: Ember.K,\n\n valueForRender: function() {\n var value = this.value(Ember.get(this.context, this.property), this.options);\n if (this.options.escaped) { value = Handlebars.Utils.escapeExpression(value); }\n return value;\n },\n\n render: function(buffer) {\n buffer.push(this.valueForRender());\n },\n\n valueDidChange: function() {\n if (this.morph.isRemoved()) { return; }\n this.morph.html(this.valueForRender());\n },\n\n didInsertElement: function() {\n this.valueDidChange();\n },\n\n init: function() {\n this._super();\n Ember.addObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n Ember.addObserver(this.context, this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n },\n\n destroy: function() {\n Ember.removeObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n this.context.removeObserver(this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n this._super();\n }\n\n});\n\nEmber.registerBoundHelper = function(name, func) {\n var propertyPaths = Array.prototype.slice.call(arguments, 2);\n Ember.Handlebars.registerHelper(name, function(property, options) {\n var data = options.data,\n view = data.view,\n ctx = this;\n\n var bindView = view.createChildView(BoundHelperView, {\n property: property,\n propertyPaths: propertyPaths,\n context: ctx,\n options: options.hash,\n value: func\n });\n\n view.appendChild(bindView);\n });\n};\n\n\n})();\n//@ sourceURL=ext/ember/bound_helper");minispade.register('ext/ember/namespace', "(function() {Em.Namespace.reopen = Em.Namespace.reopenClass\n\n\n\n})();\n//@ sourceURL=ext/ember/namespace");
\ No newline at end of file
diff --git a/public/scripts/min/app.js b/public/scripts/min/app.js
index cba2f34b..32a1a15e 100644
--- a/public/scripts/min/app.js
+++ b/public/scripts/min/app.js
@@ -29619,4 +29619,4 @@ var _require=function(){function c(a,c){document.addEventListener?a.addEventList
++g&&setTimeout(c,0)})}}();
(function(){!window.WebSocket&&window.MozWebSocket&&(window.WebSocket=window.MozWebSocket);if(window.WebSocket)Pusher.Transport=window.WebSocket,Pusher.TransportType="native";var c=(document.location.protocol=="http:"?Pusher.cdn_http:Pusher.cdn_https)+Pusher.VERSION,a=[];window.JSON||a.push(c+"/json2"+Pusher.dependency_suffix+".js");if(!window.WebSocket)window.WEB_SOCKET_DISABLE_AUTO_INITIALIZATION=!0,a.push(c+"/flashfallback"+Pusher.dependency_suffix+".js");var b=function(){return window.WebSocket?function(){Pusher.ready()}:
function(){window.WebSocket?(Pusher.Transport=window.WebSocket,Pusher.TransportType="flash",window.WEB_SOCKET_SWF_LOCATION=c+"/WebSocketMain.swf",WebSocket.__addTask(function(){Pusher.ready()}),WebSocket.__initialize()):(Pusher.Transport=null,Pusher.TransportType="none",Pusher.ready())}}(),e=function(a){var b=function(){document.body?a():setTimeout(b,0)};b()},g=function(){e(b)};a.length>0?_require(a,g):g()})();
-;minispade.register('app', "(function() {(function() {\nminispade.require('auth');\nminispade.require('controllers');\nminispade.require('helpers');\nminispade.require('models');\nminispade.require('pusher');\nminispade.require('routes');\nminispade.require('slider');\nminispade.require('store');\nminispade.require('tailing');\nminispade.require('templates');\nminispade.require('views');\nminispade.require('config/locales');\nminispade.require('data/sponsors');\n\n Travis.reopen({\n App: Em.Application.extend({\n autoinit: false,\n currentUserBinding: 'auth.user',\n authStateBinding: 'auth.state',\n init: function() {\n this._super.apply(this, arguments);\n this.store = Travis.Store.create();\n this.store.loadMany(Travis.Sponsor, Travis.SPONSORS);\n this.set('auth', Travis.Auth.create({\n app: this,\n endpoint: Travis.config.api_endpoint\n }));\n this.slider = new Travis.Slider();\n this.pusher = new Travis.Pusher(Travis.config.pusher_key);\n return this.tailing = new Travis.Tailing();\n },\n signIn: function() {\n return this.get('auth').signIn();\n },\n autoSignIn: function() {\n return this.get('auth').autoSignIn();\n },\n signOut: function() {\n this.get('auth').signOut();\n return this.get('router').send('afterSignOut');\n },\n receive: function() {\n return this.store.receive.apply(this.store, arguments);\n },\n toggleSidebar: function() {\n var element;\n $('body').toggleClass('maximized');\n element = $(' ');\n $('#top .profile').append(element);\n Em.run.later((function() {\n return element.remove();\n }), 10);\n element = $(' ');\n $('#repo').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=app");minispade.register('auth', "(function() {(function() {\n\n this.Travis.Auth = Ember.Object.extend({\n iframe: $('').hide(),\n timeout: 5000,\n state: 'signed-out',\n receivingEnd: \"\" + location.protocol + \"//\" + location.host,\n init: function() {\n var _this = this;\n this.iframe.appendTo('body');\n window.addEventListener('message', function(e) {\n return _this.receiveMessage(e);\n });\n return this.loadUser();\n },\n accessToken: (function() {\n return sessionStorage.getItem('travis.token');\n }).property(),\n loadUser: function() {\n var user;\n if (user = sessionStorage.getItem('travis.user')) {\n return this.setData({\n user: JSON.parse(user)\n });\n } else {\n return this.autoSignIn();\n }\n },\n signIn: function() {\n this.set('state', 'signing-in');\n this.trySignIn();\n return Ember.run.later(this, this.checkSignIn.bind(this), this.timeout);\n },\n autoSignIn: function() {\n if (localStorage.getItem('travis.auto_signin')) {\n return this.signIn();\n }\n },\n signOut: function() {\n localStorage.clear();\n sessionStorage.clear();\n return this.setData();\n },\n trySignIn: function() {\n return this.iframe.attr('src', \"\" + this.endpoint + \"/auth/post_message?origin=\" + this.receivingEnd);\n },\n checkSignIn: function() {\n if (this.get('state') === 'signing-in') {\n return this.forceSignIn();\n }\n },\n forceSignIn: function() {\n localStorage.setItem('travis.auto_signin', 'true');\n return window.location = \"\" + this.endpoint + \"/auth/handshake?redirect_uri=\" + location;\n },\n setData: function(data) {\n var router, user, _ref;\n if (typeof data === 'string') {\n data = JSON.parse(data);\n }\n if (data != null ? data.token : void 0) {\n this.storeToken(data.token);\n }\n if (data != null ? data.user : void 0) {\n user = this.storeUser(data.user);\n }\n this.set('state', user ? 'signed-in' : 'signed-out');\n this.set('user', user ? user : void 0);\n if (router = (_ref = Travis.app) != null ? _ref.get('router') : void 0) {\n return router.send('afterSignIn');\n }\n },\n storeToken: function(token) {\n sessionStorage.setItem('travis.token', token);\n return this.notifyPropertyChange('accessToken');\n },\n storeUser: function(user) {\n localStorage.setItem('travis.auto_signin', 'true');\n sessionStorage.setItem('travis.user', JSON.stringify(user));\n this.app.store.load(Travis.User, user);\n user = this.app.store.find(Travis.User, user.id);\n user.get('permissions');\n return user;\n },\n receiveMessage: function(event) {\n if (event.origin === this.expectedOrigin()) {\n if (event.data.token) {\n event.data.user.token = event.data.token;\n }\n this.setData(event.data);\n return console.log(\"signed in as \" + event.data.user.login);\n } else {\n return console.log(\"unexpected message \" + event.origin + \": \" + event.data);\n }\n },\n expectedOrigin: function() {\n if (this.endpoint[0] === '/') {\n return this.receivingEnd;\n } else {\n return this.endpoint;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=auth");minispade.register('controllers', "(function() {(function() {\nminispade.require('helpers');\nminispade.require('travis/ticker');\n\n Travis.reopen({\n Controller: Em.Controller.extend({\n connectOutlet: function() {\n var view, _connectedOutletViews;\n view = this._super.apply(this, arguments);\n if (view) {\n _connectedOutletViews = Travis.app.get('_connectedOutletViews');\n if (!_connectedOutletViews) {\n _connectedOutletViews = [];\n }\n _connectedOutletViews.pushObject(view);\n Travis.app.set('_connectedOutletViews', _connectedOutletViews);\n }\n return view;\n }\n }),\n TopController: Em.Controller.extend({\n userBinding: 'Travis.app.currentUser'\n }),\n ApplicationController: Em.Controller.extend(),\n MainController: Em.Controller.extend(),\n StatsLayoutController: Em.Controller.extend(),\n ProfileLayoutController: Em.Controller.extend(),\n AuthLayoutController: Em.Controller.extend()\n });\nminispade.require('controllers/accounts');\nminispade.require('controllers/builds');\nminispade.require('controllers/flash');\nminispade.require('controllers/home');\nminispade.require('controllers/profile');\nminispade.require('controllers/repos');\nminispade.require('controllers/repo');\nminispade.require('controllers/sidebar');\nminispade.require('controllers/stats');\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers");minispade.register('controllers/accounts', "(function() {(function() {\n\n Travis.AccountsController = Ember.ArrayController.extend({\n tab: 'accounts',\n init: function() {\n return this._super();\n },\n findByLogin: function(login) {\n return this.find(function(account) {\n return account.get('login') === login;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/accounts");minispade.register('controllers/builds', "(function() {(function() {\n\n Travis.BuildsController = Em.ArrayController.extend({\n repo: 'parent.repo',\n contentBinding: 'parent.builds'\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/builds");minispade.register('controllers/flash', "(function() {(function() {\n\n Travis.FlashController = Ember.ArrayController.extend({\n init: function() {\n this._super.apply(this, arguments);\n return this.set('content', Ember.A());\n },\n pushObjects: function(objects) {\n Ember.run.later(this, (function() {\n return this.removeObjects(objects);\n }), 10000);\n return this._super(objects);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/flash");minispade.register('controllers/home', "(function() {(function() {\n\n Travis.HomeLayoutController = Travis.Controller.extend();\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/home");minispade.register('controllers/profile', "(function() {(function() {\n\n Travis.ProfileController = Travis.Controller.extend({\n name: 'profile',\n userBinding: 'Travis.app.currentUser',\n accountsBinding: 'Travis.app.router.accountsController',\n account: (function() {\n var account, login;\n login = this.get('params.login') || Travis.app.get('currentUser.login');\n account = this.get('accounts').filter(function(account) {\n if (account.get('login') === login) {\n return account;\n }\n })[0];\n if (account) {\n account.select();\n }\n return account;\n }).property('accounts.length', 'params.login'),\n activate: function(action, params) {\n this.setParams(params || this.get('params'));\n return this[\"view\" + ($.camelize(action))]();\n },\n viewHooks: function() {\n this.connectTab('hooks');\n return this.set('hooks', Travis.Hook.find({\n owner_name: this.get('params.login') || Travis.app.get('currentUser.login')\n }));\n },\n viewUser: function() {\n return this.connectTab('user');\n },\n connectTab: function(tab) {\n var viewClass;\n viewClass = Travis[\"\" + ($.camelize(tab)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n setParams: function(params) {\n var key, value, _results;\n this.set('params', {});\n _results = [];\n for (key in params) {\n value = params[key];\n _results.push(this.set(\"params.\" + key, params[key]));\n }\n return _results;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/profile");minispade.register('controllers/repo', "(function() {(function() {\n\n Travis.RepoController = Travis.Controller.extend({\n bindings: [],\n init: function() {\n this._super.apply(this, arguments);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var build, builds, jobs;\n if (builds = this.get('builds')) {\n builds.forEach(function(b) {\n return b.updateTimes();\n });\n }\n if (build = this.get('build')) {\n build.updateTimes();\n }\n if (build && (jobs = build.get('jobs'))) {\n jobs.forEach(function(j) {\n return j.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(action) {\n this._unbind();\n return this[\"view\" + ($.camelize(action))]();\n },\n viewIndex: function() {\n this._bind('repo', 'controllers.reposController.firstObject');\n this._bind('build', 'repo.lastBuild');\n return this.connectTab('current');\n },\n viewCurrent: function() {\n this.connectTab('current');\n return this._bind('build', 'repo.lastBuild');\n },\n viewBuilds: function() {\n this.connectTab('builds');\n return this._bind('builds', 'repo.builds');\n },\n viewPullRequests: function() {\n this.connectTab('pull_requests');\n return this._bind('builds', 'repo.pullRequests');\n },\n viewBranches: function() {\n this.connectTab('branches');\n return this._bind('builds', 'repo.branches');\n },\n viewEvents: function() {\n this.connectTab('events');\n return this._bind('events', 'repo.events');\n },\n viewBuild: function() {\n return this.connectTab('build');\n },\n viewJob: function() {\n this._bind('build', 'job.build');\n return this.connectTab('job');\n },\n repoObserver: (function() {\n var repo;\n repo = this.get('repo');\n if (repo) {\n return repo.select();\n }\n }).observes('repo.id'),\n connectTab: function(tab) {\n var name, viewClass;\n name = tab === 'current' ? 'build' : tab;\n viewClass = name === 'builds' || name === 'branches' || name === 'pull_requests' ? Travis.BuildsView : Travis[\"\" + ($.camelize(name)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n _bind: function(to, from) {\n return this.bindings.push(Ember.oneWay(this, to, from));\n },\n _unbind: function() {\n var binding, _i, _len, _ref;\n _ref = this.bindings;\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n binding = _ref[_i];\n binding.disconnect(this);\n }\n return this.bindings.length = 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repo");minispade.register('controllers/repos', "(function() {(function() {\nminispade.require('travis/limited_array');\n\n Travis.ReposController = Ember.ArrayController.extend({\n defaultTab: 'recent',\n sortProperties: ['sortOrder'],\n init: function() {\n this.activate(this.defaultTab);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var content;\n if (content = this.get('content')) {\n content.forEach(function(r) {\n return r.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(tab, params) {\n this.set('tab', tab);\n return this[\"view\" + ($.camelize(tab))](params);\n },\n viewRecent: function() {\n var content;\n content = Travis.LimitedArray.create({\n content: Travis.Repo.find(),\n limit: 30\n });\n return this.set('content', content);\n },\n viewOwned: function() {\n return this.set('content', Travis.Repo.accessibleBy(Travis.app.get('currentUser.login')));\n },\n viewSearch: function(params) {\n return this.set('content', Travis.Repo.search(params.search));\n },\n searchObserver: (function() {\n var search;\n search = this.get('search');\n if (search) {\n return this.searchFor(search);\n } else {\n this.activate('recent');\n return 'recent';\n }\n }).observes('search'),\n searchFor: function(phrase) {\n if (this.searchLater) {\n Ember.run.cancel(this.searchLater);\n }\n return this.searchLater = Ember.run.later(this, (function() {\n return this.activate('search', {\n search: phrase\n });\n }), 500);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repos");minispade.register('controllers/sidebar', "(function() {(function() {\n\n Travis.reopen({\n SidebarController: Em.ArrayController.extend({\n init: function() {\n this.tickables = [];\n return Travis.Ticker.create({\n target: this,\n interval: Travis.INTERVALS.sponsors\n });\n },\n tick: function() {\n var tickable, _i, _len, _ref, _results;\n _ref = this.tickables;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n tickable = _ref[_i];\n _results.push(tickable.tick());\n }\n return _results;\n }\n }),\n QueuesController: Em.ArrayController.extend(),\n WorkersController: Em.ArrayController.extend({\n groups: (function() {\n var content, groups, host, worker, _i, _len, _ref;\n if (content = this.get('arrangedContent')) {\n groups = {};\n _ref = content.toArray();\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n worker = _ref[_i];\n host = worker.get('host');\n if (!groups[host]) {\n groups[host] = Em.ArrayProxy.create(Em.SortableMixin, {\n content: [],\n sortProperties: ['nameForSort']\n });\n }\n groups[host].addObject(worker);\n }\n return $.values(groups);\n }\n }).property('length')\n }),\n SponsorsController: Em.ArrayController.extend({\n page: 0,\n arrangedContent: (function() {\n return this.get('shuffled').slice(this.start(), this.end());\n }).property('shuffled.length', 'page'),\n shuffled: (function() {\n var content;\n if (content = this.get('content')) {\n return $.shuffle(content);\n } else {\n return [];\n }\n }).property('content.length'),\n tick: function() {\n return this.set('page', this.isLast() ? 0 : this.get('page') + 1);\n },\n pages: (function() {\n var length;\n length = this.get('content.length');\n if (length) {\n return parseInt(length / this.get('perPage') + 1);\n } else {\n return 1;\n }\n }).property('length'),\n isLast: function() {\n return this.get('page') === this.get('pages') - 1;\n },\n start: function() {\n return this.get('page') * this.get('perPage');\n },\n end: function() {\n return this.start() + this.get('perPage');\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/sidebar");minispade.register('controllers/stats', "(function() {(function() {\n\n Travis.StatsController = Travis.Controller.extend({\n name: 'stats',\n init: function() {\n return this._super('top');\n },\n activate: function(action, params) {}\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/stats");minispade.register('helpers', "(function() {(function() {\nminispade.require('helpers/handlebars');\nminispade.require('helpers/helpers');\nminispade.require('helpers/urls');\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers");minispade.register('helpers/handlebars', "(function() {(function() {\n var safe;\nminispade.require('ext/ember/bound_helper');\n\n safe = function(string) {\n return new Handlebars.SafeString(string);\n };\n\n Handlebars.registerHelper('tipsy', function(text, tip) {\n return safe('' + text + ' ');\n });\n\n Handlebars.registerHelper('t', function(key) {\n return safe(I18n.t(key));\n });\n\n Ember.registerBoundHelper('formatTime', function(value, options) {\n return safe(Travis.Helpers.timeAgoInWords(value) || '-');\n });\n\n Ember.registerBoundHelper('formatDuration', function(duration, options) {\n return safe(Travis.Helpers.timeInWords(duration));\n });\n\n Ember.registerBoundHelper('formatCommit', function(commit, options) {\n if (commit) {\n return safe(Travis.Helpers.formatCommit(commit.get('sha'), commit.get('branch')));\n }\n });\n\n Ember.registerBoundHelper('formatSha', function(sha, options) {\n return safe(Travis.Helpers.formatSha(sha));\n });\n\n Ember.registerBoundHelper('pathFrom', function(url, options) {\n return safe(Travis.Helpers.pathFrom(url));\n });\n\n Ember.registerBoundHelper('formatMessage', function(message, options) {\n return safe(Travis.Helpers.formatMessage(message, options));\n });\n\n Ember.registerBoundHelper('formatConfig', function(config, options) {\n return safe(Travis.Helpers.formatConfig(config));\n });\n\n Ember.registerBoundHelper('formatLog', function(log, options) {\n var item, parentView, repo;\n parentView = this.get('parentView');\n repo = parentView.get(options.repo);\n item = parentView.get(options.item);\n return Travis.Helpers.formatLog(log, repo, item) || '';\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/handlebars");minispade.register('helpers/helpers', "(function() {(function() {\nminispade.require('travis/log');\nminispade.require('config/emoij');\n\n this.Travis.Helpers = {\n compact: function(object) {\n var key, result, value, _ref;\n result = {};\n _ref = object || {};\n for (key in _ref) {\n value = _ref[key];\n if (!$.isEmpty(value)) {\n result[key] = value;\n }\n }\n return result;\n },\n safe: function(string) {\n return new Handlebars.SafeString(string);\n },\n colorForResult: function(result) {\n if (result === 0) {\n return 'green';\n } else {\n if (result === 1) {\n return 'red';\n } else {\n return null;\n }\n }\n },\n formatCommit: function(sha, branch) {\n return Travis.Helpers.formatSha(sha) + (branch ? \" (\" + branch + \")\" : '');\n },\n formatSha: function(sha) {\n return (sha || '').substr(0, 7);\n },\n formatConfig: function(config) {\n var values;\n config = $.only(config, 'rvm', 'gemfile', 'env', 'otp_release', 'php', 'node_js', 'scala', 'jdk', 'python', 'perl');\n values = $.map(config, function(value, key) {\n value = (value && value.join ? value.join(', ') : value) || '';\n return '%@: %@'.fmt($.camelize(key), value);\n });\n if (values.length === 0) {\n return '-';\n } else {\n return values.join(', ');\n }\n },\n formatMessage: function(message, options) {\n message = message || '';\n if (options.short) {\n message = message.split(/\\n/)[0];\n }\n return this._emojize(this._escape(message)).replace(/\\n/g, ' ');\n },\n formatLog: function(log, repo, item) {\n var event, url;\n event = item.constructor === Travis.Build ? 'showBuild' : 'showJob';\n url = Travis.app.get('router').urlForEvent(event, repo, item);\n return Travis.Log.filter(log, url);\n },\n pathFrom: function(url) {\n return (url || '').split('/').pop();\n },\n timeAgoInWords: function(date) {\n return $.timeago.distanceInWords(date);\n },\n durationFrom: function(started, finished) {\n started = started && this._toUtc(new Date(this._normalizeDateString(started)));\n finished = finished ? this._toUtc(new Date(this._normalizeDateString(finished))) : this._nowUtc();\n if (started && finished) {\n return Math.round((finished - started) / 1000);\n } else {\n return 0;\n }\n },\n timeInWords: function(duration) {\n var days, hours, minutes, result, seconds;\n days = Math.floor(duration / 86400);\n hours = Math.floor(duration % 86400 / 3600);\n minutes = Math.floor(duration % 3600 / 60);\n seconds = duration % 60;\n if (days > 0) {\n return 'more than 24 hrs';\n } else {\n result = [];\n if (hours === 1) {\n result.push(hours + ' hr');\n }\n if (hours > 1) {\n result.push(hours + ' hrs');\n }\n if (minutes > 0) {\n result.push(minutes + ' min');\n }\n if (seconds > 0) {\n result.push(seconds + ' sec');\n }\n if (result.length > 0) {\n return result.join(' ');\n } else {\n return '-';\n }\n }\n },\n _normalizeDateString: function(string) {\n if (window.JHW) {\n string = string.replace('T', ' ').replace(/-/g, '/');\n string = string.replace('Z', '').replace(/\\..*$/, '');\n }\n return string;\n },\n _nowUtc: function() {\n return this._toUtc(new Date());\n },\n _toUtc: function(date) {\n return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds());\n },\n _emojize: function(text) {\n var emojis;\n emojis = text.match(/:\\S+?:/g);\n if (emojis !== null) {\n $.each(emojis.uniq(), function(ix, emoji) {\n var image, strippedEmoji;\n strippedEmoji = emoji.substring(1, emoji.length - 1);\n if (EmojiDictionary.indexOf(strippedEmoji) !== -1) {\n image = ' ';\n return text = text.replace(new RegExp(emoji, 'g'), image);\n }\n });\n }\n return text;\n },\n _escape: function(text) {\n return text.replace(/&/g, '&').replace(//g, '>');\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/helpers");minispade.register('helpers/urls', "(function() {(function() {\n\n this.Travis.Urls = {\n repo: function(slug) {\n return \"/\" + slug;\n },\n builds: function(slug) {\n return \"/\" + slug + \"/builds\";\n },\n pullRequests: function(slug) {\n return \"/\" + slug + \"/pull_requests\";\n },\n branches: function(slug) {\n return \"/\" + slug + \"/branches\";\n },\n build: function(slug, id) {\n return \"/\" + slug + \"/builds/\" + id;\n },\n job: function(slug, id) {\n return \"/\" + slug + \"/jobs/\" + id;\n },\n githubCommit: function(slug, sha) {\n return \"http://github.com/\" + slug + \"/commit/\" + sha;\n },\n githubRepo: function(slug) {\n return \"http://github.com/\" + slug;\n },\n githubWatchers: function(slug) {\n return \"http://github.com/\" + slug + \"/watchers\";\n },\n githubNetwork: function(slug) {\n return \"http://github.com/\" + slug + \"/network\";\n },\n githubAdmin: function(slug) {\n return \"http://github.com/\" + slug + \"/admin/hooks#travis_minibucket\";\n },\n statusImage: function(slug, branch) {\n return (\"https://secure.travis-ci.org/\" + slug + \".png\") + (branch ? \"?branch=\" + branch : '');\n },\n email: function(email) {\n return \"mailto:\" + email;\n },\n account: function(login) {\n return \"/profile/\" + login;\n },\n user: function(login) {\n return \"/profile/\" + login + \"/me\";\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/urls");minispade.register('models', "(function() {(function() {\nminispade.require('models/extensions');\nminispade.require('models/account');\nminispade.require('models/artifact');\nminispade.require('models/branch');\nminispade.require('models/build');\nminispade.require('models/commit');\nminispade.require('models/event');\nminispade.require('models/hook');\nminispade.require('models/job');\nminispade.require('models/repo');\nminispade.require('models/sponsor');\nminispade.require('models/user');\nminispade.require('models/worker');\n\n}).call(this);\n\n})();\n//@ sourceURL=models");minispade.register('models/account', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Account = Travis.Model.extend({\n primaryKey: 'login',\n login: DS.attr('string'),\n name: DS.attr('string'),\n type: DS.attr('string'),\n reposCount: DS.attr('number'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('login'));\n }).property()\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/account");minispade.register('models/artifact', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Artifact = Travis.Model.extend({\n body: DS.attr('string'),\n init: function() {\n this._super.apply(this, arguments);\n this.set('queue', Ember.A([]));\n this.addObserver('body', this.fetchWorker);\n return this.fetchWorker();\n },\n append: function(body) {\n if (this.get('isLoaded')) {\n return this.set('body', this.get('body') + body);\n } else {\n return this.get('queue').pushObject(body);\n }\n },\n recordDidLoad: (function() {\n var queue;\n if (this.get('isLoaded')) {\n queue = this.get('queue');\n if (queue.get('length') > 0) {\n return this.append(queue.toArray().join(''));\n }\n }\n }).observes('isLoaded'),\n fetchWorker: function() {\n var body, line, match, worker;\n if (body = this.get('body')) {\n line = body.split(\"\\n\")[0];\n if (line && (match = line.match(/Using worker: (.*)/))) {\n if (worker = match[1]) {\n worker = worker.trim().split(':')[0];\n this.set('workerName', worker);\n return this.removeObserver('body', this.fetchWorker);\n }\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/artifact");minispade.register('models/branch', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Branch = Travis.Model.extend(Travis.Helpers, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n duration: DS.attr('number'),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n commit: DS.belongsTo('Travis.Commit'),\n repo: (function() {\n if (this.get('repoId')) {\n return Travis.Repo.find(this.get('repoId'));\n }\n }).property('repoId'),\n updateTimes: function() {\n this.notifyPropertyChange('started_at');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n this.Travis.Branch.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/branch");minispade.register('models/build', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Build = Travis.Model.extend(Travis.DurationCalculations, {\n eventType: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n state: DS.attr('string'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string', {\n key: 'started_at'\n }),\n finishedAt: DS.attr('string', {\n key: 'finished_at'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n commit: DS.belongsTo('Travis.Commit'),\n jobs: DS.hasMany('Travis.Job', {\n key: 'job_ids'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n isMatrix: (function() {\n return this.get('data.job_ids.length') > 1;\n }).property('data.job_ids.length'),\n isFinished: (function() {\n return this.get('state') === 'finished';\n }).property('state'),\n requiredJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return !data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n allowedFailureJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n configKeys: (function() {\n var config, headers, key, keys;\n if (!(config = this.get('config'))) {\n return [];\n }\n keys = $.intersect($.keys(config), Travis.CONFIG_KEYS);\n headers = (function() {\n var _i, _len, _ref, _results;\n _ref = ['build.job', 'build.duration', 'build.finished_at'];\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n key = _ref[_i];\n _results.push(I18n.t(key));\n }\n return _results;\n })();\n return $.map(headers.concat(keys), function(key) {\n return $.camelize(key);\n });\n }).property('config'),\n requeue: (function() {\n return Travis.ajax.post('/requests', {\n build_id: this.get('id')\n });\n })\n });\n\n this.Travis.Build.reopenClass({\n byRepoId: function(id, parameters) {\n return this.find($.extend(parameters || {}, {\n repository_id: id\n }));\n },\n olderThanNumber: function(id, build_number) {\n return this.find({\n url: \"/builds\",\n repository_id: id,\n after_number: build_number\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/build");minispade.register('models/commit', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Commit = Travis.Model.extend({\n buildId: DS.attr('number'),\n sha: DS.attr('string'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n compareUrl: DS.attr('string'),\n authorName: DS.attr('string'),\n authorEmail: DS.attr('string'),\n committerName: DS.attr('string'),\n committerEmail: DS.attr('string'),\n build: DS.belongsTo('Travis.Build', {\n key: 'buildId'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/commit");minispade.register('models/event', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Event = Travis.Model.extend({\n event: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n sourceId: DS.attr('number', {\n key: 'source_id'\n }),\n sourceType: DS.attr('string', {\n key: 'source_type'\n }),\n createdAt: DS.attr('string', {\n key: 'created_at'\n }),\n event_: (function() {\n return this.get('event');\n }).property('event'),\n result: (function() {\n return this.get('data.data.result');\n }).property('data.data.result'),\n message: (function() {\n return this.get('data.data.message');\n }).property('data.data.message'),\n source: (function() {\n var type;\n if (type = this.get('sourceType')) {\n return Travis[type].find(this.get('sourceId'));\n }\n }).property('sourceType', 'sourceId')\n });\n\n this.Travis.Event.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/event");minispade.register('models/extensions', "(function() {(function() {\n\n Travis.DurationCalculations = Ember.Mixin.create({\n duration: (function() {\n var duration;\n if (duration = this.get('_duration')) {\n return duration;\n } else {\n return Travis.Helpers.durationFrom(this.get('startedAt'), this.get('finishedAt'));\n }\n }).property('_duration', 'finishedAt', 'startedAt'),\n updateTimes: function() {\n this.notifyPropertyChange('_duration');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/extensions");minispade.register('models/hook', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Hook = Travis.Model.extend({\n name: DS.attr('string'),\n ownerName: DS.attr('string'),\n description: DS.attr('string'),\n active: DS.attr('boolean'),\n account: (function() {\n return this.get('slug').split('/')[0];\n }).property('slug'),\n slug: (function() {\n return \"\" + (this.get('ownerName')) + \"/\" + (this.get('name'));\n }).property('ownerName', 'name'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('slug'));\n }).property(),\n urlGithubAdmin: (function() {\n return \"http://github.com/\" + (this.get('slug')) + \"/admin/hooks#travis_minibucket\";\n }).property(),\n toggle: function() {\n var transaction;\n transaction = this.get('store').transaction();\n transaction.add(this);\n this.set('active', !this.get('active'));\n return transaction.commit();\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/hook");minispade.register('models/job', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Job = Travis.Model.extend(Travis.DurationCalculations, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n buildId: DS.attr('number'),\n commitId: DS.attr('number'),\n logId: DS.attr('number'),\n queue: DS.attr('string'),\n state: DS.attr('string'),\n number: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n allowFailure: DS.attr('boolean', {\n key: 'allow_failure'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n build: DS.belongsTo('Travis.Build', {\n key: 'build_id'\n }),\n commit: DS.belongsTo('Travis.Commit', {\n key: 'commit_id'\n }),\n log: DS.belongsTo('Travis.Artifact', {\n key: 'log_id'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n sponsor: (function() {\n var worker;\n worker = this.get('log.workerName');\n if (worker && worker.length) {\n return Travis.WORKERS[worker] || {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n };\n }\n }).property('log.workerName'),\n configValues: (function() {\n var config;\n if (config = this.get('config')) {\n return $.values($.only.apply(config, Travis.CONFIG_KEYS));\n } else {\n return [];\n }\n }).property('config'),\n appendLog: function(text) {\n var log;\n if (log = this.get('log')) {\n return log.append(text);\n }\n },\n subscribe: function() {\n var id;\n if (id = this.get('id')) {\n return Travis.app.pusher.subscribe(\"job-\" + id);\n }\n },\n onStateChange: (function() {\n if (this.get('state') === 'finished') {\n return Travis.app.pusher.unsubscribe(\"job-\" + (this.get('id')));\n }\n }).observes('state')\n });\n\n this.Travis.Job.reopenClass({\n queued: function(queue) {\n this.find();\n return Travis.app.store.filter(this, function(job) {\n var queued;\n queued = ['created', 'queued'].indexOf(job.get('state')) !== -1;\n return queued && (!queue || job.get('queue') === (\"builds.\" + queue));\n });\n },\n findMany: function(ids) {\n return Travis.app.store.findMany(this, ids);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/job");minispade.register('models/repo', "(function() {(function() {\nminispade.require('travis/expandable_record_array');\nminispade.require('travis/model');\n\n this.Travis.Repo = Travis.Model.extend({\n slug: DS.attr('string'),\n description: DS.attr('string'),\n lastBuildId: DS.attr('number'),\n lastBuildNumber: DS.attr('string'),\n lastBuildResult: DS.attr('number'),\n lastBuildStartedAt: DS.attr('string'),\n lastBuildFinishedAt: DS.attr('string'),\n lastBuild: DS.belongsTo('Travis.Build'),\n builds: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'push'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n pullRequests: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'pull_request'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n branches: (function() {\n return Travis.Branch.byRepoId(this.get('id'));\n }).property(),\n events: (function() {\n return Travis.Event.byRepoId(this.get('id'));\n }).property(),\n owner: (function() {\n return (this.get('slug') || '').split('/')[0];\n }).property('slug'),\n name: (function() {\n return (this.get('slug') || '').split('/')[1];\n }).property('slug'),\n lastBuildDuration: (function() {\n var duration;\n duration = this.get('data.last_build_duration');\n if (!duration) {\n duration = Travis.Helpers.durationFrom(this.get('lastBuildStartedAt'), this.get('lastBuildFinishedAt'));\n }\n return duration;\n }).property('data.last_build_duration', 'lastBuildStartedAt', 'lastBuildFinishedAt'),\n sortOrder: (function() {\n var lastBuildFinishedAt;\n if (lastBuildFinishedAt = this.get('lastBuildFinishedAt')) {\n return -new Date(lastBuildFinishedAt).getTime();\n } else {\n return -new Date('9999').getTime() - parseInt(this.get('lastBuildId'));\n }\n }).property('lastBuildFinishedAt', 'lastBuildId'),\n stats: (function() {\n var _this = this;\n return this.get('_stats') || $.get(\"https://api.github.com/repos/\" + (this.get('slug')), function(data) {\n _this.set('_stats', data);\n return _this.notifyPropertyChange('stats');\n }) && {};\n }).property(),\n updateTimes: function() {\n return this.notifyPropertyChange('lastBuildDuration');\n }\n });\n\n this.Travis.Repo.reopenClass({\n recent: function() {\n return this.find();\n },\n ownedBy: function(login) {\n return this.find({\n owner_name: login,\n orderBy: 'name'\n });\n },\n accessibleBy: function(login) {\n return this.find({\n member: login,\n orderBy: 'name'\n });\n },\n search: function(query) {\n return this.find({\n search: query,\n orderBy: 'name'\n });\n },\n bySlug: function(slug) {\n var repo;\n repo = $.select(this.find().toArray(), function(repo) {\n return repo.get('slug') === slug;\n });\n if (repo.length > 0) {\n return repo;\n } else {\n return this.find({\n slug: slug\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/repo");minispade.register('models/sponsor', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Sponsor = Travis.Model.extend({\n type: DS.attr('string'),\n url: DS.attr('string'),\n link: DS.attr('string'),\n image: (function() {\n return \"/images/sponsors/\" + (this.get('data.image'));\n }).property('data.image')\n });\n\n Travis.Sponsor.reopenClass({\n decks: function() {\n return this.platinum().concat(this.gold());\n },\n platinum: function() {\n var platinum, sponsor, _i, _len, _results;\n platinum = this.byType('platinum').toArray();\n _results = [];\n for (_i = 0, _len = platinum.length; _i < _len; _i++) {\n sponsor = platinum[_i];\n _results.push([sponsor]);\n }\n return _results;\n },\n gold: function() {\n var gold, _results;\n gold = this.byType('gold').toArray();\n _results = [];\n while (gold.length > 0) {\n _results.push(gold.splice(0, 2));\n }\n return _results;\n },\n links: function() {\n return this.byType('silver');\n },\n byType: function() {\n var types;\n types = Array.prototype.slice.apply(arguments);\n return Travis.Sponsor.filter(function(sponsor) {\n return types.indexOf(sponsor.get('type')) !== -1;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/sponsor");minispade.register('models/user', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('travis/model');\n\n this.Travis.User = Travis.Model.extend({\n name: DS.attr('string'),\n email: DS.attr('string'),\n login: DS.attr('string'),\n token: DS.attr('string'),\n locale: DS.attr('string'),\n gravatarId: DS.attr('string'),\n isSyncing: DS.attr('boolean'),\n syncedAt: DS.attr('string'),\n repoCount: DS.attr('number'),\n init: function() {\n if (this.get('isSyncing')) {\n this.poll();\n }\n this._super();\n return Ember.run.next(this, function() {\n var transaction;\n transaction = this.get('store').transaction();\n return transaction.add(this);\n });\n },\n urlGithub: (function() {\n return \"https://github.com/\" + (this.get('login'));\n }).property(),\n permissions: (function() {\n var _this = this;\n if (!this.permissions) {\n this.permissions = Ember.ArrayProxy.create({\n content: []\n });\n Travis.ajax.get('/users/permissions', function(data) {\n return _this.permissions.set('content', data.permissions);\n });\n }\n return this.permissions;\n }).property(),\n updateLocale: function(locale) {\n var observer, self, transaction;\n this.setWithSession('locale', locale);\n transaction = this.get('transaction');\n transaction.commit();\n self = this;\n observer = function() {\n if (!self.get('isSaving')) {\n self.removeObserver('isSaving', observer);\n transaction = self.get('store').transaction();\n return transaction.add(self);\n }\n };\n return this.addObserver('isSaving', observer);\n },\n type: (function() {\n return 'user';\n }).property(),\n sync: function() {\n Travis.ajax.post('/users/sync');\n this.setWithSession('isSyncing', true);\n return this.poll();\n },\n poll: function() {\n var _this = this;\n return Travis.ajax.get('/users', function(data) {\n if (data.user.is_syncing) {\n return Ember.run.later(_this, _this.poll.bind(_this), 3000);\n } else {\n _this.set('isSyncing', false);\n return _this.setWithSession('syncedAt', data.user.synced_at);\n }\n });\n },\n setWithSession: function(name, value) {\n var user;\n this.set(name, value);\n user = JSON.parse(typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.getItem('travis.user') : void 0);\n user[$.underscore(name)] = this.get(name);\n return typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.setItem('travis.user', JSON.stringify(user)) : void 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/user");minispade.register('models/worker', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Worker = Travis.Model.extend({\n state: DS.attr('string'),\n name: DS.attr('string'),\n host: DS.attr('string'),\n lastSeenAt: DS.attr('string'),\n payload: (function() {\n return this.get('data.payload');\n }).property('data.payload'),\n number: (function() {\n return this.get('name').match(/\\d+$/)[0];\n }).property('name'),\n isWorking: (function() {\n return this.get('state') === 'working';\n }).property('state'),\n repo: (function() {\n return Travis.Repo.find(this.get('payload.repository.id') || this.get('payload.repo.id'));\n }).property('payload.repository.id', 'payload.repo.id'),\n job_id: (function() {\n return this.get('payload.job.id');\n }).property('payload.job.id'),\n job: (function() {\n return Travis.Job.find(this.get('job_id'));\n }).property('job_id'),\n nameForSort: (function() {\n var id, match, name;\n if (name = this.get('name')) {\n match = name.match(/(.*?)-(\\d+)/);\n if (match) {\n name = match[1];\n id = match[2].toString();\n if (id.length < 2) {\n id = \"00\" + id;\n } else if (id.length < 3) {\n id = \"0\" + id;\n }\n return \"\" + name + \"-\" + id;\n }\n }\n }).property('name')\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/worker");minispade.register('pusher', "(function() {(function() {\n\n Travis.Pusher = function(key) {\n if (key) {\n this.init(key);\n }\n return this;\n };\n\n $.extend(Travis.Pusher, {\n CHANNELS: ['common'],\n CHANNEL_PREFIX: ''\n });\n\n $.extend(Travis.Pusher.prototype, {\n active_channels: [],\n init: function(key) {\n var channel, _i, _len, _ref, _results;\n Pusher.warn = this.warn.bind(this);\n this.pusher = new Pusher(key);\n _ref = Travis.Pusher.CHANNELS;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n channel = _ref[_i];\n _results.push(this.subscribe(channel));\n }\n return _results;\n },\n subscribe: function(channel) {\n var _this = this;\n if (this.pusher && this.active_channels.indexOf(channel) === -1) {\n this.active_channels.push(channel);\n return this.pusher.subscribe(this.prefix(channel)).bind_all(function(event, data) {\n return _this.receive(event, data);\n });\n }\n },\n unsubscribe: function(channel) {\n var ix;\n ix = this.active_channels.indexOf(channel);\n if (this.pusher && ix === -1) {\n this.active_channels.splice(ix, 1);\n return this.pusher.unsubscribe(this.prefix(channel));\n }\n },\n prefix: function(channel) {\n return \"\" + Travis.Pusher.CHANNEL_PREFIX + channel;\n },\n receive: function(event, data) {\n if (event.substr(0, 6) === 'pusher') {\n return;\n }\n if (data.id) {\n data = this.normalize(event, data);\n }\n return Ember.run.next(function() {\n return Travis.app.store.receive(event, data);\n });\n },\n normalize: function(event, data) {\n switch (event) {\n case 'build:started':\n case 'build:finished':\n return data;\n case 'job:created':\n case 'job:started':\n case 'job:finished':\n case 'job:log':\n if (data.queue) {\n data.queue = data.queue.replace('builds.', '');\n }\n return {\n job: data\n };\n case 'worker:added':\n case 'worker:updated':\n case 'worker:removed':\n return {\n worker: data\n };\n }\n },\n warn: function(type, warning) {\n if (!this.ignoreWarning(warning)) {\n return console.warn(warning);\n }\n },\n ignoreWarning: function(warning) {\n var message, _ref;\n if (message = (_ref = warning.data) != null ? _ref.message : void 0) {\n return message.indexOf('Existing subscription') === 0 || message.indexOf('No current subscription') === 0;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=pusher");minispade.register('routes', "(function() {(function() {\n var defaultRoute, lineNumberRoute, nonHashRouteMatcher, resolvePath;\nminispade.require('travis/location');\n\n defaultRoute = Ember.Route.extend({\n route: '/',\n index: 1000\n });\n\n lineNumberRoute = Ember.Route.extend({\n route: '#L:number',\n index: 1,\n connectOutlets: function(router) {\n return router.saveLineNumberHash();\n },\n routeMatcher: Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([0-9]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(regex);\n }\n });\n }\n }).cacheable()\n });\n\n nonHashRouteMatcher = Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([^/#]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(\"^/?\" + regex);\n }\n });\n }\n }).cacheable();\n\n resolvePath = function(manager, path) {\n var childStates, match, resolvedState, state, states;\n if (this.get('isLeafRoute')) {\n return Ember.A();\n }\n childStates = this.get('childStates');\n childStates = Ember.A(childStates.filterProperty('isRoutable'));\n childStates = childStates.sort(function(a, b) {\n var aDynamicSegments, aIndex, aRoute, bDynamicSegments, bIndex, bRoute;\n aDynamicSegments = a.get('routeMatcher.identifiers.length');\n bDynamicSegments = b.get('routeMatcher.identifiers.length');\n aRoute = a.get('route');\n bRoute = b.get('route');\n aIndex = a.get('index');\n bIndex = b.get('index');\n if (aIndex && bIndex) {\n return aIndex - bIndex;\n }\n if (aRoute.indexOf(bRoute) === 0) {\n return -1;\n } else if (bRoute.indexOf(aRoute) === 0) {\n return 1;\n }\n if (aDynamicSegments !== bDynamicSegments) {\n return aDynamicSegments - bDynamicSegments;\n }\n return b.get('route.length') - a.get('route.length');\n });\n match = null;\n state = childStates.find(function(state) {\n var matcher;\n matcher = state.get('routeMatcher');\n if (match = matcher.match(path)) {\n return match;\n }\n });\n Ember.assert(\"Could not find state for path \" + path, !!state);\n resolvedState = Ember._ResolvedState.create({\n manager: manager,\n state: state,\n match: match\n });\n states = state.resolvePath(manager, match.remaining);\n return Ember.A([resolvedState]).pushObjects(states);\n };\n\n Travis.Router = Ember.Router.extend({\n location: 'travis',\n enableLogging: true,\n initialState: 'loading',\n showRoot: Ember.Route.transitionTo('root.home.show'),\n showStats: Ember.Route.transitionTo('root.stats'),\n showRepo: Ember.Route.transitionTo('root.home.repo.show'),\n showBuilds: Ember.Route.transitionTo('root.home.repo.builds.index'),\n showBuild: Ember.Route.transitionTo('root.home.repo.builds.show'),\n showPullRequests: Ember.Route.transitionTo('root.home.repo.pullRequests'),\n showBranches: Ember.Route.transitionTo('root.home.repo.branches'),\n showEvents: Ember.Route.transitionTo('root.home.repo.events'),\n showJob: Ember.Route.transitionTo('root.home.repo.job'),\n showProfile: Ember.Route.transitionTo('root.profile'),\n showAccount: Ember.Route.transitionTo('root.profile.account'),\n showUserProfile: Ember.Route.transitionTo('root.profile.account.profile'),\n saveLineNumberHash: function(path) {\n return Ember.run.next(this, function() {\n var match;\n path = path || this.get('location').getURL();\n if (match = path.match(/#L\\d+$/)) {\n return this.set('repoController.lineNumberHash', match[0]);\n }\n });\n },\n reload: function() {\n var url;\n url = this.get('location').getURL();\n this.transitionTo('loading');\n return this.route(url);\n },\n signedIn: function() {\n return !!Travis.app.get('auth.user');\n },\n needsAuth: function(path) {\n return path.indexOf('/profile') === 0;\n },\n afterSignIn: function() {\n var path;\n path = sessionStorage.getItem('travis.after_signin_path');\n sessionStorage.removeItem('travis.after_signin_path');\n this.transitionTo('root');\n return this.route(path || '/');\n },\n afterSignOut: function() {\n return this.authorize('/');\n },\n authorize: function(path) {\n if (!this.signedIn() && this.needsAuth(path)) {\n sessionStorage.setItem('travis.after_signin_path', path);\n this.transitionTo('root.auth');\n return Travis.app.autoSignIn();\n } else {\n this.transitionTo('root');\n return this.route(path);\n }\n },\n loading: Ember.Route.extend({\n routePath: function(router, path) {\n router.saveLineNumberHash(path);\n return router.authorize(path);\n }\n }),\n root: Ember.Route.extend({\n route: '/',\n loading: Ember.State.extend(),\n auth: Ember.Route.extend({\n route: '/auth',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('authLayout');\n $('body').attr('id', 'auth');\n router.get('authLayoutController').connectOutlet('top', 'top');\n return router.get('authLayoutController').connectOutlet('main', 'signin');\n }\n }),\n stats: Ember.Route.extend({\n route: '/stats',\n afterSignIn: (function() {}),\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('statsLayout');\n $('body').attr('id', 'stats');\n router.get('statsLayoutController').connectOutlet('top', 'top');\n return router.get('statsLayoutController').connectOutlet('main', 'stats');\n }\n }),\n profile: Ember.Route.extend({\n initialState: 'index',\n afterSignIn: (function() {}),\n route: '/profile',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('profileLayout');\n $('body').attr('id', 'profile');\n router.get('accountsController').set('content', Travis.Account.find());\n router.get('profileLayoutController').connectOutlet('top', 'top');\n return router.get('profileLayoutController').connectOutlet('left', 'accounts');\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('profileLayoutController').connectOutlet('main', 'profile');\n return router.get('profileController').activate('hooks');\n }\n }),\n account: Ember.Route.extend({\n initialState: 'index',\n route: '/:login',\n connectOutlets: function(router, account) {\n var params;\n if (account) {\n params = {\n login: account.get('login')\n };\n return router.get('profileController').setParams(params);\n } else {\n return router.send('showProfile');\n }\n },\n deserialize: function(router, params) {\n var account, controller, deferred, observer;\n controller = router.get('accountsController');\n if (!controller.get('content')) {\n controller.set('content', Travis.Account.find());\n }\n account = controller.findByLogin(params.login);\n if (account) {\n return account;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (account = controller.findByLogin(params.login)) {\n controller.removeObserver('content.length', observer);\n return deferred.resolve(account);\n }\n };\n controller.addObserver('content.length', observer);\n return deferred.promise();\n }\n },\n serialize: function(router, account) {\n if (account) {\n return {\n login: account.get('login')\n };\n } else {\n return {};\n }\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('profileController').activate('hooks');\n }\n }),\n profile: Ember.Route.extend({\n route: '/profile',\n connectOutlets: function(router) {\n return router.get('profileController').activate('user');\n }\n })\n })\n }),\n home: Ember.Route.extend({\n route: '/',\n afterSignIn: (function() {}),\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('homeLayout');\n $('body').attr('id', 'home');\n router.get('homeLayoutController').connectOutlet('left', 'repos');\n router.get('homeLayoutController').connectOutlet('right', 'sidebar');\n router.get('homeLayoutController').connectOutlet('top', 'top');\n router.get('homeLayoutController').connectOutlet('main', 'repo');\n router.get('homeLayoutController').connectOutlet('flash', 'flash');\n return router.get('repoController').set('repos', router.get('reposController'));\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n showWithLineNumber: Ember.Route.extend({\n route: '/#/L:number',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n }\n }),\n repo: Ember.Route.extend({\n route: '/:owner/:name',\n routeMatcher: nonHashRouteMatcher,\n connectOutlets: function(router, repo) {\n return router.get('repoController').set('repo', repo);\n },\n deserialize: function(router, params) {\n var deferred, observer, repos, slug;\n slug = \"\" + params.owner + \"/\" + params.name;\n repos = Travis.Repo.bySlug(slug);\n deferred = $.Deferred();\n observer = function() {\n if (repos.get('isLoaded')) {\n repos.removeObserver('isLoaded', observer);\n return deferred.resolve(repos.objectAt(0));\n }\n };\n if (repos.length) {\n deferred.resolve(repos[0]);\n } else {\n repos.addObserver('isLoaded', observer);\n }\n return deferred.promise();\n },\n serialize: function(router, repo) {\n if (repo) {\n return {\n owner: repo.get('owner'),\n name: repo.get('name')\n };\n } else {\n return {};\n }\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('current');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n builds: Ember.Route.extend({\n route: '/builds',\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('builds');\n }\n }),\n show: Ember.Route.extend({\n route: '/:build_id',\n connectOutlets: function(router, build) {\n if (!build.get) {\n build = Travis.Build.find(build);\n }\n router.get('repoController').set('build', build);\n return router.get('repoController').activate('build');\n },\n serialize: function(router, build) {\n if (build.get) {\n return {\n build_id: build.get('id')\n };\n } else {\n return {\n build_id: build\n };\n }\n },\n deserialize: function(router, params) {\n var build, deferred, observer;\n build = Travis.Build.find(params.build_id);\n if (build.get('id')) {\n return build;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (build.get('id')) {\n build.removeObserver('id', observer);\n return deferred.resolve(build);\n }\n };\n build.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n }),\n pullRequests: Ember.Route.extend({\n route: '/pull_requests',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('pull_requests');\n }\n }),\n branches: Ember.Route.extend({\n route: '/branches',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('branches');\n }\n }),\n events: Ember.Route.extend({\n route: '/events',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('events');\n }\n }),\n job: Ember.Route.extend({\n route: '/jobs/:job_id',\n connectOutlets: function(router, job) {\n if (!job.get) {\n job = Travis.Job.find(job);\n }\n router.get('repoController').set('job', job);\n return router.get('repoController').activate('job');\n },\n serialize: function(router, job) {\n if (job.get) {\n return {\n job_id: job.get('id')\n };\n } else {\n return {\n job_id: job\n };\n }\n },\n deserialize: function(router, params) {\n var deferred, job, observer;\n job = Travis.Job.find(params.job_id);\n if (job.get('id')) {\n return job;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (job.get('id')) {\n job.removeObserver('id', observer);\n return deferred.resolve(job);\n }\n };\n job.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n })\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=routes");minispade.register('slider', "(function() {(function() {\n\n this.Travis.Slider = function() {\n if ((typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.getItem('travis.maximized') : void 0) === 'true') {\n this.minimize();\n }\n return this;\n };\n\n $.extend(Travis.Slider.prototype, {\n persist: function() {\n return typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.setItem('travis.maximized', this.isMinimized()) : void 0;\n },\n isMinimized: function() {\n return $('body').hasClass('maximized');\n },\n minimize: function() {\n return $('body').addClass('maximized');\n },\n toggle: function() {\n var element;\n $('body').toggleClass('maximized');\n this.persist();\n element = $(' ');\n $('#top .profile').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=slider");minispade.register('store', "(function() {(function() {\n var DATA_PROXY,\n __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };\nminispade.require('store/rest_adapter');\n\n DATA_PROXY = {\n get: function(name) {\n return this.savedData[name];\n }\n };\n\n Travis.Store = DS.Store.extend({\n revision: 4,\n adapter: Travis.RestAdapter.create(),\n load: function(type, id, hash) {\n var record, result;\n result = this._super.apply(this, arguments);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n record.set('incomplete', false);\n record.set('complete', true);\n }\n return result;\n },\n merge: function(type, id, hash) {\n var clientId, data, dataCache, primaryKey, record, recordCache, typeMap;\n if (hash === void 0) {\n hash = id;\n primaryKey = type.proto().primaryKey;\n Ember.assert(\"A data hash was loaded for a record of type \" + type.toString() + \" but no primary key '\" + primaryKey + \"' was provided.\", hash[primaryKey]);\n id = hash[primaryKey];\n }\n typeMap = this.typeMapFor(type);\n dataCache = typeMap.cidToHash;\n clientId = typeMap.idToCid[id];\n recordCache = this.get('recordCache');\n if (clientId !== void 0) {\n if (data = dataCache[clientId]) {\n $.extend(data, hash);\n } else {\n dataCache[clientId] = hash;\n }\n if (record = recordCache[clientId]) {\n record.send('didChangeData');\n }\n } else {\n clientId = this.pushHash(hash, id, type);\n }\n if (clientId) {\n DATA_PROXY.savedData = hash;\n this.updateRecordArrays(type, clientId, DATA_PROXY);\n return {\n id: id,\n clientId: clientId\n };\n }\n },\n receive: function(event, data) {\n var job, mappings, name, type, _ref;\n _ref = event.split(':'), name = _ref[0], type = _ref[1];\n mappings = this.adapter.get('mappings');\n type = mappings[name];\n if (event === 'job:log') {\n if (job = this.find(Travis.Job, data['job']['id'])) {\n return job.appendLog(data['job']['_log']);\n }\n } else if (data[type.singularName()]) {\n return this._loadOne(this, type, data);\n } else if (data[type.pluralName()]) {\n return this._loadMany(this, type, data);\n } else {\n if (!type) {\n throw \"can't load data for \" + name;\n }\n }\n },\n _loadOne: function(store, type, json) {\n var result, root;\n root = type.singularName();\n if (type === Travis.Build && json.repository) {\n result = this.loadIncomplete(Travis.Repo, json.repository);\n }\n return this.loadIncomplete(type, json[root]);\n },\n loadIncomplete: function(type, hash) {\n var record, result;\n result = this.merge(type, hash);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n if (!record.get('complete')) {\n record.set('incomplete', true);\n record.loadedAttributes = Object.keys(hash);\n }\n this._updateAssociations(type, type.singularName(), hash);\n return record;\n }\n },\n _loadMany: function(store, type, json) {\n var root;\n root = type.pluralName();\n this.adapter.sideload(store, type, json, root);\n return this.loadMany(type, json[root]);\n },\n _updateAssociations: function(type, name, data) {\n var _this = this;\n return Em.get(type, 'associationsByName').forEach(function(key, meta) {\n var clientId, dataProxy, id, ids, parent, _ref;\n if (meta.kind === 'belongsTo') {\n id = data[\"\" + key + \"_id\"];\n if (clientId = _this.typeMapFor(meta.type).idToCid[id]) {\n if (parent = _this.findByClientId(meta.type, clientId, id)) {\n dataProxy = parent.get('data');\n if (ids = dataProxy.get(\"\" + name + \"_ids\")) {\n if (_ref = data.id, __indexOf.call(ids, _ref) < 0) {\n ids.pushObject(data.id);\n }\n return parent.send('didChangeData');\n }\n }\n }\n }\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store");minispade.register('store/fixture_adapter', "(function() {(function() {\n\n this.Travis.FixtureAdapter = DS.Adapter.extend({\n find: function(store, type, id) {\n var fixtures;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n if (fixtures.hasLoaded) {\n return;\n }\n return setTimeout((function() {\n store.loadMany(type, fixtures);\n return fixtures.hasLoaded = true;\n }), 300);\n },\n findMany: function() {\n return this.find.apply(this, arguments);\n },\n findAll: function(store, type) {\n var fixtures, ids;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n ids = fixtures.map(function(item, index, self) {\n return item.id;\n });\n return store.loadMany(type, ids, fixtures);\n },\n findQuery: function(store, type, params, array) {\n var fixture, fixtures, hashes, key, matches, value;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n hashes = (function() {\n var _i, _len, _results;\n _results = [];\n for (_i = 0, _len = fixtures.length; _i < _len; _i++) {\n fixture = fixtures[_i];\n matches = (function() {\n var _results1;\n _results1 = [];\n for (key in params) {\n value = params[key];\n _results1.push(key === 'orderBy' || fixture[key] === value);\n }\n return _results1;\n })();\n if (matches.reduce(function(a, b) {\n return a && b;\n })) {\n _results.push(fixture);\n } else {\n _results.push(null);\n }\n }\n return _results;\n })();\n return array.load(hashes.compact());\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/fixture_adapter");minispade.register('store/rest_adapter', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('models');\n\n this.Travis.RestAdapter = DS.RESTAdapter.extend({\n mappings: {\n repositories: Travis.Repo,\n repository: Travis.Repo,\n repos: Travis.Repo,\n repo: Travis.Repo,\n builds: Travis.Build,\n build: Travis.Build,\n commits: Travis.Commit,\n commit: Travis.Commit,\n jobs: Travis.Job,\n job: Travis.Job,\n account: Travis.Account,\n accounts: Travis.Account,\n worker: Travis.Worker,\n workers: Travis.Worker\n },\n plurals: {\n repositories: 'repositories',\n repository: 'repositories',\n repo: 'repos',\n repos: 'repos',\n build: 'builds',\n branch: 'branches',\n job: 'jobs',\n worker: 'workers',\n profile: 'profile'\n },\n ajax: function() {\n return Travis.ajax.ajax.apply(this, arguments);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/rest_adapter");minispade.register('tailing', "(function() {(function() {\n\n this.Travis.Tailing = function() {\n this.position = $(window).scrollTop();\n $(window).scroll(this.onScroll.bind(this));\n return this;\n };\n\n $.extend(Travis.Tailing.prototype, {\n options: {\n timeout: 200\n },\n run: function() {\n this.autoScroll();\n this.positionButton();\n if (this.active()) {\n return Ember.run.later(this.run.bind(this), this.options.timeout);\n }\n },\n toggle: function(event) {\n if (this.active()) {\n return this.stop();\n } else {\n return this.start();\n }\n },\n active: function() {\n return $('#tail').hasClass('active');\n },\n start: function() {\n $('#tail').addClass('active');\n return this.run();\n },\n stop: function() {\n return $('#tail').removeClass('active');\n },\n autoScroll: function() {\n var log, logBottom, win, winBottom;\n if (!this.active()) {\n return;\n }\n win = $(window);\n log = $('#log');\n logBottom = log.offset().top + log.outerHeight() + 40;\n winBottom = win.scrollTop() + win.height();\n if (logBottom - winBottom > 0) {\n return win.scrollTop(logBottom - win.height());\n }\n },\n onScroll: function() {\n var position;\n this.positionButton();\n position = $(window).scrollTop();\n if (position < this.position) {\n this.stop();\n }\n return this.position = position;\n },\n positionButton: function() {\n var max, offset, tail;\n tail = $('#tail');\n if (tail.length === 0) {\n return;\n }\n offset = $(window).scrollTop() - $('#log').offset().top;\n max = $('#log').height() - $('#tail').height() + 5;\n if (offset > max) {\n offset = max;\n }\n if (offset > 0) {\n return tail.css({\n top: offset - 2\n });\n } else {\n return tail.css({\n top: 0\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=tailing");minispade.register('views', "(function() {(function() {\nminispade.require('ext/ember/namespace');\n\n this.Travis.reopen({\n View: Em.View.extend({\n popup: function(event) {\n this.popupCloseAll();\n return $(\"#\" + event.target.name).toggleClass('display');\n },\n popupClose: function(event) {\n return $(event.target).closest('.popup').removeClass('display');\n },\n popupCloseAll: function() {\n return $('.popup').removeClass('display');\n }\n })\n });\n\n this.Travis.reopen({\n HomeLayoutView: Travis.View.extend({\n templateName: 'layouts/home'\n }),\n AuthLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n }),\n ProfileLayoutView: Travis.View.extend({\n templateName: 'layouts/profile'\n }),\n StatsLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n })\n });\nminispade.require('views/accounts');\nminispade.require('views/application');\nminispade.require('views/build');\nminispade.require('views/events');\nminispade.require('views/flash');\nminispade.require('views/job');\nminispade.require('views/repo');\nminispade.require('views/profile');\nminispade.require('views/sidebar');\nminispade.require('views/stats');\nminispade.require('views/signin');\nminispade.require('views/top');\n\n}).call(this);\n\n})();\n//@ sourceURL=views");minispade.register('views/accounts', "(function() {(function() {\n\n this.Travis.reopen({\n AccountsView: Travis.View.extend({\n tabBinding: 'controller.tab',\n templateName: 'profile/accounts',\n classAccounts: (function() {\n if (this.get('tab') === 'accounts') {\n return 'active';\n }\n }).property('tab')\n }),\n AccountsListView: Em.CollectionView.extend({\n elementId: 'accounts',\n accountBinding: 'content',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n accountBinding: 'content',\n typeBinding: 'content.type',\n selectedBinding: 'account.selected',\n classNames: ['account'],\n classNameBindings: ['type', 'selected'],\n name: (function() {\n return this.get('content.name') || this.get('content.login');\n }).property('content.login', 'content.name'),\n urlAccount: (function() {\n return Travis.Urls.account(this.get('account.login'));\n }).property('account.login')\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/accounts");minispade.register('views/application', "(function() {(function() {\n\n this.Travis.reopen({\n ApplicationView: Travis.View.extend({\n templateName: 'application',\n classNames: ['application'],\n popup: function(event) {\n return console.log(event);\n },\n localeDidChange: (function() {\n var locale;\n if (locale = Travis.app.get('auth.user.locale')) {\n Travis.setLocale(locale);\n return Travis.app.get('router').reload();\n }\n }).observes('Travis.app.auth.user.locale'),\n click: function(event) {\n var targetAndParents;\n targetAndParents = $(event.target).parents().andSelf();\n if (!(targetAndParents.hasClass('open-popup') || targetAndParents.hasClass('popup'))) {\n this.popupCloseAll();\n }\n if (!targetAndParents.hasClass('menu')) {\n return $('.menu').removeClass('display');\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/application");minispade.register('views/build', "(function() {(function() {\n\n this.Travis.reopen({\n BuildsView: Travis.View.extend({\n templateName: 'builds/list',\n buildsBinding: 'controller.builds',\n showMore: function() {\n var id, number;\n id = this.get('controller.repo.id');\n number = this.get('builds.lastObject.number');\n return this.get('builds').load(Travis.Build.olderThanNumber(id, number));\n },\n ShowMoreButton: Em.View.extend({\n tagName: 'button',\n classNameBindings: ['isLoading'],\n attributeBindings: ['disabled'],\n isLoadingBinding: 'controller.builds.isLoading',\n template: Em.Handlebars.compile('{{view.label}}'),\n disabledBinding: 'isLoading',\n label: (function() {\n if (this.get('isLoading')) {\n return 'Loading';\n } else {\n return 'Show more';\n }\n }).property('isLoading'),\n click: function() {\n return this.get('parentView').showMore();\n }\n })\n }),\n BuildsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'controller.repo',\n buildBinding: 'context',\n commitBinding: 'build.commit',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha')\n }),\n BuildView: Travis.View.extend({\n templateName: 'builds/show',\n elementId: 'build',\n classNameBindings: ['color', 'loading'],\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n commitBinding: 'build.commit',\n currentItemBinding: 'build',\n loading: (function() {\n return !this.get('build.isComplete');\n }).property('build.isComplete'),\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/build");minispade.register('views/events', "(function() {(function() {\n\n this.Travis.reopen({\n EventsView: Travis.View.extend({\n templateName: 'events/list',\n eventsBinding: 'controller.events'\n }),\n EventsItemView: Travis.View.extend({\n tagName: 'tr'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/events");minispade.register('views/flash', "(function() {(function() {\n\n this.Travis.reopen({\n FlashView: Travis.View.extend({\n elementId: 'flash',\n tagName: 'ul',\n templateName: 'layouts/flash'\n }),\n FlashItemView: Travis.View.extend({\n tagName: 'li',\n classNameBindings: ['type'],\n type: (function() {\n return this.get('flash') && Ember.keys(this.get('flash'))[0];\n }).property('flash'),\n message: (function() {\n return this.get('flash') && this.get('flash')[this.get('type')];\n }).property('flash'),\n close: function(event) {\n return this.get('controller').removeObject(this.get('flash'));\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/flash");minispade.register('views/job', "(function() {(function() {\n\n this.Travis.reopen({\n JobsView: Travis.View.extend({\n templateName: 'jobs/list',\n buildBinding: 'controller.build'\n }),\n JobsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'context.repo',\n jobBinding: 'context',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id')\n }),\n JobView: Travis.View.extend({\n templateName: 'jobs/show',\n repoBinding: 'controller.repo',\n jobBinding: 'controller.job',\n commitBinding: 'job.commit',\n currentItemBinding: 'job',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n }),\n LogView: Travis.View.extend({\n templateName: 'jobs/log',\n logBinding: 'job.log',\n scrollTo: function(hash) {\n $('#main').scrollTop(0);\n $('html,body').scrollTop($(hash).offset().top);\n return this.set('controller.lineNumberHash', null);\n },\n lineNumberHashDidChange: (function() {\n return this.tryScrollingToHashLineNumber();\n }).observes('controller.lineNumberHash'),\n tryScrollingToHashLineNumber: function() {\n var checker, hash, self;\n if (hash = this.get('controller.lineNumberHash')) {\n self = this;\n checker = function() {\n if (self.get('isDestroyed')) {\n return;\n }\n if ($(hash).length) {\n return self.scrollTo(hash);\n } else {\n return setTimeout(checker, 100);\n }\n };\n return checker();\n }\n },\n didInsertElement: function() {\n this._super.apply(this, arguments);\n return this.tryScrollingToHashLineNumber();\n },\n click: function(event) {\n var path, target;\n target = $(event.target);\n target.closest('.fold').toggleClass('open');\n if (target.is('.log-line-number')) {\n path = target.attr('href');\n Travis.app.get('router').route(path);\n event.stopPropagation();\n return false;\n }\n },\n toTop: function() {\n return $(window).scrollTop(0);\n },\n jobBinding: 'context',\n toggleTailing: function(event) {\n Travis.app.tailing.toggle();\n return event.preventDefault();\n },\n logSubscriber: (function() {\n var job, state;\n job = this.get('job');\n state = this.get('job.state');\n if (job && state !== 'finished') {\n job.subscribe();\n }\n return null;\n }).property('job', 'job.state')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/job");minispade.register('views/left', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n tabBinding: 'controller.tab',\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/left");minispade.register('views/profile', "(function() {(function() {\n\n this.Travis.reopen({\n ProfileView: Travis.View.extend({\n templateName: 'profile/show',\n accountBinding: 'controller.account',\n name: (function() {\n return this.get('account.name') || this.get('account.login');\n }).property('account.name', 'account.login')\n }),\n ProfileTabsView: Travis.View.extend({\n templateName: 'profile/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classHooks: (function() {\n if (this.get('tab') === 'hooks') {\n return 'active';\n }\n }).property('tab'),\n classUser: (function() {\n if (this.get('tab') === 'user') {\n return 'active';\n }\n }).property('tab'),\n accountBinding: 'controller.account',\n displayUser: (function() {\n return this.get('controller.account.login') === this.get('controller.user.login');\n }).property('controller.account.login', 'controller.user.login')\n }),\n HooksView: Travis.View.extend({\n templateName: 'profile/tabs/hooks',\n userBinding: 'controller.user',\n urlGithubAdmin: (function() {\n return Travis.Urls.githubAdmin(this.get('hook.slug'));\n }).property('hook.slug')\n }),\n UserView: Travis.View.extend({\n templateName: 'profile/tabs/user',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=48&d=mm\";\n }).property('user.gravatarId'),\n locales: (function() {\n return [\n {\n key: null,\n name: ''\n }, {\n key: 'en',\n name: 'English'\n }, {\n key: 'ca',\n name: 'Catalan'\n }, {\n key: 'cs',\n name: 'Čeština'\n }, {\n key: 'es',\n name: 'Español'\n }, {\n key: 'fr',\n name: 'Français'\n }, {\n key: 'ja',\n name: '日本語'\n }, {\n key: 'nl',\n name: 'Nederlands'\n }, {\n key: 'nb',\n name: 'Norsk Bokmål'\n }, {\n key: 'pl',\n name: 'Polski'\n }, {\n key: {\n 'pt-BR': {\n name: 'Português brasileiro'\n }\n }\n }, {\n key: 'ru',\n name: 'Русский'\n }\n ];\n }).property(),\n saveLocale: function(event) {\n return this.get('user').updateLocale($('#locale').val());\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/profile");minispade.register('views/repo', "(function() {(function() {\nminispade.require('views/repo/list');\nminispade.require('views/repo/show');\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo");minispade.register('views/repo/list', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n toggleInfo: function(event) {\n return $('#repos').toggleClass('open');\n }\n }),\n ReposListView: Em.CollectionView.extend({\n elementId: 'repos',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n repoBinding: 'content',\n classNames: ['repo'],\n classNameBindings: ['color', 'selected'],\n selectedBinding: 'repo.selected',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('repo.lastBuildResult'));\n }).property('repo.lastBuildResult'),\n urlRepo: (function() {\n return Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlLastBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('repo.lastBuildId'));\n }).property('repo.slug', 'repo.lastBuildId')\n })\n }),\n ReposListTabsView: Travis.View.extend({\n templateName: 'repos/list/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.app.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/list");minispade.register('views/repo/show', "(function() {(function() {\n\n this.Travis.reopen({\n RepoView: Travis.View.extend({\n templateName: 'repos/show',\n reposBinding: 'controller.repos',\n repoBinding: 'controller.repo',\n \"class\": (function() {\n if (!this.get('repo.isComplete') && !this.get('isEmpty')) {\n return 'loading';\n }\n }).property('repo.isComplete'),\n isEmpty: (function() {\n return this.get('repos.length') === 0;\n }).property('repos.length'),\n urlGithub: (function() {\n return Travis.Urls.githubRepo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubWatchers: (function() {\n return Travis.Urls.githubWatchers(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubNetwork: (function() {\n return Travis.Urls.githubNetwork(this.get('repo.slug'));\n }).property('repo.slug')\n }),\n ReposEmptyView: Travis.View.extend({\n template: ''\n }),\n RepoShowTabsView: Travis.View.extend({\n templateName: 'repos/show/tabs',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n classCurrent: (function() {\n if (this.get('tab') === 'current') {\n return 'active';\n }\n }).property('tab'),\n classBuilds: (function() {\n if (this.get('tab') === 'builds') {\n return 'active';\n }\n }).property('tab'),\n classPullRequests: (function() {\n if (this.get('tab') === 'pull_requests') {\n return 'active';\n }\n }).property('tab'),\n classBranches: (function() {\n if (this.get('tab') === 'branches') {\n return 'active';\n }\n }).property('tab'),\n classEvents: (function() {\n if (this.get('tab') === 'events') {\n return 'active';\n }\n }).property('tab'),\n classBuild: (function() {\n var classes, tab;\n tab = this.get('tab');\n classes = [];\n if (tab === 'build') {\n classes.push('active');\n }\n if (tab === 'build' || tab === 'job') {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab'),\n classJob: (function() {\n if (this.get('tab') === 'job') {\n return 'active display-inline';\n }\n }).property('tab')\n }),\n RepoShowToolsView: Travis.View.extend({\n templateName: 'repos/show/tools',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n closeMenu: function() {\n return $('.menu').removeClass('display');\n },\n menu: function(event) {\n var element;\n this.popupCloseAll();\n element = $('#tools .menu').toggleClass('display');\n return event.stopPropagation();\n },\n requeue: function() {\n this.closeMenu();\n return this.get('build').requeue();\n },\n statusImages: function(event) {\n this.set('active', true);\n this.closeMenu();\n this.popup(event);\n return event.stopPropagation();\n },\n canPush: (function() {\n return this.get('isBuildTab') && this.get('build.isFinished') && this.get('hasPushPermissions');\n }).property('build.isFinished', 'hasPushPermissions', 'isBuildTab'),\n isBuildTab: (function() {\n return ['current', 'build', 'job'].indexOf(this.get('tab')) > -1;\n }).property('tab'),\n hasPushPermissions: (function() {\n var permissions;\n if (permissions = Travis.app.get('currentUser.permissions')) {\n return permissions.indexOf(this.get('repo.id')) > -1;\n }\n }).property('Travis.app.currentUser.permissions.length', 'repo.id'),\n branches: (function() {\n if (this.get('active')) {\n return this.get('repo.branches');\n }\n }).property('active', 'repo.branches'),\n urlRepo: (function() {\n return 'https://' + location.host + Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlStatusImage: (function() {\n return Travis.Urls.statusImage(this.get('repo.slug'), this.get('branch.commit.branch'));\n }).property('repo.slug', 'branch'),\n markdownStatusImage: (function() {\n return \"[) + \")](\" + (this.get('urlRepo')) + \")\";\n }).property('urlStatusImage'),\n textileStatusImage: (function() {\n return \"!\" + (this.get('urlStatusImage')) + \"!:\" + (this.get('urlRepo'));\n }).property('urlStatusImage'),\n rdocStatusImage: (function() {\n return \"{ }[\" + (this.get('urlRepo')) + \"]\";\n }).property('urlStatusImage')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/show");minispade.register('views/sidebar', "(function() {(function() {\n\n this.Travis.reopen({\n SidebarView: Travis.View.extend({\n templateName: 'layouts/sidebar',\n DecksView: Em.View.extend({\n templateName: \"sponsors/decks\",\n controller: Travis.SponsorsController.create({\n perPage: 1\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n Travis.app.get('router.sidebarController').tickables.push(controller);\n controller.set('content', Travis.Sponsor.decks());\n }\n return this._super.apply(this, arguments);\n }\n }),\n LinksView: Em.View.extend({\n templateName: \"sponsors/links\",\n controller: Travis.SponsorsController.create({\n perPage: 6\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n controller.set('content', Travis.Sponsor.links());\n Travis.app.get('router.sidebarController').tickables.push(controller);\n }\n return this._super.apply(this, arguments);\n }\n }),\n WorkersView: Em.View.extend({\n templateName: 'workers/list',\n controller: Travis.WorkersController.create(),\n didInsertElement: function() {\n this.set('controller.content', Travis.Worker.find());\n return this._super.apply(this, arguments);\n }\n }),\n QueuesView: Em.View.extend({\n templateName: 'queues/list',\n controller: Em.ArrayController.create(),\n didInsertElement: function() {\n var queue, queues;\n queues = (function() {\n var _i, _len, _ref, _results;\n _ref = Travis.QUEUES;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n queue = _ref[_i];\n _results.push(Em.ArrayController.create({\n content: Travis.Job.queued(queue.name),\n id: \"queue_\" + queue.name,\n name: queue.display\n }));\n }\n return _results;\n })();\n this.set('controller.content', queues);\n return this._super.apply(this, arguments);\n }\n })\n }),\n WorkersView: Travis.View.extend({\n toggleWorkers: function(event) {\n var handle;\n handle = $(event.target).toggleClass('open');\n if (handle.hasClass('open')) {\n return $('#workers li').addClass('open');\n } else {\n return $('#workers li').removeClass('open');\n }\n }\n }),\n WorkersListView: Travis.View.extend({\n toggle: function(event) {\n return $(event.target).closest('li').toggleClass('open');\n }\n }),\n WorkersItemView: Travis.View.extend({\n display: (function() {\n var name, number, payload, repo, state;\n name = (this.get('worker.name') || '').replace('travis-', '');\n state = this.get('worker.state');\n payload = this.get('worker.payload');\n if (state === 'working' && (payload != null ? payload.repository : void 0) && (payload != null ? payload.build : void 0)) {\n repo = payload.repository.slug;\n number = ' #' + payload.build.number;\n return (\"\" + name + \": \" + repo + \" \" + number).htmlSafe();\n } else {\n return \"\" + name + \": \" + state;\n }\n }).property('worker.state')\n }),\n QueueItemView: Travis.View.extend({\n tagName: 'li'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/sidebar");minispade.register('views/signin', "(function() {(function() {\n\n this.Travis.reopen({\n SigninView: Travis.View.extend({\n templateName: 'auth/signin',\n signingIn: (function() {\n return Travis.app.get('authState') === 'signing-in';\n }).property('Travis.app.authState')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/signin");minispade.register('views/stats', "(function() {(function() {\n\n this.Travis.reopen({\n StatsView: Travis.View.extend({\n templateName: 'stats/show',\n didInsertElement: function() {},\n renderChart: function(config) {\n var chart;\n chart = new Highcharts.Chart(config);\n return this.fetch(config.source, function(data) {\n var stats;\n stats = (function() {\n var _i, _len, _ref, _results;\n _ref = data.stats;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n stats = _ref[_i];\n _results.push(config.map(stats));\n }\n return _results;\n })();\n return chart.series[0].setData(stats);\n });\n },\n fetch: function(url, callback) {\n return $.ajax({\n type: 'GET',\n url: url,\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n },\n success: callback\n });\n },\n CHARTS: {\n repos: {\n source: '/api/stats/repos',\n total: 0,\n map: function(data) {\n return [Date.parse(data.date), this.total += parseInt(data.count)];\n },\n chart: {\n renderTo: \"repos_stats\"\n },\n title: {\n text: \"Total Projects/Repositories\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" repos\";\n }\n },\n series: [\n {\n name: \"Repository Growth\",\n data: []\n }\n ]\n },\n builds: {\n source: '/api/stats/tests',\n map: function(data) {\n return [Date.parse(data.date), parseInt(data.count)];\n },\n chart: {\n renderTo: \"tests_stats\",\n type: \"column\"\n },\n title: {\n text: \"Build Count\"\n },\n subtitle: {\n text: \"last month\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" builds\";\n }\n },\n series: [\n {\n name: \"Total Builds\",\n data: []\n }\n ]\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/stats");minispade.register('views/top', "(function() {(function() {\n\n this.Travis.reopen({\n TopView: Travis.View.extend({\n templateName: 'layouts/top',\n tabBinding: 'controller.tab',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=24&d=mm\";\n }).property('user.gravatarId'),\n classHome: (function() {\n if (this.get('tab') === 'home') {\n return 'active';\n }\n }).property('tab'),\n classStats: (function() {\n if (this.get('tab') === 'stats') {\n return 'active';\n }\n }).property('tab'),\n classProfile: (function() {\n var classes;\n classes = ['profile'];\n if (this.get('tab') === 'profile') {\n classes.push('active');\n }\n classes.push(Travis.app.get('authState'));\n return classes.join(' ');\n }).property('tab', 'Travis.app.authState'),\n showProfile: function() {\n return $('#top .profile ul').show();\n },\n hideProfile: function() {\n return $('#top .profile ul').hide();\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/top");minispade.register('config/emoij', "(function() {(function() {\n\n this.EmojiDictionary = ['-1', '0', '1', '109', '2', '3', '4', '5', '6', '7', '8', '8ball', '9', 'a', 'ab', 'airplane', 'alien', 'ambulance', 'angel', 'anger', 'angry', 'apple', 'aquarius', 'aries', 'arrow_backward', 'arrow_down', 'arrow_forward', 'arrow_left', 'arrow_lower_left', 'arrow_lower_right', 'arrow_right', 'arrow_up', 'arrow_upper_left', 'arrow_upper_right', 'art', 'astonished', 'atm', 'b', 'baby', 'baby_chick', 'baby_symbol', 'balloon', 'bamboo', 'bank', 'barber', 'baseball', 'basketball', 'bath', 'bear', 'beer', 'beers', 'beginner', 'bell', 'bento', 'bike', 'bikini', 'bird', 'birthday', 'black_square', 'blue_car', 'blue_heart', 'blush', 'boar', 'boat', 'bomb', 'book', 'boot', 'bouquet', 'bow', 'bowtie', 'boy', 'bread', 'briefcase', 'broken_heart', 'bug', 'bulb', 'bullettrain_front', 'bullettrain_side', 'bus', 'busstop', 'cactus', 'cake', 'calling', 'camel', 'camera', 'cancer', 'capricorn', 'car', 'cat', 'cd', 'chart', 'checkered_flag', 'cherry_blossom', 'chicken', 'christmas_tree', 'church', 'cinema', 'city_sunrise', 'city_sunset', 'clap', 'clapper', 'clock1', 'clock10', 'clock11', 'clock12', 'clock2', 'clock3', 'clock4', 'clock5', 'clock6', 'clock7', 'clock8', 'clock9', 'closed_umbrella', 'cloud', 'clubs', 'cn', 'cocktail', 'coffee', 'cold_sweat', 'computer', 'confounded', 'congratulations', 'construction', 'construction_worker', 'convenience_store', 'cool', 'cop', 'copyright', 'couple', 'couple_with_heart', 'couplekiss', 'cow', 'crossed_flags', 'crown', 'cry', 'cupid', 'currency_exchange', 'curry', 'cyclone', 'dancer', 'dancers', 'dango', 'dart', 'dash', 'de', 'department_store', 'diamonds', 'disappointed', 'dog', 'dolls', 'dolphin', 'dress', 'dvd', 'ear', 'ear_of_rice', 'egg', 'eggplant', 'egplant', 'eight_pointed_black_star', 'eight_spoked_asterisk', 'elephant', 'email', 'es', 'european_castle', 'exclamation', 'eyes', 'factory', 'fallen_leaf', 'fast_forward', 'fax', 'fearful', 'feelsgood', 'feet', 'ferris_wheel', 'finnadie', 'fire', 'fire_engine', 'fireworks', 'fish', 'fist', 'flags', 'flushed', 'football', 'fork_and_knife', 'fountain', 'four_leaf_clover', 'fr', 'fries', 'frog', 'fuelpump', 'gb', 'gem', 'gemini', 'ghost', 'gift', 'gift_heart', 'girl', 'goberserk', 'godmode', 'golf', 'green_heart', 'grey_exclamation', 'grey_question', 'grin', 'guardsman', 'guitar', 'gun', 'haircut', 'hamburger', 'hammer', 'hamster', 'hand', 'handbag', 'hankey', 'hash', 'headphones', 'heart', 'heart_decoration', 'heart_eyes', 'heartbeat', 'heartpulse', 'hearts', 'hibiscus', 'high_heel', 'horse', 'hospital', 'hotel', 'hotsprings', 'house', 'hurtrealbad', 'icecream', 'id', 'ideograph_advantage', 'imp', 'information_desk_person', 'iphone', 'it', 'jack_o_lantern', 'japanese_castle', 'joy', 'jp', 'key', 'kimono', 'kiss', 'kissing_face', 'kissing_heart', 'koala', 'koko', 'kr', 'leaves', 'leo', 'libra', 'lips', 'lipstick', 'lock', 'loop', 'loudspeaker', 'love_hotel', 'mag', 'mahjong', 'mailbox', 'man', 'man_with_gua_pi_mao', 'man_with_turban', 'maple_leaf', 'mask', 'massage', 'mega', 'memo', 'mens', 'metal', 'metro', 'microphone', 'minidisc', 'mobile_phone_off', 'moneybag', 'monkey', 'monkey_face', 'moon', 'mortar_board', 'mount_fuji', 'mouse', 'movie_camera', 'muscle', 'musical_note', 'nail_care', 'necktie', 'new', 'no_good', 'no_smoking', 'nose', 'notes', 'o', 'o2', 'ocean', 'octocat', 'octopus', 'oden', 'office', 'ok', 'ok_hand', 'ok_woman', 'older_man', 'older_woman', 'open_hands', 'ophiuchus', 'palm_tree', 'parking', 'part_alternation_mark', 'pencil', 'penguin', 'pensive', 'persevere', 'person_with_blond_hair', 'phone', 'pig', 'pill', 'pisces', 'plus1', 'point_down', 'point_left', 'point_right', 'point_up', 'point_up_2', 'police_car', 'poop', 'post_office', 'postbox', 'pray', 'princess', 'punch', 'purple_heart', 'question', 'rabbit', 'racehorse', 'radio', 'rage', 'rage1', 'rage2', 'rage3', 'rage4', 'rainbow', 'raised_hands', 'ramen', 'red_car', 'red_circle', 'registered', 'relaxed', 'relieved', 'restroom', 'rewind', 'ribbon', 'rice', 'rice_ball', 'rice_cracker', 'rice_scene', 'ring', 'rocket', 'roller_coaster', 'rose', 'ru', 'runner', 'sa', 'sagittarius', 'sailboat', 'sake', 'sandal', 'santa', 'satellite', 'satisfied', 'saxophone', 'school', 'school_satchel', 'scissors', 'scorpius', 'scream', 'seat', 'secret', 'shaved_ice', 'sheep', 'shell', 'ship', 'shipit', 'shirt', 'shit', 'shoe', 'signal_strength', 'six_pointed_star', 'ski', 'skull', 'sleepy', 'slot_machine', 'smile', 'smiley', 'smirk', 'smoking', 'snake', 'snowman', 'sob', 'soccer', 'space_invader', 'spades', 'spaghetti', 'sparkler', 'sparkles', 'speaker', 'speedboat', 'squirrel', 'star', 'star2', 'stars', 'station', 'statue_of_liberty', 'stew', 'strawberry', 'sunflower', 'sunny', 'sunrise', 'sunrise_over_mountains', 'surfer', 'sushi', 'suspect', 'sweat', 'sweat_drops', 'swimmer', 'syringe', 'tada', 'tangerine', 'taurus', 'taxi', 'tea', 'telephone', 'tennis', 'tent', 'thumbsdown', 'thumbsup', 'ticket', 'tiger', 'tm', 'toilet', 'tokyo_tower', 'tomato', 'tongue', 'top', 'tophat', 'traffic_light', 'train', 'trident', 'trophy', 'tropical_fish', 'truck', 'trumpet', 'tshirt', 'tulip', 'tv', 'u5272', 'u55b6', 'u6307', 'u6708', 'u6709', 'u6e80', 'u7121', 'u7533', 'u7a7a', 'umbrella', 'unamused', 'underage', 'unlock', 'up', 'us', 'v', 'vhs', 'vibration_mode', 'virgo', 'vs', 'walking', 'warning', 'watermelon', 'wave', 'wc', 'wedding', 'whale', 'wheelchair', 'white_square', 'wind_chime', 'wink', 'wink2', 'wolf', 'woman', 'womans_hat', 'womens', 'x', 'yellow_heart', 'zap', 'zzz'];\n\n}).call(this);\n\n})();\n//@ sourceURL=config/emoij");minispade.register('data/sponsors', "(function() {(function() {\n\n this.Travis.SPONSORS = [\n {\n type: 'platinum',\n url: \"http://www.wooga.com\",\n image: \"wooga-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://bendyworks.com\",\n image: \"bendyworks-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://cloudcontrol.com\",\n image: \"cloudcontrol-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://xing.de\",\n image: \"xing-205x130.png\"\n }, {\n type: 'gold',\n url: \"http://heroku.com\",\n image: \"heroku-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://soundcloud.com\",\n image: \"soundcloud-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://nedap.com\",\n image: \"nedap-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://mongohq.com\",\n image: \"mongohq-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://zweitag.de\",\n image: \"zweitag-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://kanbanery.com\",\n image: \"kanbanery-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://ticketevolution.com\",\n image: \"ticketevolution-205x60.jpg\"\n }, {\n type: 'gold',\n url: \"http://plan.io/travis\",\n image: \"planio-205x60.png\"\n }, {\n type: 'silver',\n link: \"Cobot : The one tool to run your coworking space \"\n }, {\n type: 'silver',\n link: \"JumpstartLab : We build developers \"\n }, {\n type: 'silver',\n link: \"Evil Martians : Agile Ruby on Rails development \"\n }, {\n type: 'silver',\n link: \"Zendesk : Love your helpdesk \"\n }, {\n type: 'silver',\n link: \"Stripe : Payments for developers \"\n }, {\n type: 'silver',\n link: \"Basho : We make Riak! \"\n }, {\n type: 'silver',\n link: \"Relevance : We deliver software solutions \"\n }, {\n type: 'silver',\n link: \"Mindmatters : Software für Menschen \"\n }, {\n type: 'silver',\n link: \"Amen : The best and worst of everything \"\n }, {\n type: 'silver',\n link: \"Site5 : Premium Web Hosting Solutions \"\n }, {\n type: 'silver',\n link: \"Crowd Interactive : Leading Rails consultancy in Mexico \"\n }, {\n type: 'silver',\n link: \"Atomic Object : Work with really smart people \"\n }, {\n type: 'silver',\n link: \"Codeminer : smart services for your startup \"\n }, {\n type: 'silver',\n link: \"Cloudant : grow into your data layer, not out of it \"\n }, {\n type: 'silver',\n link: \"Gidsy : Explore, organize & book unique things to do! \"\n }, {\n type: 'silver',\n link: \"5apps : Package & deploy HTML5 apps automatically \"\n }, {\n type: 'silver',\n link: \"Meltmedia : We are Interactive Superheroes \"\n }, {\n type: 'silver',\n link: \"Fingertips offers design and development services \"\n }, {\n type: 'silver',\n link: \"Engine Yard : Build epic apps, let us handle the rest \"\n }, {\n type: 'silver',\n link: \"Malwarebytes : Defeat Malware once and for all. \"\n }, {\n type: 'silver',\n link: \"Readmill : The best reading app on the iPad. \"\n }, {\n type: 'silver',\n link: \"Medidata : clinical tech improving quality of life \"\n }, {\n type: 'silver',\n link: \"ESM : Japan's best agile Ruby/Rails consultancy \"\n }, {\n type: 'silver',\n link: \"Twitter : instantly connects people everywhere \"\n }, {\n type: 'silver',\n link: \"AGiLE ANiMAL : we <3 Travis CI. \"\n }, {\n type: 'silver',\n link: \"Tupalo : Discover, review & share local businesses. \"\n }\n ];\n\n this.Travis.WORKERS = {\n \"jvm-otp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n },\n \"jvm-otp2.worker.travis-ci.org\": {\n name: \"Transloadit\",\n url: \"http://transloadit.com\"\n },\n \"ppp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://beta.travis-ci.com\"\n },\n \"ppp2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ppp3.worker.travis-ci.org\": {\n name: \"Alchemy CMS\",\n url: \"http://alchemy-cms.com/\"\n },\n \"rails1.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby1.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"ruby2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby3.worker.travis-ci.org\": {\n name: \"Railslove\",\n url: \"http://railslove.de\"\n },\n \"ruby4.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"spree.worker.travis-ci.org\": {\n name: \"Spree\",\n url: \"http://spreecommerce.com\"\n },\n \"staging.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=data/sponsors");minispade.register('ext/jquery', "(function() {(function() {\n\n $.fn.extend({\n outerHtml: function() {\n return $(this).wrap('
').parent().html();\n },\n outerElement: function() {\n return $($(this).outerHtml()).empty();\n },\n flash: function() {\n return Utils.flash(this);\n },\n unflash: function() {\n return Utils.unflash(this);\n },\n filterLog: function() {\n this.deansi();\n return this.foldLog();\n },\n deansi: function() {\n return this.html(Utils.deansi(this.html()));\n },\n foldLog: function() {\n return this.html(Utils.foldLog(this.html()));\n },\n unfoldLog: function() {\n return this.html(Utils.unfoldLog(this.html()));\n },\n updateTimes: function() {\n return Utils.updateTimes(this);\n },\n activateTab: function(tab) {\n return Utils.activateTab(this, tab);\n },\n timeInWords: function() {\n return $(this).each(function() {\n return $(this).text(Utils.timeInWords(parseInt($(this).attr('title'))));\n });\n },\n updateGithubStats: function(repo) {\n return Utils.updateGithubStats(repo, $(this));\n }\n });\n\n $.extend({\n isEmpty: function(obj) {\n if ($.isArray(obj)) {\n return !obj.length;\n } else if ($.isObject(obj)) {\n return !$.keys(obj).length;\n } else {\n return !obj;\n }\n },\n isObject: function(obj) {\n return Object.prototype.toString.call(obj) === '[object Object]';\n },\n keys: function(obj) {\n var keys;\n keys = [];\n $.each(obj, function(key) {\n return keys.push(key);\n });\n return keys;\n },\n values: function(obj) {\n var values;\n values = [];\n $.each(obj, function(key, value) {\n return values.push(value);\n });\n return values;\n },\n underscore: function(string) {\n return string[0].toLowerCase() + string.substring(1).replace(/([A-Z])?/g, function(match, chr) {\n if (chr) {\n return \"_\" + (chr.toUpperCase());\n } else {\n return '';\n }\n });\n },\n camelize: function(string, uppercase) {\n string = uppercase === false ? $.underscore(string) : $.capitalize(string);\n return string.replace(/_(.)?/g, function(match, chr) {\n if (chr) {\n return chr.toUpperCase();\n } else {\n return '';\n }\n });\n },\n capitalize: function(string) {\n return string[0].toUpperCase() + string.substring(1);\n },\n compact: function(object) {\n return $.grep(object, function(value) {\n return !!value;\n });\n },\n all: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return false;\n }\n i++;\n }\n return true;\n },\n detect: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return array[i];\n }\n i++;\n }\n },\n select: function(array, callback) {\n var args, i, result;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n result = [];\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n result.push(array[i]);\n }\n i++;\n }\n return result;\n },\n slice: function(object, key) {\n var keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) > -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n only: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) !== -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n except: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) === -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n intersect: function(array, other) {\n return array.filter(function(element) {\n return other.indexOf(element) !== -1;\n });\n },\n map: function(elems, callback, arg) {\n var i, isArray, key, length, ret, value;\n value = void 0;\n key = void 0;\n ret = [];\n i = 0;\n length = elems.length;\n isArray = elems instanceof jQuery || length !== void 0 && typeof length === 'number' && (length > 0 && elems[0] && elems[length - 1]) || length === 0 || jQuery.isArray(elems);\n if (isArray) {\n while (i < length) {\n value = callback(elems[i], i, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n i++;\n }\n } else {\n for (key in elems) {\n value = callback(elems[key], key, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n }\n }\n return ret.concat.apply([], ret);\n },\n shuffle: function(array) {\n var current, tmp, top;\n array = array.slice();\n top = array.length;\n while (top && --top) {\n current = Math.floor(Math.random() * (top + 1));\n tmp = array[current];\n array[current] = array[top];\n array[top] = tmp;\n }\n return array;\n },\n truncate: function(string, length) {\n if (string.length > length) {\n return string.trim().substring(0, length) + '...';\n } else {\n return string;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=ext/jquery");minispade.register('travis/ajax', "(function() {(function() {\n\n jQuery.support.cors = true;\n\n this.Travis.ajax = Em.Object.create({\n DEFAULT_OPTIONS: {\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n }\n },\n get: function(url, callback) {\n return this.ajax(url, 'get', {\n success: callback\n });\n },\n post: function(url, data, callback) {\n return this.ajax(url, 'post', {\n data: data,\n success: callback\n });\n },\n ajax: function(url, method, options) {\n var endpoint, success, token, _base,\n _this = this;\n endpoint = Travis.config.api_endpoint || '';\n options = options || {};\n if (token = sessionStorage.getItem('travis.token')) {\n options.headers || (options.headers = {});\n (_base = options.headers)['Authorization'] || (_base['Authorization'] = \"token \" + token);\n }\n options.url = \"\" + endpoint + url;\n options.type = method;\n options.dataType = 'json';\n options.contentType = 'application/json; charset=utf-8';\n options.context = this;\n if (options.data && method !== 'GET' && method !== 'get') {\n options.data = JSON.stringify(options.data);\n }\n success = options.success || (function() {});\n options.success = function(data) {\n var _ref;\n if (((_ref = Travis.app) != null ? _ref.router : void 0) && data.flash) {\n Travis.app.router.flashController.pushObjects(data.flash);\n }\n delete data.flash;\n return success.call(_this, data);\n };\n options.error = function(data) {\n if (data.flash) {\n return Travis.app.router.flashController.pushObject(data.flash);\n }\n };\n return $.ajax($.extend(options, Travis.ajax.DEFAULT_OPTIONS));\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ajax");minispade.register('travis/expandable_record_array', "(function() {(function() {\n\n Travis.ExpandableRecordArray = DS.RecordArray.extend({\n isLoaded: false,\n isLoading: false,\n load: function(array) {\n var observer, self;\n this.set('isLoading', true);\n self = this;\n observer = function() {\n var content;\n if (this.get('isLoaded')) {\n content = self.get('content');\n array.removeObserver('isLoaded', observer);\n array.forEach(function(record) {\n return self.pushObject(record);\n });\n self.set('isLoading', false);\n return self.set('isLoaded', true);\n }\n };\n return array.addObserver('isLoaded', observer);\n },\n pushObject: function(record) {\n var clientId, id, ids;\n ids = this.get('content');\n id = record.get('id');\n clientId = record.get('clientId');\n if (ids.contains(clientId)) {\n return;\n }\n return ids.pushObject(clientId);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/expandable_record_array");minispade.register('travis/limited_array', "(function() {(function() {\n\n Travis.LimitedArray = Em.ArrayProxy.extend({\n limit: 10,\n init: function() {\n return this._super.apply(this, arguments);\n },\n arrangedContent: (function() {\n var content;\n if (content = this.get('content')) {\n return content.slice(0, this.get('limit'));\n }\n }).property('content'),\n contentArrayDidChange: function(array, index, removedCount, addedCount) {\n var addedObjects, arrangedContent, length, limit, object, _i, _len;\n this._super.apply(this, arguments);\n if (addedCount > 0) {\n addedObjects = array.slice(index, index + addedCount);\n arrangedContent = this.get('arrangedContent');\n for (_i = 0, _len = addedObjects.length; _i < _len; _i++) {\n object = addedObjects[_i];\n arrangedContent.unshiftObject(object);\n }\n limit = this.get('limit');\n length = arrangedContent.get('length');\n if (length > limit) {\n return arrangedContent.replace(limit, length - limit);\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/limited_array");minispade.register('travis/location', "(function() {(function() {\n\n Travis.Location = Ember.HistoryLocation.extend({\n onUpdateURL: function(callback) {\n var guid;\n guid = Ember.guidFor(this);\n return Ember.$(window).bind('popstate.ember-location-' + guid, function(e) {\n return callback(location.pathname + location.hash);\n });\n },\n getURL: function() {\n var location;\n location = this.get('location');\n return location.pathname + location.hash;\n }\n });\n\n Ember.Location.implementations['travis'] = Travis.Location;\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/location");minispade.register('travis/log', "(function() {(function() {\n\n this.Travis.Log = {\n FOLDS: {\n schema: /(\\$ (?:bundle exec )?rake( db:create)? db:schema:load[\\s\\S]*?-- assume_migrated_upto_version[\\s\\S]*?<\\/p>\\n.*<\\/p>)/g,\n migrate: /(\\$ (?:bundle exec )?rake( db:create)? db:migrate[\\s\\S]*== +\\w+: migrated \\(.*\\) =+)/g,\n bundle: /(\\$ bundle install.*<\\/p>\\n((Updating|Using|Installing|Fetching|remote:|Receiving|Resolving).*?<\\/p>\\n|<\\/p>\\n)*)/g,\n exec: /([\\/\\w]*.rvm\\/rubies\\/[\\S]*?\\/(ruby|rbx|jruby) .*?<\\/p>)/g\n },\n filter: function(log, path) {\n log = this.escape(log);\n log = this.deansi(log);\n log = log.replace(/\\r/g, '');\n log = this.number(log, path);\n log = this.fold(log);\n log = log.replace(/\\n/g, '');\n return log;\n },\n stripPaths: function(log) {\n return log.replace(/\\/home\\/vagrant\\/builds(\\/[^\\/\\n]+){2}\\//g, '');\n },\n escape: function(log) {\n return Handlebars.Utils.escapeExpression(log);\n },\n escapeRuby: function(log) {\n return log.replace(/#<(\\w+.*?)>/, '#<$1>');\n },\n number: function(log, path) {\n var result;\n path = \"\" + path + \"/\";\n result = '';\n $.each(log.trim().split('\\n'), function(ix, line) {\n var number, pathWithNumber;\n number = ix + 1;\n pathWithNumber = \"\" + path + \"#L\" + number;\n return result += '%@ %@
\\n'.fmt(pathWithNumber, number, number, number, line);\n });\n return result.trim();\n },\n deansi: function(log) {\n var ansi, text;\n log = log.replace(/\\r\\r/g, '\\r').replace(/\\033\\[K\\r/g, '\\r').replace(/^.*\\r(?!$)/gm, '').replace(/\u001b\\[2K/g, '').replace(/\\033\\(B/g, \"\");\n ansi = ansiparse(log);\n text = '';\n ansi.forEach(function(part) {\n var classes;\n classes = [];\n part.foreground && classes.push(part.foreground);\n part.background && classes.push('bg-' + part.background);\n part.bold && classes.push('bold');\n part.italic && classes.push('italic');\n return text += (classes.length ? '' + part.text + ' ' : part.text);\n });\n return text.replace(/\\033/g, '');\n },\n fold: function(log) {\n log = this.unfold(log);\n $.each(Travis.Log.FOLDS, function(name, pattern) {\n return log = log.replace(pattern, function() {\n return '' + arguments[1].trim() + '
';\n });\n });\n return log;\n },\n unfold: function(log) {\n return log.replace(/([\\s\\S]*?)<\\/div>/g, '$1\\n');\n },\n location: function() {\n return window.location.hash;\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/log");minispade.register('travis/model', "(function() {(function() {\n\n this.Travis.Model = DS.Model.extend({\n primaryKey: 'id',\n id: DS.attr('number'),\n init: function() {\n this.loadedAttributes = [];\n return this._super.apply(this, arguments);\n },\n get: function(name) {\n if (this.constructor.isAttribute(name) && this.get('incomplete') && !this.isAttributeLoaded(name)) {\n this.loadTheRest();\n }\n return this._super.apply(this, arguments);\n },\n refresh: function() {\n var id, store;\n if (id = this.get('id')) {\n store = this.get('store');\n return store.adapter.find(store, this.constructor, id);\n }\n },\n update: function(attrs) {\n var _this = this;\n $.each(attrs, function(key, value) {\n if (key !== 'id') {\n return _this.set(key, value);\n }\n });\n return this;\n },\n isAttributeLoaded: function(name) {\n return this.loadedAttributes.contains(name);\n },\n isComplete: (function() {\n if (this.get('incomplete')) {\n this.loadTheRest();\n return false;\n } else {\n this.set('isCompleting', false);\n return this.get('isLoaded');\n }\n }).property('incomplete', 'isLoaded'),\n loadTheRest: function() {\n if (this.get('isCompleting')) {\n return;\n }\n this.set('isCompleting', true);\n return this.refresh();\n },\n select: function() {\n return this.constructor.select(this.get('id'));\n }\n });\n\n this.Travis.Model.reopenClass({\n find: function() {\n if (arguments.length === 0) {\n return Travis.app.store.findAll(this);\n } else {\n return this._super.apply(this, arguments);\n }\n },\n filter: function(callback) {\n return Travis.app.store.filter(this, callback);\n },\n load: function(attrs) {\n return Travis.app.store.load(this, attrs);\n },\n select: function(id) {\n return this.find().forEach(function(record) {\n return record.set('selected', record.get('id') === id);\n });\n },\n buildURL: function(suffix) {\n var base, url;\n base = this.url || this.pluralName();\n Ember.assert('Base URL (' + base + ') must not start with slash', !base || base.toString().charAt(0) !== '/');\n Ember.assert('URL suffix (' + suffix + ') must not start with slash', !suffix || suffix.toString().charAt(0) !== '/');\n url = [base];\n if (suffix !== void 0) {\n url.push(suffix);\n }\n return url.join('/');\n },\n singularName: function() {\n var name, parts;\n parts = this.toString().split('.');\n name = parts[parts.length - 1];\n return name.replace(/([A-Z])/g, '_$1').toLowerCase().slice(1);\n },\n pluralName: function() {\n return Travis.app.store.adapter.pluralize(this.singularName());\n },\n isAttribute: function(name) {\n if (!this.attributesSaved) {\n this._saveAttributes();\n }\n return this.cachedAttributes.contains(name);\n },\n _saveAttributes: function() {\n var cachedAttributes;\n this.attributesSaved = true;\n cachedAttributes = [];\n this.eachComputedProperty(function(name, meta) {\n if (meta.isAttribute) {\n return cachedAttributes.pushObject(name);\n }\n });\n return this.cachedAttributes = cachedAttributes;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/model");minispade.register('travis/ticker', "(function() {(function() {\n\n this.Travis.Ticker = Ember.Object.extend({\n init: function() {\n if (this.get('interval') !== -1) {\n return this.schedule();\n }\n },\n tick: function() {\n var context, target, targets, _i, _len;\n context = this.get('context');\n targets = this.get('targets') || [this.get('target')];\n for (_i = 0, _len = targets.length; _i < _len; _i++) {\n target = targets[_i];\n if (context) {\n target = context.get(target);\n }\n if (target) {\n target.tick();\n }\n }\n return this.schedule();\n },\n schedule: function() {\n var _this = this;\n return Ember.run.later((function() {\n return _this.tick();\n }), this.get('interval') || Travis.app.TICK_INTERVAL);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ticker");minispade.register('travis', "(function() {(function() {\nminispade.require('ext/jquery');\nminispade.require('ext/ember/namespace');\n\n this.Travis = Em.Namespace.create({\n config: {\n api_endpoint: $('meta[rel=\"travis.api_endpoint\"]').attr('href'),\n pusher_key: $('meta[name=\"travis.pusher_key\"]').attr('value')\n },\n CONFIG_KEYS: ['rvm', 'gemfile', 'env', 'jdk', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala'],\n ROUTES: {\n 'profile/:login/me': ['profile', 'user'],\n 'profile/:login': ['profile', 'hooks'],\n 'profile': ['profile', 'hooks'],\n 'stats': ['stats', 'show'],\n ':owner/:name/jobs/:id/:line': ['home', 'job'],\n ':owner/:name/jobs/:id': ['home', 'job'],\n ':owner/:name/builds/:id': ['home', 'build'],\n ':owner/:name/builds': ['home', 'builds'],\n ':owner/:name/pull_requests': ['home', 'pullRequests'],\n ':owner/:name/branches': ['home', 'branches'],\n ':owner/:name': ['home', 'current'],\n '': ['home', 'index'],\n '#': ['home', 'index']\n },\n QUEUES: [\n {\n name: 'common',\n display: 'Common'\n }, {\n name: 'php',\n display: 'PHP, Perl and Python'\n }, {\n name: 'node_js',\n display: 'Node.js'\n }, {\n name: 'jvmotp',\n display: 'JVM and Erlang'\n }, {\n name: 'rails',\n display: 'Rails'\n }, {\n name: 'spree',\n display: 'Spree'\n }\n ],\n INTERVALS: {\n sponsors: -1,\n times: -1,\n updateTimes: 1000\n },\n setLocale: function(locale) {\n if (!locale) {\n return;\n }\n I18n.locale = locale;\n return localStorage.setItem('travis.config.locale', locale);\n },\n run: function(attrs) {\n if (location.hash.slice(0, 2) === '#!') {\n location.href = location.href.replace('#!/', '');\n }\n this.setLocale(localStorage.getItem('travis.config.locale'));\n return Ember.run.next(this, function() {\n var app,\n _this = this;\n app = Travis.App.create(attrs || {});\n $.each(Travis, function(key, value) {\n if (value && value.isClass && key !== 'constructor') {\n return app[key] = value;\n }\n });\n this.app = app;\n this.store = app.store;\n return $(function() {\n return app.initialize();\n });\n });\n }\n });\nminispade.require('travis/ajax');\nminispade.require('app');\n\n}).call(this);\n\n})();\n//@ sourceURL=travis");minispade.register('templates', "(function() {\nEmber.TEMPLATES['application'] = Ember.Handlebars.compile(\"{{outlet}}\\n\");\n\nEmber.TEMPLATES['auth/signin'] = Ember.Handlebars.compile(\"{{#if view.signingIn}}\\n
Signing in ... \\n
\\n Trying to authenticate with GitHub.\\n
\\n{{else}}\\n
Sign in \\n
\\n Please sign in with GitHub. \\n
\\n{{/if}}\\n\\n\\n\");\n\nEmber.TEMPLATES['builds/list'] = Ember.Handlebars.compile(\"{{#if builds.isLoaded}}\\n
\\n \\n \\n {{t builds.name}} \\n {{t builds.commit}} \\n {{t builds.message}} \\n {{t builds.duration}} \\n {{t builds.finished_at}} \\n \\n \\n\\n \\n {{#each build in builds}}\\n {{#view Travis.BuildsItemView contextBinding=\\\"build\\\"}}\\n \\n \\n {{#if id}}\\n \\n {{number}}\\n \\n {{/if}}\\n \\n \\n \\n {{formatCommit commit}}\\n \\n \\n \\n {{{formatMessage commit.message short=\\\"true\\\"}}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n
\\n {{view view.ShowMoreButton}}\\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if loading}}\\n
Loading \\n {{else}}\\n
\\n \\n
{{t builds.name}} \\n
\\n \\n {{#if build.id}}\\n {{build.number}} \\n {{/if}}\\n \\n
{{t builds.finished_at}} \\n
{{formatTime build.finishedAt}} \\n
{{t builds.duration}} \\n
{{formatDuration build.duration}} \\n
\\n\\n \\n\\n {{t builds.message}} \\n {{{formatMessage build.commit.message}}} \\n\\n {{#unless isMatrix}}\\n {{t builds.config}} \\n {{formatConfig build.config}} \\n {{/unless}}\\n \\n\\n {{#if build.isMatrix}}\\n {{view Travis.JobsView jobsBinding=\\\"build.requiredJobs\\\" required=\\\"true\\\"}}\\n {{view Travis.JobsView jobsBinding=\\\"build.allowedFailureJobs\\\"}}\\n {{else}}\\n {{view Travis.LogView contextBinding=\\\"build.jobs.firstObject\\\"}}\\n {{/if}}\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['events/list'] = Ember.Handlebars.compile(\"{{#if view.events.isLoaded}}\\n
\\n \\n \\n Time \\n Event \\n Result \\n Message \\n \\n \\n\\n \\n {{#each event in view.events}}\\n {{#view Travis.EventsItemView contextBinding=\\\"event\\\"}}\\n \\n {{formatTime createdAt}}\\n \\n \\n {{event.event_}}\\n \\n \\n {{event.result}}\\n \\n \\n {{event.message}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\\n\");\n\nEmber.TEMPLATES['jobs/list'] = Ember.Handlebars.compile(\"{{#if view.jobs.length}}\\n {{#if view.required}}\\n
\\n \\n {{t jobs.build_matrix}}\\n \\n {{else}}\\n \\n \\n {{t jobs.allowed_failures}}\\n \\n \\n {{/if}}\\n \\n \\n {{#each key in view.build.configKeys}}\\n {{key}} \\n {{/each}}\\n \\n \\n \\n {{#each job in view.jobs}}\\n {{#view Travis.JobsItemView contextBinding=\\\"job\\\"}}\\n \\n \\n {{#if job.id}}\\n {{number}} \\n {{/if}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{#each value in configValues}}\\n {{value}} \\n {{/each}}\\n {{/view}}\\n {{/each}}\\n \\n
\\n\\n {{#unless view.required}}\\n \\n {{/unless}}\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/log'] = Ember.Handlebars.compile(\"{{view.logSubscriber}}\\n\\n{{#if log.isLoaded}}\\n \\n \\n Follow logs \\n {{{formatLog log.body repo=\\\"repository\\\" item=\\\"parentView.currentItem\\\"}}} \\n\\n {{#if sponsor.name}}\\n \\n {{/if}}\\n\\n To top \\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if job.isComplete}}\\n \\n
\\n \\n
Job \\n
\\n \\n {{#if job.id}}\\n {{job.number}} \\n {{/if}}\\n \\n
{{t jobs.finished_at}} \\n
{{formatTime job.finishedAt}} \\n
{{t jobs.duration}} \\n
{{formatDuration job.duration}} \\n
\\n\\n \\n\\n {{t jobs.message}} \\n {{formatMessage commit.message}} \\n {{t jobs.config}} \\n {{formatConfig job.config}} \\n \\n\\n {{view Travis.LogView contextBinding=\\\"job\\\"}}}\\n
\\n {{else}}\\n \\n Loading \\n
\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['layouts/flash'] = Ember.Handlebars.compile(\"{{#each flash in controller}}\\n {{#view Travis.FlashItemView flashBinding=\\\"flash\\\"}}\\n {{view.message}}
\\n \\n {{/view}}\\n{{/each}}\\n\");\n\nEmber.TEMPLATES['layouts/home'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n {{outlet right}}\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/profile'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n
\\n\\n
\\n\\n
\\n
Getting started? \\n
\\n Please read our guide .\\n It will only take a few minutes :)\\n
\\n
\\n You can find detailled docs on our about site.\\n
\\n
\\n If you need help please don't hesitate to join\\n #travis on irc.freenode.net\\n or our mailinglist .\\n
\\n
\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/sidebar'] = Ember.Handlebars.compile(\"\\n\\n\\n\\n{{view view.DecksView}}\\n{{view view.WorkersView}}\\n{{view view.QueuesView}}\\n{{view view.LinksView}}\\n\\n\\n
{{t layouts.about.join}} \\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/simple'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n
\\n\\n\");\n\nEmber.TEMPLATES['layouts/top'] = Ember.Handlebars.compile(\"\\n Travis \\n \\n\\n\\n\");\n\nEmber.TEMPLATES['profile/accounts'] = Ember.Handlebars.compile(\"\\n
\\n\\n\\n\\n\\n {{#collection Travis.AccountsListView contentBinding=\\\"controller\\\"}}\\n
{{view.name}} \\n
\\n Repositories: \\n {{view.account.reposCount}} \\n
\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['profile/show'] = Ember.Handlebars.compile(\"{{view.name}} \\n\\n{{view Travis.ProfileTabsView}}\\n\\n\\n {{outlet pane}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n {{#if view.displayUser}}\\n \\n \\n \\n {{/if}}\\n \\n\");\n\nEmber.TEMPLATES['profile/tabs/hooks'] = Ember.Handlebars.compile(\"\\n {{{t profiles.show.message.your_repos}}}\\n
\\n\\n{{#if hooks.isLoaded}}\\n {{#if user.isSyncing}}\\n \\n Please wait while we sync from GitHub \\n
\\n {{else}}\\n \\n Last synchronized from GitHub: {{formatTime user.syncedAt}}\\n \\n Sync now\\n \\n
\\n\\n \\n {{#each hook in hooks}}\\n \\n {{hook.slug}} \\n {{hook.description}}
\\n\\n \\n \\n {{else}}\\n \\n You do not seem to have any repositories that we could sync.\\n \\n {{/each}}\\n \\n {{/if}}\\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs/user'] = Ember.Handlebars.compile(\" \\n\\n\\n \\n {{t profiles.show.github}}:\\n \\n \\n {{user.login}} \\n \\n \\n {{t profiles.show.email}}:\\n \\n \\n {{user.email}}\\n \\n \\n {{t profiles.show.token}}:\\n \\n \\n {{user.token}}\\n \\n \\n\\n\\n\\n\\n\");\n\nEmber.TEMPLATES['queues/list'] = Ember.Handlebars.compile(\"\\n{{#each queue in controller}}\\n \\n {{t queue}}: {{queue.name}} \\n \\n \\n{{/each}}\\n \\n\");\n\nEmber.TEMPLATES['repos/list'] = Ember.Handlebars.compile(\"\\n {{view Ember.TextField valueBinding=\\\"controller.search\\\"}}\\n
\\n\\n{{view Travis.ReposListTabsView}}\\n\\n \\n\\n\\n {{#collection Travis.ReposListView contentBinding=\\\"controller\\\"}}\\n {{#with view.repo}}\\n
\\n
\\n {{#if slug}}\\n
{{slug}} \\n {{/if}}\\n
\\n {{#if lastBuildId}}\\n
{{lastBuildNumber}} \\n {{/if}}\\n\\n
\\n {{t repositories.duration}}: \\n {{formatDuration lastBuildDuration}} ,\\n {{t repositories.finished_at}}: \\n {{formatTime lastBuildFinishedAt}} \\n
\\n\\n
\\n\\n {{#if description}}\\n
\\n {{/if}}\\n {{/with}}\\n {{else}}\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['repos/list/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\\n\");\n\nEmber.TEMPLATES['repos/show'] = Ember.Handlebars.compile(\"\\n {{#if view.isEmpty}}\\n {{view Travis.ReposEmptyView}}\\n {{else}}\\n {{#if view.repo.isComplete}}\\n {{#with view.repo}}\\n
\\n\\n
{{description}}
\\n\\n
\\n\\n {{view Travis.RepoShowTabsView}}\\n {{view Travis.RepoShowToolsView}}\\n {{/with}}\\n\\n {{else}}\\n
Loading \\n {{/if}}\\n\\n
\\n {{outlet pane}}\\n
\\n {{/if}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['repos/show/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n {{#if view.repo.slug}}\\n \\n Events\\n \\n {{/if}}\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\");\n\nEmber.TEMPLATES['repos/show/tools'] = Ember.Handlebars.compile(\"\\n\\n\\n\");\n\nEmber.TEMPLATES['sponsors/decks'] = Ember.Handlebars.compile(\"{{t layouts.application.sponsers}} \\n\\n\\n\\n\\n \\n {{{t layouts.application.sponsors_link}}}\\n \\n
\\n\");\n\nEmber.TEMPLATES['sponsors/links'] = Ember.Handlebars.compile(\"\\n\\n\");\n\nEmber.TEMPLATES['stats/show'] = Ember.Handlebars.compile(\"Sorry \\nStatistics are disabled for now.
\\n We're looking into a solution. If you want to help, please ping us!
\\n\");\n\nEmber.TEMPLATES['workers/list'] = Ember.Handlebars.compile(\"{{#view Travis.WorkersView}}\\n \\n {{t workers}}\\n \\n \\n \\n {{#each group in controller.groups}}\\n {{#view Travis.WorkersListView}}\\n \\n \\n {{group.firstObject.host}}\\n \\n \\n {{#each worker in group}}\\n {{#view Travis.WorkersItemView workerBinding=\\\"worker\\\"}}\\n \\n
\\n {{#if worker.isWorking}}\\n {{#if worker.job_id}}\\n \\n {{view.display}}\\n \\n {{/if}}\\n {{else}}\\n {{view.display}}\\n {{/if}}\\n \\n {{/view}}\\n {{/each}}\\n \\n \\n {{/view}}\\n {{else}}\\n No workers\\n {{/each}}\\n \\n{{/view}}\\n\");\n\n})();\n//@ sourceURL=templates");minispade.register('config/locales', "(function() {window.I18n = window.I18n || {}\nwindow.I18n.translations = {\"ca\":{\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"pt-BR\":\"português brasileiro\",\"ru\":\"Русский\"}},\"en\":{\"errors\":{\"messages\":{\"not_found\":\"not found\",\"already_confirmed\":\"was already confirmed\",\"not_locked\":\"was not locked\"}},\"devise\":{\"failure\":{\"unauthenticated\":\"You need to sign in or sign up before continuing.\",\"unconfirmed\":\"You have to confirm your account before continuing.\",\"locked\":\"Your account is locked.\",\"invalid\":\"Invalid email or password.\",\"invalid_token\":\"Invalid authentication token.\",\"timeout\":\"Your session expired, please sign in again to continue.\",\"inactive\":\"Your account was not activated yet.\"},\"sessions\":{\"signed_in\":\"Signed in successfully.\",\"signed_out\":\"Signed out successfully.\"},\"passwords\":{\"send_instructions\":\"You will receive an email with instructions about how to reset your password in a few minutes.\",\"updated\":\"Your password was changed successfully. You are now signed in.\"},\"confirmations\":{\"send_instructions\":\"You will receive an email with instructions about how to confirm your account in a few minutes.\",\"confirmed\":\"Your account was successfully confirmed. You are now signed in.\"},\"registrations\":{\"signed_up\":\"You have signed up successfully. If enabled, a confirmation was sent to your e-mail.\",\"updated\":\"You updated your account successfully.\",\"destroyed\":\"Bye! Your account was successfully cancelled. We hope to see you again soon.\"},\"unlocks\":{\"send_instructions\":\"You will receive an email with instructions about how to unlock your account in a few minutes.\",\"unlocked\":\"Your account was successfully unlocked. You are now signed in.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Confirmation instructions\"},\"reset_password_instructions\":{\"subject\":\"Reset password instructions\"},\"unlock_instructions\":{\"subject\":\"Unlock Instructions\"}}},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hour\",\"other\":\"%{count} hours\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} second\",\"other\":\"%{count} seconds\"}}},\"workers\":\"Workers\",\"queue\":\"Queue\",\"no_job\":\"There are no jobs\",\"repositories\":{\"branch\":\"Branch\",\"image_url\":\"Image URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"tabs\":{\"current\":\"Current\",\"build_history\":\"Build History\",\"branches\":\"Branch Summary\",\"pull_requests\":\"Pull Requests\",\"build\":\"Build\",\"job\":\"Job\"}},\"build\":{\"job\":\"Job\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"show_more\":\"Show more\"},\"layouts\":{\"top\":{\"home\":\"Home\",\"blog\":\"Blog\",\"docs\":\"Docs\",\"stats\":\"Stats\",\"github_login\":\"Sign in with Github\",\"profile\":\"Profile\",\"sign_out\":\"Sign Out\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Recent\",\"search\":\"Search\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"See all of our amazing sponsors →\",\"my_repositories\":\"My Repositories\"},\"about\":{\"alpha\":\"This stuff is alpha.\",\"messages\":{\"alpha\":\"Please do not consider this a stable service. We're still far from that! More info here. \"},\"join\":\"Join us and help!\",\"mailing_list\":\"Mailing List\",\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Author\",\"build\":\"Build\",\"build_matrix\":\"Build Matrix\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Compare\",\"config\":\"Config\",\"duration\":\"Duration\",\"finished_at\":\"Finished at\",\"job\":\"Job\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Flick the switches below to turn on the Travis service hook for your projects, then push to GitHub.\",\"config\":\"how to configure custom build options\"},\"messages\":{\"notice\":\"To get started, please read our Getting Started guide .\\n It will only take a couple of minutes. \"},\"token\":\"Token\",\"your_repos\":\"Your Repositories\",\"update\":\"Update\",\"update_locale\":\"Update\",\"your_locale\":\"Your Locale\"}},\"statistics\":{\"index\":{\"count\":\"Count\",\"repo_growth\":\"Repository Growth\",\"total_projects\":\"Total Projects/Repositories\",\"build_count\":\"Build Count\",\"last_month\":\"last month\",\"total_builds\":\"Total Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"es\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"workers\":\"Procesos\",\"queue\":\"Cola\",\"no_job\":\"No hay trabajos\",\"repositories\":{\"branch\":\"Rama\",\"image_url\":\"Imagen URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"tabs\":{\"current\":\"Actual\",\"build_history\":\"Histórico\",\"branches\":\"Ramas\",\"build\":\"Builds\",\"job\":\"Trabajo\"}},\"build\":{\"job\":\"Trabajo\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"sponsored_by\":\"Patrocinado por\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"layouts\":{\"top\":{\"home\":\"Inicio\",\"blog\":\"Blog\",\"docs\":\"Documentación\",\"stats\":\"Estadísticas\",\"github_login\":\"Iniciar sesión con Github\",\"profile\":\"Perfil\",\"sign_out\":\"Desconectar\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Hazme un Fork en Github\",\"recent\":\"Reciente\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Ver todos nuestros patrocinadores →\",\"my_repositories\":\"Mis Repositorios\"},\"about\":{\"alpha\":\"Esto es alpha.\",\"messages\":{\"alpha\":\"Por favor no considereis esto un servicio estable. Estamos estamos aún lejos de ello! Más información aquí. \"},\"join\":\"Únetenos y ayudanos!\",\"mailing_list\":\"Lista de Correos\",\"repository\":\"Repositorio\",\"twitter\":\"Twitter\"}},\"profiles\":{\"show\":{\"email\":\"Correo electrónico\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Activa los interruptores para inicial el Travis service hook para tus proyectos, y haz un Push en GitHub. \\n Para probar varias versiones de ruby, mira\",\"config\":\"como configurar tus propias opciones para el Build\"},\"messages\":{\"notice\":\"Para comenzar, por favor lee nuestra Guía de Inicio .\\n Solo tomará unos pocos minutos. \"},\"token\":\"Token\",\"your_repos\":\"Tus repositorios\",\"update\":\"Actualizar\",\"update_locale\":\"Actualizar\",\"your_locale\":\"Tu Idioma\"}},\"statistics\":{\"index\":{\"count\":\"Número\",\"repo_growth\":\"Crecimiento de Repositorios\",\"total_projects\":\"Total de Proyectos/Repositorios\",\"build_count\":\"Número de Builds\",\"last_month\":\"mes anterior\",\"total_builds\":\"Total de Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"fr\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} heure\",\"other\":\"%{count} heures\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} secondes\"}}},\"workers\":\"Processus\",\"queue\":\"File\",\"no_job\":\"Pas de tâches\",\"repositories\":{\"branch\":\"Branche\",\"image_url\":\"Image\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"tabs\":{\"current\":\"Actuel\",\"build_history\":\"Historique des tâches\",\"branches\":\"Résumé des branches\",\"build\":\"Construction\",\"job\":\"Tâche\"}},\"build\":{\"job\":\"Tâche\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"builds\":{\"name\":\"Version\",\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"layouts\":{\"top\":{\"home\":\"Accueil\",\"blog\":\"Blog\",\"docs\":\"Documentation\",\"stats\":\"Statistiques\",\"github_login\":\"Connection Github\",\"profile\":\"Profil\",\"sign_out\":\"Déconnection\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Faites un Fork sur Github\",\"recent\":\"Récent\",\"search\":\"Chercher\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Voir tous nos extraordinaire sponsors →\",\"my_repositories\":\"Mes dépôts\"},\"about\":{\"alpha\":\"Ceci est en alpha.\",\"messages\":{\"alpha\":\"S'il vous plaît ne considérez pas ce service comme étant stable. Nous sommes loin de ça! Plus d'infos ici. \"},\"join\":\"Joignez-vous à nous et aidez-nous!\",\"mailing_list\":\"Liste de distribution\",\"repository\":\"Dépôt\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Version\",\"build_matrix\":\"Matrice des versions\",\"commit\":\"Commit\",\"committer\":\"Committeur\",\"compare\":\"Comparer\",\"config\":\"Config\",\"duration\":\"Durée\",\"finished_at\":\"Terminé à\",\"job\":\"Tâche\",\"log\":\"Journal\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"message\":{\"your_repos\":\"Utilisez les boutons ci-dessous pour activer Travis sur vos projets puis déployez sur GitHub. \\nPour tester sur plus de versions de ruby, voir\",\"config\":\"comment configurer des options de version personnalisées\"},\"messages\":{\"notice\":\"Pour commencer, veuillez lire notre guide de démarrage .\\n Cela ne vous prendra que quelques minutes. \"},\"token\":\"Jeton\",\"your_repos\":\"Vos dépôts\",\"email\":\"Courriel\",\"update\":\"Modifier\",\"update_locale\":\"Modifier\",\"your_locale\":\"Votre langue\"}},\"statistics\":{\"index\":{\"count\":\"Décompte\",\"repo_growth\":\"Croissance de dépôt\",\"total_projects\":\"Total des projets/dépôts\",\"build_count\":\"Décompte des versions\",\"last_month\":\"mois dernier\",\"total_builds\":\"Total des versions\"}},\"admin\":{\"actions\":{\"create\":\"créer\",\"created\":\"créé\",\"delete\":\"supprimer\",\"deleted\":\"supprimé\",\"update\":\"mise à jour\",\"updated\":\"mis à jour\"},\"credentials\":{\"log_out\":\"Déconnection\"},\"delete\":{\"confirmation\":\"Oui, je suis sure\",\"flash_confirmation\":\"%{name} a été détruit avec succès\"},\"flash\":{\"error\":\"%{name} n'a pas pu être %{action}\",\"noaction\":\"Aucune action n'a été entreprise\",\"successful\":\"%{name} a réussi à %{action}\"},\"history\":{\"name\":\"Historique\",\"no_activity\":\"Aucune activité\",\"page_name\":\"Historique pour %{name}\"},\"list\":{\"add_new\":\"Ajouter un nouveau\",\"delete_action\":\"Supprimer\",\"delete_selected\":\"Supprimer la sélection\",\"edit_action\":\"Modifier\",\"search\":\"Rechercher\",\"select\":\"Sélectionner le %{name} à modifier\",\"select_action\":\"Sélectionner\",\"show_all\":\"Montrer tout\"},\"new\":{\"basic_info\":\"Information de base\",\"cancel\":\"Annuler\",\"chosen\":\"%{name} choisi\",\"chose_all\":\"Choisir tout\",\"clear_all\":\"Déselectionner tout\",\"many_chars\":\"caractères ou moins\",\"one_char\":\"caractère.\",\"optional\":\"Optionnel\",\"required\":\"Requis\",\"save\":\"Sauvegarder\",\"save_and_add_another\":\"Sauvegarder et en ajouter un autre\",\"save_and_edit\":\"Sauvegarder et modifier\",\"select_choice\":\"Faites vos choix et cliquez\"},\"dashboard\":{\"add_new\":\"Ajouter un nouveau\",\"last_used\":\"Dernière utilisation\",\"model_name\":\"Nom du modèle\",\"modify\":\"Modification\",\"name\":\"Tableau de bord\",\"pagename\":\"Administration du site\",\"records\":\"Enregistrements\",\"show\":\"Voir\",\"ago\":\"plus tôt\"}},\"home\":{\"name\":\"accueil\"},\"repository\":{\"duration\":\"Durée\"},\"devise\":{\"confirmations\":{\"confirmed\":\"Votre compte a été crée avec succès. Vous être maintenant connecté.\",\"send_instructions\":\"Vous allez recevoir un courriel avec les instructions de confirmation de votre compte dans quelques minutes.\"},\"failure\":{\"inactive\":\"Votre compte n'a pas encore été activé.\",\"invalid\":\"Adresse courriel ou mot de passe invalide.\",\"invalid_token\":\"Jeton d'authentification invalide.\",\"locked\":\"Votre compte est bloqué.\",\"timeout\":\"Votre session est expirée, veuillez vous reconnecter pour continuer.\",\"unauthenticated\":\"Vous devez vous connecter ou vous enregistrer afin de continuer\",\"unconfirmed\":\"Vous devez confirmer votre compte avant de continuer.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instructions de confirmations\"},\"reset_password_instructions\":{\"subject\":\"Instruction de remise à zéro du mot de passe\"},\"unlock_instructions\":{\"subject\":\"Instruction de débloquage\"}},\"passwords\":{\"send_instructions\":\"Vous recevrez un courriel avec les instructions de remise à zéro du mot de passe dans quelques minutes.\",\"updated\":\"Votre mot de passe a été changé avec succès. Vous êtes maintenant connecté.\"},\"registrations\":{\"destroyed\":\"Au revoir! Votre compte a été annulé avec succès. Nous espérons vous revoir bientôt.\",\"signed_up\":\"Vous êtes enregistré avec succès. Si activé, une confirmation vous a été envoyé par courriel.\",\"updated\":\"Votre compte a été mis a jour avec succès\"},\"sessions\":{\"signed_in\":\"Connecté avec succès\",\"signed_out\":\"Déconnecté avec succès\"},\"unlocks\":{\"send_instructions\":\"Vous recevrez un courriel contenant les instructions pour débloquer votre compte dans quelques minutes.\",\"unlocked\":\"Votre compte a été débloqué avec succès.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"étais déja confirmé\",\"not_found\":\"n'a pas été trouvé\",\"not_locked\":\"n'étais pas bloqué\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"ja\":{\"workers\":\"ワーカー\",\"queue\":\"キュー\",\"no_job\":\"ジョブはありません\",\"repositories\":{\"branch\":\"ブランチ\",\"image_url\":\"画像URL\",\"markdown\":\".md\",\"textile\":\".textile\",\"rdoc\":\".rdoc\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"tabs\":{\"current\":\"最新\",\"build_history\":\"ビルド履歴\",\"branches\":\"ブランチまとめ\",\"build\":\"ビルド\",\"job\":\"ジョブ\"}},\"build\":{\"job\":\"ジョブ\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"ビルドマトリクス\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"builds\":{\"name\":\"ビルド\",\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"失敗許容範囲外\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"layouts\":{\"about\":{\"alpha\":\"まだアルファですよ!\",\"join\":\"参加してみよう!\",\"mailing_list\":\"メールリスト\",\"messages\":{\"alpha\":\"Travis-ciは安定したサービスまで後一歩!詳しくはこちら \"},\"repository\":\"リポジトリ\",\"twitter\":\"ツイッター\"},\"application\":{\"fork_me\":\"Githubでフォークしよう\",\"my_repositories\":\"マイリポジトリ\",\"recent\":\"最近\",\"search\":\"検索\",\"sponsers\":\"スポンサー\",\"sponsors_link\":\"スポンサーをもっと見る →\"},\"top\":{\"blog\":\"ブログ\",\"docs\":\"Travisとは?\",\"github_login\":\"Githubでログイン\",\"home\":\"ホーム\",\"profile\":\"プロフィール\",\"sign_out\":\"ログアウト\",\"stats\":\"統計\",\"admin\":\"管理\"},\"mobile\":{\"author\":\"制作者\",\"build\":\"ビルド\",\"build_matrix\":\"ビルドマトリクス\",\"commit\":\"コミット\",\"committer\":\"コミット者\",\"compare\":\"比較\",\"config\":\"設定\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"job\":\"ジョブ\",\"log\":\"ログ\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"email\":\"メール\",\"message\":{\"config\":\"詳細設定\",\"your_repos\":\"以下のスイッチを設定し、Travis-ciを有効にします。Githubへプッシュしたらビルドは自動的に開始します。複数バーションや細かい設定はこちらへ:\"},\"messages\":{\"notice\":\"まずはTravisのはじめ方 を参照してください。\"},\"token\":\"トークン\",\"your_repos\":\"リポジトリ\",\"update\":\"更新\",\"update_locale\":\"更新\",\"your_locale\":\"言語設定\"}},\"statistics\":{\"index\":{\"build_count\":\"ビルド数\",\"count\":\"数\",\"last_month\":\"先月\",\"repo_growth\":\"リポジトリ\",\"total_builds\":\"合計ビルド数\",\"total_projects\":\"合計リポジトリ\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nb\":{\"admin\":{\"actions\":{\"create\":\"opprett\",\"created\":\"opprettet\",\"delete\":\"slett\",\"deleted\":\"slettet\",\"update\":\"oppdater\",\"updated\":\"oppdatert\"},\"credentials\":{\"log_out\":\"Logg ut\"},\"dashboard\":{\"add_new\":\"Legg til ny\",\"ago\":\"siden\",\"last_used\":\"Sist brukt\",\"model_name\":\"Modell\",\"modify\":\"Rediger\",\"name\":\"Dashbord\",\"pagename\":\"Nettstedsadministrasjon\",\"records\":\"Oppføringer\",\"show\":\"Vis\"},\"delete\":{\"confirmation\":\"Ja, jeg er sikker\",\"flash_confirmation\":\"%{name} ble slettet\"},\"flash\":{\"error\":\"%{name} kunne ikke bli %{action}\",\"noaction\":\"Ingen handlinger ble utført\",\"successful\":\"%{name} ble %{action}\"},\"history\":{\"name\":\"Logg\",\"no_activity\":\"Ingen aktivitet\",\"page_name\":\"Logg for %{name}\"},\"list\":{\"add_new\":\"Legg til ny\",\"delete_action\":\"Slett\",\"delete_selected\":\"Slett valgte\",\"edit_action\":\"Rediger\",\"search\":\"Søk\",\"select\":\"Velg %{name} for å redigere\",\"select_action\":\"Velg\",\"show_all\":\"Vis alle \"},\"new\":{\"basic_info\":\"Basisinformasjon\",\"cancel\":\"Avbryt\",\"chosen\":\"Valgt %{name}\",\"chose_all\":\"Velg alle\",\"clear_all\":\"Fjern alle\",\"many_chars\":\"eller færre tegn.\",\"one_char\":\"tegn.\",\"optional\":\"Valgfri\",\"required\":\"Påkrevd\",\"save\":\"Lagre\",\"save_and_add_another\":\"Lagre og legg til ny\",\"save_and_edit\":\"Lagre og rediger\",\"select_choice\":\"Kryss av for dine valg og klikk\"}},\"build\":{\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\"},\"builds\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testen ble kjørt på en maskin sponset av\"},\"name\":\"Jobb\",\"started_at\":\"Startet\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} time\",\"other\":\"%{count} timer\"},\"minutes_exact\":{\"one\":\"%{count} minutt\",\"other\":\"%{count} minutter\"},\"seconds_exact\":{\"one\":\"%{count} sekund\",\"other\":\"%{count} sekunder\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Din konto er aktivert og du er nå innlogget.\",\"send_instructions\":\"Om noen få minutter så vil du få en e-post med informasjon om hvordan du bekrefter kontoen din.\"},\"failure\":{\"inactive\":\"Kontoen din har ikke blitt aktivert enda.\",\"invalid\":\"Ugyldig e-post eller passord.\",\"invalid_token\":\"Ugyldig autentiseringskode.\",\"locked\":\"Kontoen din er låst.\",\"timeout\":\"Du ble logget ut siden på grunn av mangel på aktivitet, vennligst logg inn på nytt.\",\"unauthenticated\":\"Du må logge inn eller registrere deg for å fortsette.\",\"unconfirmed\":\"Du må bekrefte kontoen din før du kan fortsette.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bekreftelsesinformasjon\"},\"reset_password_instructions\":{\"subject\":\"Instruksjoner for å få nytt passord\"},\"unlock_instructions\":{\"subject\":\"Opplåsningsinstruksjoner\"}},\"passwords\":{\"send_instructions\":\"Om noen få minutter så vil du få en epost med informasjon om hvordan du kan få et nytt passord.\",\"updated\":\"Passordet ditt ble endret, og du er logget inn.\"},\"registrations\":{\"destroyed\":\"Adjø! Kontoen din ble kansellert. Vi håper vi ser deg igjen snart.\",\"signed_up\":\"Du er nå registrert.\",\"updated\":\"Kontoen din ble oppdatert.\"},\"sessions\":{\"signed_in\":\"Du er nå logget inn.\",\"signed_out\":\"Du er nå logget ut.\"},\"unlocks\":{\"send_instructions\":\"Om noen få minutter så kommer du til å få en e-post med informasjon om hvordan du kan låse opp kontoen din.\",\"unlocked\":\"Kontoen din ble låst opp, og du er nå logget inn igjen.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"har allerede blitt bekreftet\",\"not_found\":\"ikke funnnet\",\"not_locked\":\"var ikke låst\"}},\"home\":{\"name\":\"hjem\"},\"jobs\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testserien ble kjørt på en maskin sponset av\"},\"started_at\":\"Startet\"},\"layouts\":{\"about\":{\"alpha\":\"Dette er alfa-greier.\",\"join\":\"Bli med og hjelp oss!\",\"mailing_list\":\"E-postliste\",\"messages\":{\"alpha\":\"Dette er ikke en stabil tjeneste. Vi har fremdeles et stykke igjen! Mer informasjon finner du her .\"},\"repository\":\"Kodelager\",\"twitter\":\"Twitter.\"},\"application\":{\"fork_me\":\"Se koden på Github\",\"my_repositories\":\"Mine kodelagre\",\"recent\":\"Nylig\",\"search\":\"Søk\",\"sponsers\":\"Sponsorer\",\"sponsors_link\":\"Se alle de flotte sponsorene våre →\"},\"mobile\":{\"author\":\"Forfatter\",\"build\":\"Jobb\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\",\"log\":\"Logg\"},\"top\":{\"admin\":\"Administrator\",\"blog\":\"Blogg\",\"docs\":\"Dokumentasjon\",\"github_login\":\"Logg inn med Github\",\"home\":\"Hjem\",\"profile\":\"Profil\",\"sign_out\":\"Logg ut\",\"stats\":\"Statistikk\"}},\"no_job\":\"Ingen jobber finnnes\",\"profiles\":{\"show\":{\"email\":\"E-post\",\"github\":\"Github\",\"message\":{\"config\":\"hvordan sette opp egne jobbinnstillinger\",\"your_repos\":\"Slå\\u0010 på Travis for prosjektene dine ved å dra i bryterne under, og send koden til Github. \\nFor å teste mot flere ruby-versjoner, se dokumentasjonen for\"},\"messages\":{\"notice\":\"For å komme i gang, vennligst les kom-i-gang-veivisereren vår. Det tar bare et par minutter. \"},\"token\":\"Kode\",\"update\":\"Oppdater\",\"update_locale\":\"Oppdater\",\"your_locale\":\"Ditt språk\",\"your_repos\":\"Dine kodelagre\"}},\"queue\":\"Kø\",\"repositories\":{\"branch\":\"Gren\",\"commit\":\"Innsender\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"image_url\":\"Bilde-URL\",\"markdown\":\"Markdown\",\"message\":\"Beskrivelse\",\"rdoc\":\"RDOC\",\"started_at\":\"Startet\",\"tabs\":{\"branches\":\"Grensammendrag\",\"build\":\"Jobb\",\"build_history\":\"Jobblogg\",\"current\":\"Siste\",\"job\":\"Jobb\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Varighet\"},\"statistics\":{\"index\":{\"build_count\":\"Antall jobber\",\"count\":\"Antall\",\"last_month\":\"siste måned\",\"repo_growth\":\"Vekst i kodelager\",\"total_builds\":\"Totale jobber\",\"total_projects\":\"Antall prosjekter/kodelagre\"}},\"workers\":\"Arbeidere\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nl\":{\"admin\":{\"actions\":{\"create\":\"aanmaken\",\"created\":\"aangemaakt\",\"delete\":\"verwijderen\",\"deleted\":\"verwijderd\",\"update\":\"bijwerken\",\"updated\":\"bijgewerkt\"},\"credentials\":{\"log_out\":\"Afmelden\"},\"dashboard\":{\"add_new\":\"Nieuwe toevoegen\",\"ago\":\"geleden\",\"last_used\":\"Laatst gebruikt\",\"model_name\":\"Model naam\",\"modify\":\"Wijzigen\",\"pagename\":\"Site administratie\",\"show\":\"Laten zien\",\"records\":\"Gegevens\"},\"delete\":{\"confirmation\":\"Ja, ik ben zeker\",\"flash_confirmation\":\"%{name} is vernietigd\"},\"flash\":{\"error\":\"%{name} kon niet worden %{action}\",\"noaction\":\"Er zijn geen acties genomen\",\"successful\":\"%{name} is %{action}\"},\"history\":{\"name\":\"Geschiedenis\",\"no_activity\":\"Geen activiteit\",\"page_name\":\"Geschiedenis van %{name}\"},\"list\":{\"add_new\":\"Nieuwe toevoegen\",\"delete_action\":\"Verwijderen\",\"delete_selected\":\"Verwijder geselecteerden\",\"edit_action\":\"Bewerken\",\"search\":\"Zoeken\",\"select\":\"Selecteer %{name} om te bewerken\",\"select_action\":\"Selecteer\",\"show_all\":\"Laat allen zien\"},\"new\":{\"basic_info\":\"Basisinfo\",\"cancel\":\"Annuleren\",\"chosen\":\"%{name} gekozen\",\"chose_all\":\"Kies allen\",\"clear_all\":\"Deselecteer allen\",\"many_chars\":\"tekens of minder.\",\"one_char\":\"teken.\",\"optional\":\"Optioneel\",\"required\":\"Vereist\",\"save\":\"Opslaan\",\"save_and_add_another\":\"Opslaan en een nieuwe toevoegen\",\"save_and_edit\":\"Opslaan en bewerken\",\"select_choice\":\"Selecteer uw keuzes en klik\"}},\"build\":{\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"job\":\"Taak\"},\"builds\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw Matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze tests zijn gedraaid op een machine gesponsord door\"},\"name\":\"Bouw\",\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} uur\",\"other\":\"%{count} uren\"},\"minutes_exact\":{\"one\":\"%{count} minuut\",\"other\":\"%{count} minuten\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} seconden\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Uw account is bevestigd. U wordt nu ingelogd.\",\"send_instructions\":\"Binnen enkele minuten zal u een email ontvangen met instructies om uw account te bevestigen.\"},\"failure\":{\"inactive\":\"Uw account is nog niet geactiveerd.\",\"invalid\":\"Ongeldig email adres of wachtwoord.\",\"invalid_token\":\"Ongeldig authenticatie token.\",\"locked\":\"Uw account is vergrendeld.\",\"timeout\":\"Uw sessie is verlopen, gelieve opnieuw in te loggen om verder te gaan.\",\"unauthenticated\":\"U moet inloggen of u registeren voordat u verder gaat.\",\"unconfirmed\":\"U moet uw account bevestigen voordat u verder gaat.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bevestigings-instructies\"},\"reset_password_instructions\":{\"subject\":\"Wachtwoord herstel instructies\"},\"unlock_instructions\":{\"subject\":\"Ontgrendel-instructies\"}},\"passwords\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw wachtwoord opnieuw in te stellen.\",\"updated\":\"Uw wachtwoord is veranderd. U wordt nu ingelogd.\"},\"registrations\":{\"destroyed\":\"Dag! Uw account is geannuleerd. We hopen u vlug terug te zien.\",\"signed_up\":\"Uw registratie is voltooid. Als het ingeschakeld is wordt een bevestiging naar uw email adres verzonden.\",\"updated\":\"Het bijwerken van uw account is gelukt.\"},\"sessions\":{\"signed_in\":\"Inloggen gelukt.\",\"signed_out\":\"Uitloggen gelukt.\"},\"unlocks\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw account te ontgrendelen.\",\"unlocked\":\"Uw account is ontgrendeld. U wordt nu ingelogd.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"was al bevestigd\",\"not_found\":\"niet gevonden\",\"not_locked\":\"was niet vergrendeld\"}},\"jobs\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze testen zijn uitgevoerd op een machine gesponsord door\"},\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"layouts\":{\"about\":{\"alpha\":\"Dit is in alfa-stadium.\",\"join\":\"Doe met ons mee en help!\",\"mailing_list\":\"Mailing lijst\",\"messages\":{\"alpha\":\"Gelieve deze service niet te beschouwen als stabiel. Daar zijn we nog lang niet! Meer info hier. \"},\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Maak een fork op Github\",\"my_repositories\":\"Mijn repositories\",\"recent\":\"Recent\",\"search\":\"Zoeken\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Bekijk al onze geweldige sponsors →\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Bouw\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid op\",\"job\":\"Taak\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"log\":\"Logboek\"},\"top\":{\"admin\":\"Administratie\",\"blog\":\"Blog\",\"docs\":\"Documentatie\",\"github_login\":\"Inloggen met Github\",\"home\":\"Home\",\"profile\":\"Profiel\",\"sign_out\":\"Uitloggen\",\"stats\":\"Statistieken\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Er zijn geen taken\",\"profiles\":{\"show\":{\"email\":\"Email adres\",\"github\":\"Github\",\"message\":{\"config\":\"hoe eigen bouw-opties in te stellen\",\"your_repos\":\"Zet de schakelaars hieronder aan om de Travis hook voor uw projecten te activeren en push daarna naar Github \\nOm te testen tegen meerdere rubies, zie\"},\"messages\":{\"notice\":\"Om te beginnen kunt u onze startersgids lezen.\\\\n Het zal maar enkele minuten van uw tijd vergen. \"},\"update\":\"Bijwerken\",\"update_locale\":\"Bijwerken\",\"your_locale\":\"Uw taal\",\"your_repos\":\"Uw repositories\",\"token\":\"Token\"}},\"queue\":\"Wachtrij\",\"repositories\":{\"branch\":\"Tak\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"image_url\":\"Afbeeldings URL\",\"message\":\"Bericht\",\"started_at\":\"Gestart\",\"tabs\":{\"branches\":\"Tak samenvatting\",\"build\":\"Bouw\",\"build_history\":\"Bouw geschiedenis\",\"current\":\"Huidig\",\"job\":\"Taak\"},\"commit\":\"Commit\",\"markdown\":\"Markdown\",\"rdoc\":\"RDOC\",\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duur\"},\"statistics\":{\"index\":{\"build_count\":\"Bouw aantal\",\"count\":\"Aantal\",\"last_month\":\"voorbije maand\",\"repo_growth\":\"Repository groei\",\"total_builds\":\"Bouw totaal\",\"total_projects\":\"Projecten/Repository totaal\"}},\"workers\":\"Machines\",\"home\":{\"name\":\"Hoofdpagina\"}},\"pl\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} godzina\",\"other\":\"%{count} godziny\"},\"minutes_exact\":{\"one\":\"%{count} minuta\",\"other\":\"%{count} minuty\"},\"seconds_exact\":{\"one\":\"%{count} sekunda\",\"other\":\"%{count} sekundy\"}}},\"workers\":\"Workers\",\"queue\":\"Kolejka\",\"no_job\":\"Brak zadań\",\"repositories\":{\"branch\":\"Gałąź\",\"image_url\":\"URL obrazka\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"tabs\":{\"current\":\"Aktualny\",\"build_history\":\"Historia Buildów\",\"branches\":\"Wszystkie Gałęzie\",\"build\":\"Build\",\"job\":\"Zadanie\"}},\"build\":{\"job\":\"Zadanie\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Committer\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Komitujący\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"layouts\":{\"top\":{\"home\":\"Start\",\"blog\":\"Blog\",\"docs\":\"Dokumentacja\",\"stats\":\"Statystki\",\"github_login\":\"Zaloguj się przy pomocy Githuba\",\"profile\":\"Profil\",\"sign_out\":\"Wyloguj się\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Ostatnie\",\"search\":\"Wyniki\",\"sponsers\":\"Sponsorzy\",\"sponsors_link\":\"Zobacz naszych wszystkich wspaniałych sponsorów →\",\"my_repositories\":\"Moje repozytoria\"},\"about\":{\"alpha\":\"To wciąż jest wersja alpha.\",\"messages\":{\"alpha\":\"Proszę nie traktuj tego jako stabilnej usługi. Wciąż nam wiele do tego brakuje! Więcej informacji znajdziesz tutaj. \"},\"join\":\"Pomóż i dołącz do nas!\",\"mailing_list\":\"Lista mailingowa\",\"repository\":\"Repozytorium\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Macierz Buildów\",\"commit\":\"Commit\",\"committer\":\"Komitujący\",\"compare\":\"Porównianie\",\"config\":\"Konfiguracja\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"job\":\"Zadanie\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Przesuń suwak poniżej, aby włączyć Travisa, dla twoich projektów, a następnie umieść swój kod na GitHubie. \\n Aby testować swój kod przy użyciu wielu wersji Rubiego, zobacz\",\"config\":\"jak skonfigurować niestandardowe opcje builda\"},\"messages\":{\"notice\":\"Aby zacząć, przeczytaj nasz Przewodnik .\\n Zajmie ci to tylko kilka minut. \"},\"token\":\"Token\",\"your_repos\":\"Twoje repozytoria\"}},\"statistics\":{\"index\":{\"count\":\"Ilość\",\"repo_growth\":\"Przyrost repozytoriów\",\"total_projects\":\"Łącznie projektów/repozytoriów\",\"build_count\":\"Liczba buildów\",\"last_month\":\"ostatni miesiąc\",\"total_builds\":\"Łącznie Buildów\"}},\"date\":{\"abbr_day_names\":[\"nie\",\"pon\",\"wto\",\"śro\",\"czw\",\"pią\",\"sob\"],\"abbr_month_names\":[\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\"],\"day_names\":[\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\"formats\":{\"default\":\"%d-%m-%Y\",\"long\":\"%B %d, %Y\",\"short\":\"%d %b\"},\"month_names\":[\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\"],\"order\":[\"day\",\"month\",\"year\"]},\"errors\":{\"format\":\"%{attribute} %{message}\",\"messages\":{\"accepted\":\"musi zostać zaakceptowane\",\"blank\":\"nie może być puste\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"pt-BR\":{\"admin\":{\"actions\":{\"create\":\"criar\",\"created\":\"criado\",\"delete\":\"deletar\",\"deleted\":\"deletado\",\"update\":\"atualizar\",\"updated\":\"atualizado\"},\"credentials\":{\"log_out\":\"Deslogar\"},\"dashboard\":{\"add_new\":\"Adicionar novo\",\"ago\":\"atrás\",\"last_used\":\"Última utilização\",\"model_name\":\"Nome do modelo\",\"modify\":\"Modificar\",\"name\":\"Dashboard\",\"pagename\":\"Administração do site\",\"records\":\"Registros\",\"show\":\"Mostrar\"},\"delete\":{\"confirmation\":\"Sim, tenho certeza\",\"flash_confirmation\":\"%{name} foi destruído com sucesso\"},\"flash\":{\"error\":\"%{name} falhou ao %{action}\",\"noaction\":\"Nenhuma ação foi tomada\",\"successful\":\"%{name} foi %{action} com sucesso\"},\"history\":{\"name\":\"Histórico\",\"no_activity\":\"Nenhuma Atividade\",\"page_name\":\"Histórico para %{name}\"},\"list\":{\"add_new\":\"Adicionar novo\",\"delete_action\":\"Deletar\",\"delete_selected\":\"Deletar selecionados\",\"edit_action\":\"Editar\",\"search\":\"Buscar\",\"select\":\"Selecionar %{name} para editar\",\"select_action\":\"Selecionar\",\"show_all\":\"Mostrar todos\"},\"new\":{\"basic_info\":\"Informações básicas\",\"cancel\":\"Cancelar\",\"chosen\":\"Escolhido %{name}\",\"chose_all\":\"Escolher todos\",\"clear_all\":\"Limpar todos\",\"many_chars\":\"caracteres ou menos.\",\"one_char\":\"caractere.\",\"optional\":\"Opcional\",\"required\":\"Requerido\",\"save\":\"Salvar\",\"save_and_add_another\":\"Salvar e adicionar outro\",\"save_and_edit\":\"Salvar e alterar\",\"select_choice\":\"Selecione e clique\"}},\"build\":{\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\"},\"builds\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"name\":\"Build\",\"started_at\":\"Iniciou em\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Sua conta foi confirmada com sucesso. Você agora está logado.\",\"send_instructions\":\"Você receberá um email com instruções de como confirmar sua conta em alguns minutos.\"},\"failure\":{\"inactive\":\"Sua conta ainda não foi ativada.\",\"invalid\":\"Email ou senha inválidos.\",\"invalid_token\":\"Token de autenticação inválido.\",\"locked\":\"Sua conta está trancada.\",\"timeout\":\"Sua sessão expirou, por favor faça seu login novamente.\",\"unauthenticated\":\"Você precisa fazer o login ou cadastrar-se antes de continuar.\",\"unconfirmed\":\"Você precisa confirmar sua conta antes de continuar.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instruções de confirmação\"},\"reset_password_instructions\":{\"subject\":\"Instruções de atualização de senha\"},\"unlock_instructions\":{\"subject\":\"Instruções de destrancamento\"}},\"passwords\":{\"send_instructions\":\"Você receberá um email com instruções de como atualizar sua senha em alguns minutos.\",\"updated\":\"Sua senha foi alterada com sucesso. Você agora está logado.\"},\"registrations\":{\"destroyed\":\"Tchau! Sua conta foi cancelada com sucesso. Esperamos vê-lo novamente em breve!\",\"signed_up\":\"Você se cadastrou com sucesso. Se ativada, uma confirmação foi enviada para seu email.\",\"updated\":\"Você atualizou sua conta com sucesso.\"},\"sessions\":{\"signed_in\":\"Logado com sucesso.\",\"signed_out\":\"Deslogado com sucesso.\"},\"unlocks\":{\"send_instructions\":\"Você receberá um email com instruções de como destrancar sua conta em alguns minutos.\",\"unlocked\":\"Sua conta foi destrancada com sucesso. Você agora está logado.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"já foi confirmado\",\"not_found\":\"não encontrado\",\"not_locked\":\"não estava trancado\"}},\"home\":{\"name\":\"home\"},\"jobs\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"started_at\":\"Iniciou em\"},\"layouts\":{\"about\":{\"alpha\":\"Isto é um alpha.\",\"join\":\"Junte-se à nós e ajude!\",\"mailing_list\":\"Lista de email\",\"messages\":{\"alpha\":\"Por favor, não considere isto um serviço estável. Estamos muito longe disso! Mais informações aqui. \"},\"repository\":\"Repositório\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Faça fork no Github\",\"my_repositories\":\"Meus Repositórios\",\"recent\":\"Recentes\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Conheça todos os nossos patrocinadores →\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\",\"log\":\"Log\"},\"top\":{\"admin\":\"Admin\",\"blog\":\"Blog\",\"docs\":\"Documentação\",\"github_login\":\"Logue com o Github\",\"home\":\"Home\",\"profile\":\"Perfil\",\"sign_out\":\"Sair\",\"stats\":\"Estatísticas\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Não há trabalhos\",\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"config\":\"como configurar opções de build\",\"your_repos\":\"Use os botões abaixo para ligar ou desligar o hook de serviço do Travis para seus projetos, e então, faça um push para o Github. Para testar com múltiplas versões do Ruby, leia\"},\"messages\":{\"notice\":\"Para começar, leia nosso Guia de início . Só leva alguns minutinhos. \"},\"token\":\"Token\",\"update\":\"Atualizar\",\"update_locale\":\"Atualizar\",\"your_locale\":\"Sua língua\",\"your_repos\":\"Seus Repositórios\"}},\"queue\":\"Fila\",\"repositories\":{\"branch\":\"Branch\",\"commit\":\"Commit\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"image_url\":\"URL da imagem\",\"markdown\":\"Markdown\",\"message\":\"Mensagem\",\"rdoc\":\"RDOC\",\"started_at\":\"Iniciou em\",\"tabs\":{\"branches\":\"Sumário do Branch\",\"build\":\"Build\",\"build_history\":\"Histórico de Build\",\"current\":\"Atual\",\"job\":\"Trabalho\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duração\"},\"statistics\":{\"index\":{\"build_count\":\"Número de Builds\",\"count\":\"Número\",\"last_month\":\"último mês\",\"repo_growth\":\"Crescimento de Repositório\",\"total_builds\":\"Total de Builds\",\"total_projects\":\"Total de Projetos/Repositórios\"}},\"workers\":\"Processos\"},\"ru\":{\"admin\":{\"actions\":{\"create\":\"создать\",\"created\":\"создано\",\"delete\":\"удалить\",\"deleted\":\"удалено\",\"update\":\"обновить\",\"updated\":\"обновлено\"},\"credentials\":{\"log_out\":\"Выход\"},\"dashboard\":{\"add_new\":\"Добавить\",\"ago\":\"назад\",\"last_used\":\"Использовалось в последний раз\",\"model_name\":\"Имя модели\",\"modify\":\"Изменить\",\"name\":\"Панель управления\",\"pagename\":\"Управление сайтом\",\"records\":\"Записи\",\"show\":\"Показать\"},\"delete\":{\"confirmation\":\"Да, я уверен\",\"flash_confirmation\":\"%{name} успешно удалено\"},\"history\":{\"name\":\"История\",\"no_activity\":\"Нет активности\",\"page_name\":\"История %{name}\"},\"list\":{\"add_new\":\"Добавить\",\"delete_action\":\"Удалить\",\"delete_selected\":\"Удалить выбранные\",\"edit_action\":\"Редактировать\",\"search\":\"Поиск\",\"select\":\"Для редактирования выберите %{name}\",\"select_action\":\"Выбрать\",\"show_all\":\"Показать все\"},\"new\":{\"basic_info\":\"Основная информация\",\"cancel\":\"Отмена\",\"chosen\":\"Выбрано %{name}\",\"chose_all\":\"Выбрать все\",\"clear_all\":\"Очистить все\",\"one_char\":\"символ.\",\"optional\":\"Необязательно\",\"required\":\"Обязательно\",\"save\":\"Сохранить\",\"save_and_add_another\":\"Сохранить и добавить другое\",\"save_and_edit\":\"Сохранить и продолжить редактирование\",\"select_choice\":\"Выберите и кликните\",\"many_chars\":\"символов или меньше.\"},\"flash\":{\"error\":\"%{name} не удалось %{action}\",\"noaction\":\"Никаких действий не произведено\",\"successful\":\"%{name} было успешно %{action}\"}},\"build\":{\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\"},\"builds\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Дифф\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине, спонсируемой\"},\"name\":\"Билд\",\"started_at\":\"Начало\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} час\",\"few\":\"%{count} часа\",\"many\":\"%{count} часов\",\"other\":\"%{count} часа\"},\"minutes_exact\":{\"one\":\"%{count} минута\",\"few\":\"%{count} минуты\",\"many\":\"%{count} минут\",\"other\":\"%{count} минуты\"},\"seconds_exact\":{\"one\":\"%{count} секунда\",\"few\":\"%{count} секунды\",\"many\":\"%{count} секунд\",\"other\":\"%{count} секунды\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Ваш аккаунт успешно подтвержден. Приветствуем!\",\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для прохождения процедуры подтверждения аккаунта.\"},\"failure\":{\"inactive\":\"Ваш аккаунт еще не активирован.\",\"invalid\":\"Ошибка в адресе почты или пароле.\",\"invalid_token\":\"Неправильный токен аутентификации.\",\"locked\":\"Ваш аккаунт заблокирован.\",\"timeout\":\"Сессия окончена. Для продолжения работы войдите снова.\",\"unauthenticated\":\"Вам нужно войти или зарегистрироваться.\",\"unconfirmed\":\"Вы должны сначала подтвердить свой аккаунт.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Инструкции для подтверждению аккаунта\"},\"reset_password_instructions\":{\"subject\":\"Инструкции для сброса пароля\"},\"unlock_instructions\":{\"subject\":\"Инструкции для разблокирования аккаунта\"}},\"passwords\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для сброса пароля.\",\"updated\":\"Ваш пароль успешно изменен. Приветствуем!\"},\"registrations\":{\"destroyed\":\"Ваш аккаунт был успешно удален. Живите долго и процветайте!\",\"signed_up\":\"Вы успешно прошли регистрацию. Инструкции для подтверждения аккаунта отправлены на ваш электронный адрес.\",\"updated\":\"Аккаунт успешно обновлен.\"},\"sessions\":{\"signed_in\":\"Приветствуем!\",\"signed_out\":\"Удачи!\"},\"unlocks\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциям для разблокировния аккаунта.\",\"unlocked\":\"Ваш аккаунт успешно разблокирован. Приветствуем!\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"уже подтвержден\",\"not_found\":\"не найден\",\"not_locked\":\"не заблокирован\"}},\"home\":{\"name\":\"Главная\"},\"jobs\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине спонсируемой\"},\"started_at\":\"Начало\"},\"layouts\":{\"about\":{\"alpha\":\"Это альфа-версия\",\"join\":\"Присоединяйтесь к нам и помогайте!\",\"mailing_list\":\"Лист рассылки\",\"messages\":{\"alpha\":\"Пожалуйста, не считайте данный сервис стабильным. Мы еще очень далеки от стабильности! Подробности \"},\"repository\":\"Репозиторий\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"my_repositories\":\"Мои репозитории\",\"recent\":\"Недавние\",\"search\":\"Поиск\",\"sponsers\":\"Спонсоры\",\"sponsors_link\":\"Список всех наших замечательных спонсоров →\"},\"mobile\":{\"author\":\"Автор\",\"build\":\"Сборка\",\"build_matrix\":\"Матрица сборок\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\",\"log\":\"Журнал\"},\"top\":{\"admin\":\"Управление\",\"blog\":\"Блог\",\"docs\":\"Документация\",\"github_login\":\"Войти через Github\",\"home\":\"Главная\",\"profile\":\"Профиль\",\"sign_out\":\"Выход\",\"stats\":\"Статистика\"}},\"no_job\":\"Очередь пуста\",\"profiles\":{\"show\":{\"email\":\"Электронная почта\",\"github\":\"Github\",\"message\":{\"config\":\"как настроить специальные опции билда\",\"your_repos\":\"Используйте переключатели, чтобы включить Travis service hook для вашего проекта, а потом отправьте код на GitHub. \\nДля тестирования на нескольких версиях Ruby смотрите\"},\"messages\":{\"notice\":\"Перед началом, пожалуйста, прочтите Руководство для быстрого старта . Это займет всего несколько минут. \"},\"token\":\"Токен\",\"update\":\"Обновить\",\"update_locale\":\"Обновить\",\"your_locale\":\"Ваш язык\",\"your_repos\":\"Ваши репозитории\"}},\"queue\":\"Очередь\",\"repositories\":{\"branch\":\"Ветка\",\"commit\":\"Коммит\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"image_url\":\"URL изображения\",\"markdown\":\"Markdown\",\"message\":\"Комментарий\",\"rdoc\":\"RDOC\",\"started_at\":\"Начало\",\"tabs\":{\"branches\":\"Статус веток\",\"build\":\"Билд\",\"build_history\":\"История\",\"current\":\"Текущий\",\"job\":\"Задача\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Длительность\"},\"statistics\":{\"index\":{\"build_count\":\"Количество билдов\",\"count\":\"Количество\",\"last_month\":\"прошлый месяц\",\"repo_growth\":\"Рост числа репозиториев\",\"total_builds\":\"Всего билдов\",\"total_projects\":\"Всего проектов/репозиториев\"}},\"workers\":\"Машины\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}}};\n\n\n})();\n//@ sourceURL=config/locales");minispade.register('ext/ember/bound_helper', "(function() {// https://gist.github.com/2018185\n// For reference: https://github.com/wagenet/ember.js/blob/ac66dcb8a1cbe91d736074441f853e0da474ee6e/packages/ember-handlebars/lib/views/bound_property_view.js\nvar BoundHelperView = Ember.View.extend(Ember._Metamorph, {\n\n context: null,\n options: null,\n property: null,\n // paths of the property that are also observed\n propertyPaths: [],\n\n value: Ember.K,\n\n valueForRender: function() {\n var value = this.value(Ember.get(this.context, this.property), this.options);\n if (this.options.escaped) { value = Handlebars.Utils.escapeExpression(value); }\n return value;\n },\n\n render: function(buffer) {\n buffer.push(this.valueForRender());\n },\n\n valueDidChange: function() {\n if (this.morph.isRemoved()) { return; }\n this.morph.html(this.valueForRender());\n },\n\n didInsertElement: function() {\n this.valueDidChange();\n },\n\n init: function() {\n this._super();\n Ember.addObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n Ember.addObserver(this.context, this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n },\n\n destroy: function() {\n Ember.removeObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n this.context.removeObserver(this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n this._super();\n }\n\n});\n\nEmber.registerBoundHelper = function(name, func) {\n var propertyPaths = Array.prototype.slice.call(arguments, 2);\n Ember.Handlebars.registerHelper(name, function(property, options) {\n var data = options.data,\n view = data.view,\n ctx = this;\n\n var bindView = view.createChildView(BoundHelperView, {\n property: property,\n propertyPaths: propertyPaths,\n context: ctx,\n options: options.hash,\n value: func\n });\n\n view.appendChild(bindView);\n });\n};\n\n\n})();\n//@ sourceURL=ext/ember/bound_helper");minispade.register('ext/ember/namespace', "(function() {Em.Namespace.reopen = Em.Namespace.reopenClass\n\n\n\n})();\n//@ sourceURL=ext/ember/namespace");
\ No newline at end of file
+;minispade.register('app', "(function() {(function() {\nminispade.require('auth');\nminispade.require('controllers');\nminispade.require('helpers');\nminispade.require('models');\nminispade.require('pusher');\nminispade.require('routes');\nminispade.require('slider');\nminispade.require('store');\nminispade.require('tailing');\nminispade.require('templates');\nminispade.require('views');\nminispade.require('config/locales');\nminispade.require('data/sponsors');\n\n Travis.reopen({\n App: Em.Application.extend({\n autoinit: false,\n currentUserBinding: 'auth.user',\n authStateBinding: 'auth.state',\n init: function() {\n this._super.apply(this, arguments);\n this.store = Travis.Store.create();\n this.store.loadMany(Travis.Sponsor, Travis.SPONSORS);\n this.set('auth', Travis.Auth.create({\n app: this,\n endpoint: Travis.config.api_endpoint\n }));\n this.slider = new Travis.Slider();\n this.pusher = new Travis.Pusher(Travis.config.pusher_key);\n return this.tailing = new Travis.Tailing();\n },\n signIn: function() {\n return this.get('auth').signIn();\n },\n autoSignIn: function() {\n return this.get('auth').autoSignIn();\n },\n signOut: function() {\n this.get('auth').signOut();\n return this.get('router').send('afterSignOut');\n },\n receive: function() {\n return this.store.receive.apply(this.store, arguments);\n },\n toggleSidebar: function() {\n var element;\n $('body').toggleClass('maximized');\n element = $(' ');\n $('#top .profile').append(element);\n Em.run.later((function() {\n return element.remove();\n }), 10);\n element = $(' ');\n $('#repo').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=app");minispade.register('auth', "(function() {(function() {\n\n this.Travis.Auth = Ember.Object.extend({\n iframe: $('').hide(),\n timeout: 5000,\n state: 'signed-out',\n receivingEnd: \"\" + location.protocol + \"//\" + location.host,\n init: function() {\n var _this = this;\n this.iframe.appendTo('body');\n window.addEventListener('message', function(e) {\n return _this.receiveMessage(e);\n });\n return this.loadUser();\n },\n accessToken: (function() {\n return sessionStorage.getItem('travis.token');\n }).property(),\n loadUser: function() {\n var user;\n if (user = sessionStorage.getItem('travis.user')) {\n return this.setData({\n user: JSON.parse(user)\n });\n } else {\n return this.autoSignIn();\n }\n },\n signIn: function() {\n this.set('state', 'signing-in');\n this.trySignIn();\n return Ember.run.later(this, this.checkSignIn.bind(this), this.timeout);\n },\n autoSignIn: function() {\n if (localStorage.getItem('travis.auto_signin')) {\n return this.signIn();\n }\n },\n signOut: function() {\n localStorage.clear();\n sessionStorage.clear();\n return this.setData();\n },\n trySignIn: function() {\n return this.iframe.attr('src', \"\" + this.endpoint + \"/auth/post_message?origin=\" + this.receivingEnd);\n },\n checkSignIn: function() {\n if (this.get('state') === 'signing-in') {\n return this.forceSignIn();\n }\n },\n forceSignIn: function() {\n localStorage.setItem('travis.auto_signin', 'true');\n return window.location = \"\" + this.endpoint + \"/auth/handshake?redirect_uri=\" + location;\n },\n setData: function(data) {\n var router, user, _ref;\n if (typeof data === 'string') {\n data = JSON.parse(data);\n }\n if (data != null ? data.token : void 0) {\n this.storeToken(data.token);\n }\n if (data != null ? data.user : void 0) {\n user = this.storeUser(data.user);\n }\n this.set('state', user ? 'signed-in' : 'signed-out');\n this.set('user', user ? user : void 0);\n if (router = (_ref = Travis.app) != null ? _ref.get('router') : void 0) {\n return router.send('afterSignIn');\n }\n },\n storeToken: function(token) {\n sessionStorage.setItem('travis.token', token);\n return this.notifyPropertyChange('accessToken');\n },\n storeUser: function(user) {\n localStorage.setItem('travis.auto_signin', 'true');\n sessionStorage.setItem('travis.user', JSON.stringify(user));\n this.app.store.load(Travis.User, user);\n user = this.app.store.find(Travis.User, user.id);\n user.get('permissions');\n return user;\n },\n receiveMessage: function(event) {\n if (event.origin === this.expectedOrigin()) {\n if (event.data.token) {\n event.data.user.token = event.data.token;\n }\n this.setData(event.data);\n return console.log(\"signed in as \" + event.data.user.login);\n } else {\n return console.log(\"unexpected message \" + event.origin + \": \" + event.data);\n }\n },\n expectedOrigin: function() {\n if (this.endpoint[0] === '/') {\n return this.receivingEnd;\n } else {\n return this.endpoint;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=auth");minispade.register('controllers', "(function() {(function() {\nminispade.require('helpers');\nminispade.require('travis/ticker');\n\n Travis.reopen({\n Controller: Em.Controller.extend({\n connectOutlet: function() {\n var view, _connectedOutletViews;\n view = this._super.apply(this, arguments);\n if (view) {\n _connectedOutletViews = Travis.app.get('_connectedOutletViews');\n if (!_connectedOutletViews) {\n _connectedOutletViews = [];\n }\n _connectedOutletViews.pushObject(view);\n Travis.app.set('_connectedOutletViews', _connectedOutletViews);\n }\n return view;\n }\n }),\n TopController: Em.Controller.extend({\n userBinding: 'Travis.app.currentUser'\n }),\n ApplicationController: Em.Controller.extend(),\n MainController: Em.Controller.extend(),\n StatsLayoutController: Em.Controller.extend(),\n ProfileLayoutController: Em.Controller.extend(),\n AuthLayoutController: Em.Controller.extend()\n });\nminispade.require('controllers/accounts');\nminispade.require('controllers/builds');\nminispade.require('controllers/flash');\nminispade.require('controllers/home');\nminispade.require('controllers/profile');\nminispade.require('controllers/repos');\nminispade.require('controllers/repo');\nminispade.require('controllers/sidebar');\nminispade.require('controllers/stats');\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers");minispade.register('controllers/accounts', "(function() {(function() {\n\n Travis.AccountsController = Ember.ArrayController.extend({\n tab: 'accounts',\n init: function() {\n return this._super();\n },\n findByLogin: function(login) {\n return this.find(function(account) {\n return account.get('login') === login;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/accounts");minispade.register('controllers/builds', "(function() {(function() {\n\n Travis.BuildsController = Em.ArrayController.extend({\n repo: 'parent.repo',\n contentBinding: 'parent.builds'\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/builds");minispade.register('controllers/flash', "(function() {(function() {\n\n Travis.FlashController = Ember.ArrayController.extend({\n init: function() {\n this._super.apply(this, arguments);\n return this.set('content', Ember.A());\n },\n pushObjects: function(objects) {\n Ember.run.later(this, (function() {\n return this.removeObjects(objects);\n }), 10000);\n return this._super(objects);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/flash");minispade.register('controllers/home', "(function() {(function() {\n\n Travis.HomeLayoutController = Travis.Controller.extend();\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/home");minispade.register('controllers/profile', "(function() {(function() {\n\n Travis.ProfileController = Travis.Controller.extend({\n name: 'profile',\n userBinding: 'Travis.app.currentUser',\n accountsBinding: 'Travis.app.router.accountsController',\n account: (function() {\n var account, login;\n login = this.get('params.login') || Travis.app.get('currentUser.login');\n account = this.get('accounts').filter(function(account) {\n if (account.get('login') === login) {\n return account;\n }\n })[0];\n if (account) {\n account.select();\n }\n return account;\n }).property('accounts.length', 'params.login'),\n activate: function(action, params) {\n this.setParams(params || this.get('params'));\n return this[\"view\" + ($.camelize(action))]();\n },\n viewHooks: function() {\n this.connectTab('hooks');\n return this.set('hooks', Travis.Hook.find({\n owner_name: this.get('params.login') || Travis.app.get('currentUser.login')\n }));\n },\n viewUser: function() {\n return this.connectTab('user');\n },\n connectTab: function(tab) {\n var viewClass;\n viewClass = Travis[\"\" + ($.camelize(tab)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n setParams: function(params) {\n var key, value, _results;\n this.set('params', {});\n _results = [];\n for (key in params) {\n value = params[key];\n _results.push(this.set(\"params.\" + key, params[key]));\n }\n return _results;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/profile");minispade.register('controllers/repo', "(function() {(function() {\n\n Travis.RepoController = Travis.Controller.extend({\n bindings: [],\n init: function() {\n this._super.apply(this, arguments);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var build, builds, jobs;\n if (builds = this.get('builds')) {\n builds.forEach(function(b) {\n return b.updateTimes();\n });\n }\n if (build = this.get('build')) {\n build.updateTimes();\n }\n if (build && (jobs = build.get('jobs'))) {\n jobs.forEach(function(j) {\n return j.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(action) {\n this._unbind();\n return this[\"view\" + ($.camelize(action))]();\n },\n viewIndex: function() {\n this._bind('repo', 'controllers.reposController.firstObject');\n this._bind('build', 'repo.lastBuild');\n return this.connectTab('current');\n },\n viewCurrent: function() {\n this.connectTab('current');\n return this._bind('build', 'repo.lastBuild');\n },\n viewBuilds: function() {\n this.connectTab('builds');\n return this._bind('builds', 'repo.builds');\n },\n viewPullRequests: function() {\n this.connectTab('pull_requests');\n return this._bind('builds', 'repo.pullRequests');\n },\n viewBranches: function() {\n this.connectTab('branches');\n return this._bind('builds', 'repo.branches');\n },\n viewEvents: function() {\n this.connectTab('events');\n return this._bind('events', 'repo.events');\n },\n viewBuild: function() {\n return this.connectTab('build');\n },\n viewJob: function() {\n this._bind('build', 'job.build');\n return this.connectTab('job');\n },\n repoObserver: (function() {\n var repo;\n repo = this.get('repo');\n if (repo) {\n return repo.select();\n }\n }).observes('repo.id'),\n connectTab: function(tab) {\n var name, viewClass;\n name = tab === 'current' ? 'build' : tab;\n viewClass = name === 'builds' || name === 'branches' || name === 'pull_requests' ? Travis.BuildsView : Travis[\"\" + ($.camelize(name)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n _bind: function(to, from) {\n return this.bindings.push(Ember.oneWay(this, to, from));\n },\n _unbind: function() {\n var binding, _i, _len, _ref;\n _ref = this.bindings;\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n binding = _ref[_i];\n binding.disconnect(this);\n }\n return this.bindings.length = 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repo");minispade.register('controllers/repos', "(function() {(function() {\nminispade.require('travis/limited_array');\n\n Travis.ReposController = Ember.ArrayController.extend({\n defaultTab: 'recent',\n sortProperties: ['sortOrder'],\n init: function() {\n this.activate(this.defaultTab);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var content;\n if (content = this.get('content')) {\n content.forEach(function(r) {\n return r.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(tab, params) {\n this.set('tab', tab);\n return this[\"view\" + ($.camelize(tab))](params);\n },\n viewRecent: function() {\n var content;\n content = Travis.LimitedArray.create({\n content: Travis.Repo.find(),\n limit: 30\n });\n return this.set('content', content);\n },\n viewOwned: function() {\n return this.set('content', Travis.Repo.accessibleBy(Travis.app.get('currentUser.login')));\n },\n viewSearch: function(params) {\n return this.set('content', Travis.Repo.search(params.search));\n },\n searchObserver: (function() {\n var search;\n search = this.get('search');\n if (search) {\n return this.searchFor(search);\n } else {\n this.activate('recent');\n return 'recent';\n }\n }).observes('search'),\n searchFor: function(phrase) {\n if (this.searchLater) {\n Ember.run.cancel(this.searchLater);\n }\n return this.searchLater = Ember.run.later(this, (function() {\n return this.activate('search', {\n search: phrase\n });\n }), 500);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repos");minispade.register('controllers/sidebar', "(function() {(function() {\n\n Travis.reopen({\n SidebarController: Em.ArrayController.extend({\n init: function() {\n this.tickables = [];\n return Travis.Ticker.create({\n target: this,\n interval: Travis.INTERVALS.sponsors\n });\n },\n tick: function() {\n var tickable, _i, _len, _ref, _results;\n _ref = this.tickables;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n tickable = _ref[_i];\n _results.push(tickable.tick());\n }\n return _results;\n }\n }),\n QueuesController: Em.ArrayController.extend(),\n WorkersController: Em.ArrayController.extend({\n groups: (function() {\n var content, groups, host, worker, _i, _len, _ref;\n if (content = this.get('arrangedContent')) {\n groups = {};\n _ref = content.toArray();\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n worker = _ref[_i];\n host = worker.get('host');\n if (!groups[host]) {\n groups[host] = Em.ArrayProxy.create(Em.SortableMixin, {\n content: [],\n sortProperties: ['nameForSort']\n });\n }\n groups[host].addObject(worker);\n }\n return $.values(groups);\n }\n }).property('length')\n }),\n SponsorsController: Em.ArrayController.extend({\n page: 0,\n arrangedContent: (function() {\n return this.get('shuffled').slice(this.start(), this.end());\n }).property('shuffled.length', 'page'),\n shuffled: (function() {\n var content;\n if (content = this.get('content')) {\n return $.shuffle(content);\n } else {\n return [];\n }\n }).property('content.length'),\n tick: function() {\n return this.set('page', this.isLast() ? 0 : this.get('page') + 1);\n },\n pages: (function() {\n var length;\n length = this.get('content.length');\n if (length) {\n return parseInt(length / this.get('perPage') + 1);\n } else {\n return 1;\n }\n }).property('length'),\n isLast: function() {\n return this.get('page') === this.get('pages') - 1;\n },\n start: function() {\n return this.get('page') * this.get('perPage');\n },\n end: function() {\n return this.start() + this.get('perPage');\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/sidebar");minispade.register('controllers/stats', "(function() {(function() {\n\n Travis.StatsController = Travis.Controller.extend({\n name: 'stats',\n init: function() {\n return this._super('top');\n },\n activate: function(action, params) {}\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/stats");minispade.register('helpers', "(function() {(function() {\nminispade.require('helpers/handlebars');\nminispade.require('helpers/helpers');\nminispade.require('helpers/urls');\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers");minispade.register('helpers/handlebars', "(function() {(function() {\n var safe;\nminispade.require('ext/ember/bound_helper');\n\n safe = function(string) {\n return new Handlebars.SafeString(string);\n };\n\n Handlebars.registerHelper('tipsy', function(text, tip) {\n return safe('' + text + ' ');\n });\n\n Handlebars.registerHelper('t', function(key) {\n return safe(I18n.t(key));\n });\n\n Ember.registerBoundHelper('formatTime', function(value, options) {\n return safe(Travis.Helpers.timeAgoInWords(value) || '-');\n });\n\n Ember.registerBoundHelper('formatDuration', function(duration, options) {\n return safe(Travis.Helpers.timeInWords(duration));\n });\n\n Ember.registerBoundHelper('formatCommit', function(commit, options) {\n if (commit) {\n return safe(Travis.Helpers.formatCommit(commit.get('sha'), commit.get('branch')));\n }\n });\n\n Ember.registerBoundHelper('formatSha', function(sha, options) {\n return safe(Travis.Helpers.formatSha(sha));\n });\n\n Ember.registerBoundHelper('pathFrom', function(url, options) {\n return safe(Travis.Helpers.pathFrom(url));\n });\n\n Ember.registerBoundHelper('formatMessage', function(message, options) {\n return safe(Travis.Helpers.formatMessage(message, options));\n });\n\n Ember.registerBoundHelper('formatConfig', function(config, options) {\n return safe(Travis.Helpers.formatConfig(config));\n });\n\n Ember.registerBoundHelper('formatLog', function(log, options) {\n var item, parentView, repo;\n parentView = this.get('parentView');\n repo = parentView.get(options.repo);\n item = parentView.get(options.item);\n return Travis.Helpers.formatLog(log, repo, item) || '';\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/handlebars");minispade.register('helpers/helpers', "(function() {(function() {\nminispade.require('travis/log');\nminispade.require('config/emoij');\n\n this.Travis.Helpers = {\n compact: function(object) {\n var key, result, value, _ref;\n result = {};\n _ref = object || {};\n for (key in _ref) {\n value = _ref[key];\n if (!$.isEmpty(value)) {\n result[key] = value;\n }\n }\n return result;\n },\n safe: function(string) {\n return new Handlebars.SafeString(string);\n },\n colorForResult: function(result) {\n if (result === 0) {\n return 'green';\n } else {\n if (result === 1) {\n return 'red';\n } else {\n return null;\n }\n }\n },\n formatCommit: function(sha, branch) {\n return Travis.Helpers.formatSha(sha) + (branch ? \" (\" + branch + \")\" : '');\n },\n formatSha: function(sha) {\n return (sha || '').substr(0, 7);\n },\n formatConfig: function(config) {\n var values;\n config = $.only(config, 'rvm', 'gemfile', 'env', 'otp_release', 'php', 'node_js', 'scala', 'jdk', 'python', 'perl');\n values = $.map(config, function(value, key) {\n value = (value && value.join ? value.join(', ') : value) || '';\n return '%@: %@'.fmt($.camelize(key), value);\n });\n if (values.length === 0) {\n return '-';\n } else {\n return values.join(', ');\n }\n },\n formatMessage: function(message, options) {\n message = message || '';\n if (options.short) {\n message = message.split(/\\n/)[0];\n }\n return this._emojize(this._escape(message)).replace(/\\n/g, ' ');\n },\n formatLog: function(log, repo, item) {\n var event, url;\n event = item.constructor === Travis.Build ? 'showBuild' : 'showJob';\n url = Travis.app.get('router').urlForEvent(event, repo, item);\n return Travis.Log.filter(log, url);\n },\n pathFrom: function(url) {\n return (url || '').split('/').pop();\n },\n timeAgoInWords: function(date) {\n return $.timeago.distanceInWords(date);\n },\n durationFrom: function(started, finished) {\n started = started && this._toUtc(new Date(this._normalizeDateString(started)));\n finished = finished ? this._toUtc(new Date(this._normalizeDateString(finished))) : this._nowUtc();\n if (started && finished) {\n return Math.round((finished - started) / 1000);\n } else {\n return 0;\n }\n },\n timeInWords: function(duration) {\n var days, hours, minutes, result, seconds;\n days = Math.floor(duration / 86400);\n hours = Math.floor(duration % 86400 / 3600);\n minutes = Math.floor(duration % 3600 / 60);\n seconds = duration % 60;\n if (days > 0) {\n return 'more than 24 hrs';\n } else {\n result = [];\n if (hours === 1) {\n result.push(hours + ' hr');\n }\n if (hours > 1) {\n result.push(hours + ' hrs');\n }\n if (minutes > 0) {\n result.push(minutes + ' min');\n }\n if (seconds > 0) {\n result.push(seconds + ' sec');\n }\n if (result.length > 0) {\n return result.join(' ');\n } else {\n return '-';\n }\n }\n },\n _normalizeDateString: function(string) {\n if (window.JHW) {\n string = string.replace('T', ' ').replace(/-/g, '/');\n string = string.replace('Z', '').replace(/\\..*$/, '');\n }\n return string;\n },\n _nowUtc: function() {\n return this._toUtc(new Date());\n },\n _toUtc: function(date) {\n return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds());\n },\n _emojize: function(text) {\n var emojis;\n emojis = text.match(/:\\S+?:/g);\n if (emojis !== null) {\n $.each(emojis.uniq(), function(ix, emoji) {\n var image, strippedEmoji;\n strippedEmoji = emoji.substring(1, emoji.length - 1);\n if (EmojiDictionary.indexOf(strippedEmoji) !== -1) {\n image = ' ';\n return text = text.replace(new RegExp(emoji, 'g'), image);\n }\n });\n }\n return text;\n },\n _escape: function(text) {\n return text.replace(/&/g, '&').replace(//g, '>');\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/helpers");minispade.register('helpers/urls', "(function() {(function() {\n\n this.Travis.Urls = {\n repo: function(slug) {\n return \"/\" + slug;\n },\n builds: function(slug) {\n return \"/\" + slug + \"/builds\";\n },\n pullRequests: function(slug) {\n return \"/\" + slug + \"/pull_requests\";\n },\n branches: function(slug) {\n return \"/\" + slug + \"/branches\";\n },\n build: function(slug, id) {\n return \"/\" + slug + \"/builds/\" + id;\n },\n job: function(slug, id) {\n return \"/\" + slug + \"/jobs/\" + id;\n },\n githubCommit: function(slug, sha) {\n return \"http://github.com/\" + slug + \"/commit/\" + sha;\n },\n githubRepo: function(slug) {\n return \"http://github.com/\" + slug;\n },\n githubWatchers: function(slug) {\n return \"http://github.com/\" + slug + \"/watchers\";\n },\n githubNetwork: function(slug) {\n return \"http://github.com/\" + slug + \"/network\";\n },\n githubAdmin: function(slug) {\n return \"http://github.com/\" + slug + \"/admin/hooks#travis_minibucket\";\n },\n statusImage: function(slug, branch) {\n return (\"https://secure.travis-ci.org/\" + slug + \".png\") + (branch ? \"?branch=\" + branch : '');\n },\n email: function(email) {\n return \"mailto:\" + email;\n },\n account: function(login) {\n return \"/profile/\" + login;\n },\n user: function(login) {\n return \"/profile/\" + login + \"/me\";\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/urls");minispade.register('models', "(function() {(function() {\nminispade.require('models/extensions');\nminispade.require('models/account');\nminispade.require('models/artifact');\nminispade.require('models/branch');\nminispade.require('models/build');\nminispade.require('models/commit');\nminispade.require('models/event');\nminispade.require('models/hook');\nminispade.require('models/job');\nminispade.require('models/repo');\nminispade.require('models/sponsor');\nminispade.require('models/user');\nminispade.require('models/worker');\n\n}).call(this);\n\n})();\n//@ sourceURL=models");minispade.register('models/account', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Account = Travis.Model.extend({\n primaryKey: 'login',\n login: DS.attr('string'),\n name: DS.attr('string'),\n type: DS.attr('string'),\n reposCount: DS.attr('number'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('login'));\n }).property()\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/account");minispade.register('models/artifact', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Artifact = Travis.Model.extend({\n body: DS.attr('string'),\n init: function() {\n this._super.apply(this, arguments);\n this.set('queue', Ember.A([]));\n this.addObserver('body', this.fetchWorker);\n return this.fetchWorker();\n },\n append: function(body) {\n if (this.get('isLoaded')) {\n return this.set('body', this.get('body') + body);\n } else {\n return this.get('queue').pushObject(body);\n }\n },\n recordDidLoad: (function() {\n var queue;\n if (this.get('isLoaded')) {\n queue = this.get('queue');\n if (queue.get('length') > 0) {\n return this.append(queue.toArray().join(''));\n }\n }\n }).observes('isLoaded'),\n fetchWorker: function() {\n var body, line, match, worker;\n if (body = this.get('body')) {\n line = body.split(\"\\n\")[0];\n if (line && (match = line.match(/Using worker: (.*)/))) {\n if (worker = match[1]) {\n worker = worker.trim().split(':')[0];\n this.set('workerName', worker);\n return this.removeObserver('body', this.fetchWorker);\n }\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/artifact");minispade.register('models/branch', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Branch = Travis.Model.extend(Travis.Helpers, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n duration: DS.attr('number'),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n commit: DS.belongsTo('Travis.Commit'),\n repo: (function() {\n if (this.get('repoId')) {\n return Travis.Repo.find(this.get('repoId'));\n }\n }).property('repoId'),\n updateTimes: function() {\n this.notifyPropertyChange('started_at');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n this.Travis.Branch.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/branch");minispade.register('models/build', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Build = Travis.Model.extend(Travis.DurationCalculations, {\n eventType: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n state: DS.attr('string'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string', {\n key: 'started_at'\n }),\n finishedAt: DS.attr('string', {\n key: 'finished_at'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n commit: DS.belongsTo('Travis.Commit'),\n jobs: DS.hasMany('Travis.Job', {\n key: 'job_ids'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n isMatrix: (function() {\n return this.get('data.job_ids.length') > 1;\n }).property('data.job_ids.length'),\n isFinished: (function() {\n return this.get('state') === 'finished';\n }).property('state'),\n requiredJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return !data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n allowedFailureJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n configKeys: (function() {\n var config, headers, key, keys;\n if (!(config = this.get('config'))) {\n return [];\n }\n keys = $.intersect($.keys(config), Travis.CONFIG_KEYS);\n headers = (function() {\n var _i, _len, _ref, _results;\n _ref = ['build.job', 'build.duration', 'build.finished_at'];\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n key = _ref[_i];\n _results.push(I18n.t(key));\n }\n return _results;\n })();\n return $.map(headers.concat(keys), function(key) {\n return $.camelize(key);\n });\n }).property('config'),\n requeue: (function() {\n return Travis.ajax.post('/requests', {\n build_id: this.get('id')\n });\n })\n });\n\n this.Travis.Build.reopenClass({\n byRepoId: function(id, parameters) {\n return this.find($.extend(parameters || {}, {\n repository_id: id\n }));\n },\n olderThanNumber: function(id, build_number) {\n return this.find({\n url: \"/builds\",\n repository_id: id,\n after_number: build_number\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/build");minispade.register('models/commit', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Commit = Travis.Model.extend({\n buildId: DS.attr('number'),\n sha: DS.attr('string'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n compareUrl: DS.attr('string'),\n authorName: DS.attr('string'),\n authorEmail: DS.attr('string'),\n committerName: DS.attr('string'),\n committerEmail: DS.attr('string'),\n build: DS.belongsTo('Travis.Build', {\n key: 'buildId'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/commit");minispade.register('models/event', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Event = Travis.Model.extend({\n event: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n sourceId: DS.attr('number', {\n key: 'source_id'\n }),\n sourceType: DS.attr('string', {\n key: 'source_type'\n }),\n createdAt: DS.attr('string', {\n key: 'created_at'\n }),\n event_: (function() {\n return this.get('event');\n }).property('event'),\n result: (function() {\n return this.get('data.data.result');\n }).property('data.data.result'),\n message: (function() {\n return this.get('data.data.message');\n }).property('data.data.message'),\n source: (function() {\n var type;\n if (type = this.get('sourceType')) {\n return Travis[type].find(this.get('sourceId'));\n }\n }).property('sourceType', 'sourceId')\n });\n\n this.Travis.Event.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/event");minispade.register('models/extensions', "(function() {(function() {\n\n Travis.DurationCalculations = Ember.Mixin.create({\n duration: (function() {\n var duration;\n if (duration = this.get('_duration')) {\n return duration;\n } else {\n return Travis.Helpers.durationFrom(this.get('startedAt'), this.get('finishedAt'));\n }\n }).property('_duration', 'finishedAt', 'startedAt'),\n updateTimes: function() {\n this.notifyPropertyChange('_duration');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/extensions");minispade.register('models/hook', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Hook = Travis.Model.extend({\n name: DS.attr('string'),\n ownerName: DS.attr('string'),\n description: DS.attr('string'),\n active: DS.attr('boolean'),\n account: (function() {\n return this.get('slug').split('/')[0];\n }).property('slug'),\n slug: (function() {\n return \"\" + (this.get('ownerName')) + \"/\" + (this.get('name'));\n }).property('ownerName', 'name'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('slug'));\n }).property(),\n urlGithubAdmin: (function() {\n return \"http://github.com/\" + (this.get('slug')) + \"/admin/hooks#travis_minibucket\";\n }).property(),\n toggle: function() {\n var transaction;\n transaction = this.get('store').transaction();\n transaction.add(this);\n this.set('active', !this.get('active'));\n return transaction.commit();\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/hook");minispade.register('models/job', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Job = Travis.Model.extend(Travis.DurationCalculations, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n buildId: DS.attr('number'),\n commitId: DS.attr('number'),\n logId: DS.attr('number'),\n queue: DS.attr('string'),\n state: DS.attr('string'),\n number: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n allowFailure: DS.attr('boolean', {\n key: 'allow_failure'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n build: DS.belongsTo('Travis.Build', {\n key: 'build_id'\n }),\n commit: DS.belongsTo('Travis.Commit', {\n key: 'commit_id'\n }),\n log: DS.belongsTo('Travis.Artifact', {\n key: 'log_id'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n sponsor: (function() {\n var worker;\n worker = this.get('log.workerName');\n if (worker && worker.length) {\n return Travis.WORKERS[worker] || {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n };\n }\n }).property('log.workerName'),\n configValues: (function() {\n var config;\n if (config = this.get('config')) {\n return $.values($.only.apply(config, Travis.CONFIG_KEYS));\n } else {\n return [];\n }\n }).property('config'),\n appendLog: function(text) {\n var log;\n if (log = this.get('log')) {\n return log.append(text);\n }\n },\n subscribe: function() {\n var id;\n if (id = this.get('id')) {\n return Travis.app.pusher.subscribe(\"job-\" + id);\n }\n },\n onStateChange: (function() {\n if (this.get('state') === 'finished') {\n return Travis.app.pusher.unsubscribe(\"job-\" + (this.get('id')));\n }\n }).observes('state')\n });\n\n this.Travis.Job.reopenClass({\n queued: function(queue) {\n this.find();\n return Travis.app.store.filter(this, function(job) {\n var queued;\n queued = ['created', 'queued'].indexOf(job.get('state')) !== -1;\n return queued && (!queue || job.get('queue') === (\"builds.\" + queue));\n });\n },\n findMany: function(ids) {\n return Travis.app.store.findMany(this, ids);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/job");minispade.register('models/repo', "(function() {(function() {\nminispade.require('travis/expandable_record_array');\nminispade.require('travis/model');\n\n this.Travis.Repo = Travis.Model.extend({\n slug: DS.attr('string'),\n description: DS.attr('string'),\n lastBuildId: DS.attr('number'),\n lastBuildNumber: DS.attr('string'),\n lastBuildResult: DS.attr('number'),\n lastBuildStartedAt: DS.attr('string'),\n lastBuildFinishedAt: DS.attr('string'),\n lastBuild: DS.belongsTo('Travis.Build'),\n builds: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'push'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n pullRequests: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'pull_request'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n branches: (function() {\n return Travis.Branch.byRepoId(this.get('id'));\n }).property(),\n events: (function() {\n return Travis.Event.byRepoId(this.get('id'));\n }).property(),\n owner: (function() {\n return (this.get('slug') || '').split('/')[0];\n }).property('slug'),\n name: (function() {\n return (this.get('slug') || '').split('/')[1];\n }).property('slug'),\n lastBuildDuration: (function() {\n var duration;\n duration = this.get('data.last_build_duration');\n if (!duration) {\n duration = Travis.Helpers.durationFrom(this.get('lastBuildStartedAt'), this.get('lastBuildFinishedAt'));\n }\n return duration;\n }).property('data.last_build_duration', 'lastBuildStartedAt', 'lastBuildFinishedAt'),\n sortOrder: (function() {\n var lastBuildFinishedAt;\n if (lastBuildFinishedAt = this.get('lastBuildFinishedAt')) {\n return -new Date(lastBuildFinishedAt).getTime();\n } else {\n return -new Date('9999').getTime() - parseInt(this.get('lastBuildId'));\n }\n }).property('lastBuildFinishedAt', 'lastBuildId'),\n stats: (function() {\n var _this = this;\n return this.get('_stats') || $.get(\"https://api.github.com/repos/\" + (this.get('slug')), function(data) {\n _this.set('_stats', data);\n return _this.notifyPropertyChange('stats');\n }) && {};\n }).property(),\n updateTimes: function() {\n return this.notifyPropertyChange('lastBuildDuration');\n }\n });\n\n this.Travis.Repo.reopenClass({\n recent: function() {\n return this.find();\n },\n ownedBy: function(login) {\n return this.find({\n owner_name: login,\n orderBy: 'name'\n });\n },\n accessibleBy: function(login) {\n return this.find({\n member: login,\n orderBy: 'name'\n });\n },\n search: function(query) {\n return this.find({\n search: query,\n orderBy: 'name'\n });\n },\n bySlug: function(slug) {\n var repo;\n repo = $.select(this.find().toArray(), function(repo) {\n return repo.get('slug') === slug;\n });\n if (repo.length > 0) {\n return repo;\n } else {\n return this.find({\n slug: slug\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/repo");minispade.register('models/sponsor', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Sponsor = Travis.Model.extend({\n type: DS.attr('string'),\n url: DS.attr('string'),\n link: DS.attr('string'),\n image: (function() {\n return \"/images/sponsors/\" + (this.get('data.image'));\n }).property('data.image')\n });\n\n Travis.Sponsor.reopenClass({\n decks: function() {\n return this.platinum().concat(this.gold());\n },\n platinum: function() {\n var platinum, sponsor, _i, _len, _results;\n platinum = this.byType('platinum').toArray();\n _results = [];\n for (_i = 0, _len = platinum.length; _i < _len; _i++) {\n sponsor = platinum[_i];\n _results.push([sponsor]);\n }\n return _results;\n },\n gold: function() {\n var gold, _results;\n gold = this.byType('gold').toArray();\n _results = [];\n while (gold.length > 0) {\n _results.push(gold.splice(0, 2));\n }\n return _results;\n },\n links: function() {\n return this.byType('silver');\n },\n byType: function() {\n var types;\n types = Array.prototype.slice.apply(arguments);\n return Travis.Sponsor.filter(function(sponsor) {\n return types.indexOf(sponsor.get('type')) !== -1;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/sponsor");minispade.register('models/user', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('travis/model');\n\n this.Travis.User = Travis.Model.extend({\n name: DS.attr('string'),\n email: DS.attr('string'),\n login: DS.attr('string'),\n token: DS.attr('string'),\n locale: DS.attr('string'),\n gravatarId: DS.attr('string'),\n isSyncing: DS.attr('boolean'),\n syncedAt: DS.attr('string'),\n repoCount: DS.attr('number'),\n init: function() {\n if (this.get('isSyncing')) {\n this.poll();\n }\n this._super();\n return Ember.run.next(this, function() {\n var transaction;\n transaction = this.get('store').transaction();\n return transaction.add(this);\n });\n },\n urlGithub: (function() {\n return \"https://github.com/\" + (this.get('login'));\n }).property(),\n permissions: (function() {\n var _this = this;\n if (!this.permissions) {\n this.permissions = Ember.ArrayProxy.create({\n content: []\n });\n Travis.ajax.get('/users/permissions', function(data) {\n return _this.permissions.set('content', data.permissions);\n });\n }\n return this.permissions;\n }).property(),\n updateLocale: function(locale) {\n var observer, self, transaction;\n this.setWithSession('locale', locale);\n transaction = this.get('transaction');\n transaction.commit();\n self = this;\n observer = function() {\n if (!self.get('isSaving')) {\n self.removeObserver('isSaving', observer);\n transaction = self.get('store').transaction();\n return transaction.add(self);\n }\n };\n return this.addObserver('isSaving', observer);\n },\n type: (function() {\n return 'user';\n }).property(),\n sync: function() {\n Travis.ajax.post('/users/sync');\n this.setWithSession('isSyncing', true);\n return this.poll();\n },\n poll: function() {\n var _this = this;\n return Travis.ajax.get('/users', function(data) {\n if (data.user.is_syncing) {\n return Ember.run.later(_this, _this.poll.bind(_this), 3000);\n } else {\n _this.set('isSyncing', false);\n return _this.setWithSession('syncedAt', data.user.synced_at);\n }\n });\n },\n setWithSession: function(name, value) {\n var user;\n this.set(name, value);\n user = JSON.parse(typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.getItem('travis.user') : void 0);\n user[$.underscore(name)] = this.get(name);\n return typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.setItem('travis.user', JSON.stringify(user)) : void 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/user");minispade.register('models/worker', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Worker = Travis.Model.extend({\n state: DS.attr('string'),\n name: DS.attr('string'),\n host: DS.attr('string'),\n lastSeenAt: DS.attr('string'),\n payload: (function() {\n return this.get('data.payload');\n }).property('data.payload'),\n number: (function() {\n return this.get('name').match(/\\d+$/)[0];\n }).property('name'),\n isWorking: (function() {\n return this.get('state') === 'working';\n }).property('state'),\n repo: (function() {\n return Travis.Repo.find(this.get('payload.repository.id') || this.get('payload.repo.id'));\n }).property('payload.repository.id', 'payload.repo.id'),\n job_id: (function() {\n return this.get('payload.job.id');\n }).property('payload.job.id'),\n job: (function() {\n return Travis.Job.find(this.get('job_id'));\n }).property('job_id'),\n nameForSort: (function() {\n var id, match, name;\n if (name = this.get('name')) {\n match = name.match(/(.*?)-(\\d+)/);\n if (match) {\n name = match[1];\n id = match[2].toString();\n if (id.length < 2) {\n id = \"00\" + id;\n } else if (id.length < 3) {\n id = \"0\" + id;\n }\n return \"\" + name + \"-\" + id;\n }\n }\n }).property('name')\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/worker");minispade.register('pusher', "(function() {(function() {\n\n Travis.Pusher = function(key) {\n if (key) {\n this.init(key);\n }\n return this;\n };\n\n $.extend(Travis.Pusher, {\n CHANNELS: ['common'],\n CHANNEL_PREFIX: ''\n });\n\n $.extend(Travis.Pusher.prototype, {\n active_channels: [],\n init: function(key) {\n var channel, _i, _len, _ref, _results;\n Pusher.warn = this.warn.bind(this);\n this.pusher = new Pusher(key);\n _ref = Travis.Pusher.CHANNELS;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n channel = _ref[_i];\n _results.push(this.subscribe(channel));\n }\n return _results;\n },\n subscribe: function(channel) {\n var _this = this;\n if (this.pusher && this.active_channels.indexOf(channel) === -1) {\n this.active_channels.push(channel);\n return this.pusher.subscribe(this.prefix(channel)).bind_all(function(event, data) {\n return _this.receive(event, data);\n });\n }\n },\n unsubscribe: function(channel) {\n var ix;\n ix = this.active_channels.indexOf(channel);\n if (this.pusher && ix === -1) {\n this.active_channels.splice(ix, 1);\n return this.pusher.unsubscribe(this.prefix(channel));\n }\n },\n prefix: function(channel) {\n return \"\" + Travis.Pusher.CHANNEL_PREFIX + channel;\n },\n receive: function(event, data) {\n if (event.substr(0, 6) === 'pusher') {\n return;\n }\n if (data.id) {\n data = this.normalize(event, data);\n }\n return Ember.run.next(function() {\n return Travis.app.store.receive(event, data);\n });\n },\n normalize: function(event, data) {\n switch (event) {\n case 'build:started':\n case 'build:finished':\n return data;\n case 'job:created':\n case 'job:started':\n case 'job:finished':\n case 'job:log':\n if (data.queue) {\n data.queue = data.queue.replace('builds.', '');\n }\n return {\n job: data\n };\n case 'worker:added':\n case 'worker:updated':\n case 'worker:removed':\n return {\n worker: data\n };\n }\n },\n warn: function(type, warning) {\n if (!this.ignoreWarning(warning)) {\n return console.warn(warning);\n }\n },\n ignoreWarning: function(warning) {\n var message, _ref;\n if (message = (_ref = warning.data) != null ? _ref.message : void 0) {\n return message.indexOf('Existing subscription') === 0 || message.indexOf('No current subscription') === 0;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=pusher");minispade.register('routes', "(function() {(function() {\n var defaultRoute, lineNumberRoute, nonHashRouteMatcher, resolvePath;\nminispade.require('travis/location');\n\n defaultRoute = Ember.Route.extend({\n route: '/',\n index: 1000\n });\n\n lineNumberRoute = Ember.Route.extend({\n route: '#L:number',\n index: 1,\n connectOutlets: function(router) {\n return router.saveLineNumberHash();\n },\n routeMatcher: Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([0-9]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(regex);\n }\n });\n }\n }).cacheable()\n });\n\n nonHashRouteMatcher = Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([^/#]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(\"^/?\" + regex);\n }\n });\n }\n }).cacheable();\n\n resolvePath = function(manager, path) {\n var childStates, match, resolvedState, state, states;\n if (this.get('isLeafRoute')) {\n return Ember.A();\n }\n childStates = this.get('childStates');\n childStates = Ember.A(childStates.filterProperty('isRoutable'));\n childStates = childStates.sort(function(a, b) {\n var aDynamicSegments, aIndex, aRoute, bDynamicSegments, bIndex, bRoute;\n aDynamicSegments = a.get('routeMatcher.identifiers.length');\n bDynamicSegments = b.get('routeMatcher.identifiers.length');\n aRoute = a.get('route');\n bRoute = b.get('route');\n aIndex = a.get('index');\n bIndex = b.get('index');\n if (aIndex && bIndex) {\n return aIndex - bIndex;\n }\n if (aRoute.indexOf(bRoute) === 0) {\n return -1;\n } else if (bRoute.indexOf(aRoute) === 0) {\n return 1;\n }\n if (aDynamicSegments !== bDynamicSegments) {\n return aDynamicSegments - bDynamicSegments;\n }\n return b.get('route.length') - a.get('route.length');\n });\n match = null;\n state = childStates.find(function(state) {\n var matcher;\n matcher = state.get('routeMatcher');\n if (match = matcher.match(path)) {\n return match;\n }\n });\n Ember.assert(\"Could not find state for path \" + path, !!state);\n resolvedState = Ember._ResolvedState.create({\n manager: manager,\n state: state,\n match: match\n });\n states = state.resolvePath(manager, match.remaining);\n return Ember.A([resolvedState]).pushObjects(states);\n };\n\n Travis.Router = Ember.Router.extend({\n location: 'travis',\n enableLogging: true,\n initialState: 'loading',\n showRoot: Ember.Route.transitionTo('root.home.show'),\n showStats: Ember.Route.transitionTo('root.stats'),\n showRepo: Ember.Route.transitionTo('root.home.repo.show'),\n showBuilds: Ember.Route.transitionTo('root.home.repo.builds.index'),\n showBuild: Ember.Route.transitionTo('root.home.repo.builds.show'),\n showPullRequests: Ember.Route.transitionTo('root.home.repo.pullRequests'),\n showBranches: Ember.Route.transitionTo('root.home.repo.branches'),\n showEvents: Ember.Route.transitionTo('root.home.repo.events'),\n showJob: Ember.Route.transitionTo('root.home.repo.job'),\n showProfile: Ember.Route.transitionTo('root.profile'),\n showAccount: Ember.Route.transitionTo('root.profile.account'),\n showUserProfile: Ember.Route.transitionTo('root.profile.account.profile'),\n saveLineNumberHash: function(path) {\n return Ember.run.next(this, function() {\n var match;\n path = path || this.get('location').getURL();\n if (match = path.match(/#L\\d+$/)) {\n return this.set('repoController.lineNumberHash', match[0]);\n }\n });\n },\n reload: function() {\n var url;\n url = this.get('location').getURL();\n this.transitionTo('loading');\n return this.route(url);\n },\n signedIn: function() {\n return !!Travis.app.get('auth.user');\n },\n needsAuth: function(path) {\n return path.indexOf('/profile') === 0;\n },\n afterSignOut: function() {\n return this.authorize('/');\n },\n authorize: function(path) {\n if (!this.signedIn() && this.needsAuth(path)) {\n sessionStorage.setItem('travis.after_signin_path', path);\n this.transitionTo('root.auth');\n return Travis.app.autoSignIn();\n } else {\n this.transitionTo('root');\n return this.route(path);\n }\n },\n loading: Ember.Route.extend({\n routePath: function(router, path) {\n router.saveLineNumberHash(path);\n return router.authorize(path);\n }\n }),\n root: Ember.Route.extend({\n route: '/',\n loading: Ember.State.extend(),\n afterSignIn: (function() {}),\n auth: Ember.Route.extend({\n route: '/auth',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('authLayout');\n $('body').attr('id', 'auth');\n router.get('authLayoutController').connectOutlet('top', 'top');\n return router.get('authLayoutController').connectOutlet('main', 'signin');\n },\n afterSignIn: function(router) {\n var path;\n path = sessionStorage.getItem('travis.after_signin_path');\n sessionStorage.removeItem('travis.after_signin_path');\n router.transitionTo('root');\n return router.route(path || '/');\n }\n }),\n stats: Ember.Route.extend({\n route: '/stats',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('statsLayout');\n $('body').attr('id', 'stats');\n router.get('statsLayoutController').connectOutlet('top', 'top');\n return router.get('statsLayoutController').connectOutlet('main', 'stats');\n }\n }),\n profile: Ember.Route.extend({\n initialState: 'index',\n route: '/profile',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('profileLayout');\n $('body').attr('id', 'profile');\n router.get('accountsController').set('content', Travis.Account.find());\n router.get('profileLayoutController').connectOutlet('top', 'top');\n return router.get('profileLayoutController').connectOutlet('left', 'accounts');\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('profileLayoutController').connectOutlet('main', 'profile');\n return router.get('profileController').activate('hooks');\n }\n }),\n account: Ember.Route.extend({\n initialState: 'index',\n route: '/:login',\n connectOutlets: function(router, account) {\n var params;\n if (account) {\n params = {\n login: account.get('login')\n };\n return router.get('profileController').setParams(params);\n } else {\n return router.send('showProfile');\n }\n },\n deserialize: function(router, params) {\n var account, controller, deferred, observer;\n controller = router.get('accountsController');\n if (!controller.get('content')) {\n controller.set('content', Travis.Account.find());\n }\n account = controller.findByLogin(params.login);\n if (account) {\n return account;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (account = controller.findByLogin(params.login)) {\n controller.removeObserver('content.length', observer);\n return deferred.resolve(account);\n }\n };\n controller.addObserver('content.length', observer);\n return deferred.promise();\n }\n },\n serialize: function(router, account) {\n if (account) {\n return {\n login: account.get('login')\n };\n } else {\n return {};\n }\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('profileController').activate('hooks');\n }\n }),\n profile: Ember.Route.extend({\n route: '/profile',\n connectOutlets: function(router) {\n return router.get('profileController').activate('user');\n }\n })\n })\n }),\n home: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('homeLayout');\n $('body').attr('id', 'home');\n router.get('homeLayoutController').connectOutlet('left', 'repos');\n router.get('homeLayoutController').connectOutlet('right', 'sidebar');\n router.get('homeLayoutController').connectOutlet('top', 'top');\n router.get('homeLayoutController').connectOutlet('main', 'repo');\n router.get('homeLayoutController').connectOutlet('flash', 'flash');\n return router.get('repoController').set('repos', router.get('reposController'));\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n showWithLineNumber: Ember.Route.extend({\n route: '/#/L:number',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n }\n }),\n repo: Ember.Route.extend({\n route: '/:owner/:name',\n routeMatcher: nonHashRouteMatcher,\n connectOutlets: function(router, repo) {\n return router.get('repoController').set('repo', repo);\n },\n deserialize: function(router, params) {\n var deferred, observer, repos, slug;\n slug = \"\" + params.owner + \"/\" + params.name;\n repos = Travis.Repo.bySlug(slug);\n deferred = $.Deferred();\n observer = function() {\n if (repos.get('isLoaded')) {\n repos.removeObserver('isLoaded', observer);\n return deferred.resolve(repos.objectAt(0));\n }\n };\n if (repos.length) {\n deferred.resolve(repos[0]);\n } else {\n repos.addObserver('isLoaded', observer);\n }\n return deferred.promise();\n },\n serialize: function(router, repo) {\n if (repo) {\n return {\n owner: repo.get('owner'),\n name: repo.get('name')\n };\n } else {\n return {};\n }\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('current');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n builds: Ember.Route.extend({\n route: '/builds',\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('builds');\n }\n }),\n show: Ember.Route.extend({\n route: '/:build_id',\n connectOutlets: function(router, build) {\n if (!build.get) {\n build = Travis.Build.find(build);\n }\n router.get('repoController').set('build', build);\n return router.get('repoController').activate('build');\n },\n serialize: function(router, build) {\n if (build.get) {\n return {\n build_id: build.get('id')\n };\n } else {\n return {\n build_id: build\n };\n }\n },\n deserialize: function(router, params) {\n var build, deferred, observer;\n build = Travis.Build.find(params.build_id);\n if (build.get('id')) {\n return build;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (build.get('id')) {\n build.removeObserver('id', observer);\n return deferred.resolve(build);\n }\n };\n build.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n }),\n pullRequests: Ember.Route.extend({\n route: '/pull_requests',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('pull_requests');\n }\n }),\n branches: Ember.Route.extend({\n route: '/branches',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('branches');\n }\n }),\n events: Ember.Route.extend({\n route: '/events',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('events');\n }\n }),\n job: Ember.Route.extend({\n route: '/jobs/:job_id',\n connectOutlets: function(router, job) {\n if (!job.get) {\n job = Travis.Job.find(job);\n }\n router.get('repoController').set('job', job);\n return router.get('repoController').activate('job');\n },\n serialize: function(router, job) {\n if (job.get) {\n return {\n job_id: job.get('id')\n };\n } else {\n return {\n job_id: job\n };\n }\n },\n deserialize: function(router, params) {\n var deferred, job, observer;\n job = Travis.Job.find(params.job_id);\n if (job.get('id')) {\n return job;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (job.get('id')) {\n job.removeObserver('id', observer);\n return deferred.resolve(job);\n }\n };\n job.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n })\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=routes");minispade.register('slider', "(function() {(function() {\n\n this.Travis.Slider = function() {\n if ((typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.getItem('travis.maximized') : void 0) === 'true') {\n this.minimize();\n }\n return this;\n };\n\n $.extend(Travis.Slider.prototype, {\n persist: function() {\n return typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.setItem('travis.maximized', this.isMinimized()) : void 0;\n },\n isMinimized: function() {\n return $('body').hasClass('maximized');\n },\n minimize: function() {\n return $('body').addClass('maximized');\n },\n toggle: function() {\n var element;\n $('body').toggleClass('maximized');\n this.persist();\n element = $(' ');\n $('#top .profile').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=slider");minispade.register('store', "(function() {(function() {\n var DATA_PROXY,\n __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };\nminispade.require('store/rest_adapter');\n\n DATA_PROXY = {\n get: function(name) {\n return this.savedData[name];\n }\n };\n\n Travis.Store = DS.Store.extend({\n revision: 4,\n adapter: Travis.RestAdapter.create(),\n load: function(type, id, hash) {\n var record, result;\n result = this._super.apply(this, arguments);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n record.set('incomplete', false);\n record.set('complete', true);\n }\n return result;\n },\n merge: function(type, id, hash) {\n var clientId, data, dataCache, primaryKey, record, recordCache, typeMap;\n if (hash === void 0) {\n hash = id;\n primaryKey = type.proto().primaryKey;\n Ember.assert(\"A data hash was loaded for a record of type \" + type.toString() + \" but no primary key '\" + primaryKey + \"' was provided.\", hash[primaryKey]);\n id = hash[primaryKey];\n }\n typeMap = this.typeMapFor(type);\n dataCache = typeMap.cidToHash;\n clientId = typeMap.idToCid[id];\n recordCache = this.get('recordCache');\n if (clientId !== void 0) {\n if (data = dataCache[clientId]) {\n $.extend(data, hash);\n } else {\n dataCache[clientId] = hash;\n }\n if (record = recordCache[clientId]) {\n record.send('didChangeData');\n }\n } else {\n clientId = this.pushHash(hash, id, type);\n }\n if (clientId) {\n DATA_PROXY.savedData = hash;\n this.updateRecordArrays(type, clientId, DATA_PROXY);\n return {\n id: id,\n clientId: clientId\n };\n }\n },\n receive: function(event, data) {\n var job, mappings, name, type, _ref;\n _ref = event.split(':'), name = _ref[0], type = _ref[1];\n mappings = this.adapter.get('mappings');\n type = mappings[name];\n if (event === 'job:log') {\n if (job = this.find(Travis.Job, data['job']['id'])) {\n return job.appendLog(data['job']['_log']);\n }\n } else if (data[type.singularName()]) {\n return this._loadOne(this, type, data);\n } else if (data[type.pluralName()]) {\n return this._loadMany(this, type, data);\n } else {\n if (!type) {\n throw \"can't load data for \" + name;\n }\n }\n },\n _loadOne: function(store, type, json) {\n var result, root;\n root = type.singularName();\n if (type === Travis.Build && json.repository) {\n result = this.loadIncomplete(Travis.Repo, json.repository);\n }\n return this.loadIncomplete(type, json[root]);\n },\n loadIncomplete: function(type, hash) {\n var record, result;\n result = this.merge(type, hash);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n if (!record.get('complete')) {\n record.set('incomplete', true);\n record.loadedAttributes = Object.keys(hash);\n }\n this._updateAssociations(type, type.singularName(), hash);\n return record;\n }\n },\n _loadMany: function(store, type, json) {\n var root;\n root = type.pluralName();\n this.adapter.sideload(store, type, json, root);\n return this.loadMany(type, json[root]);\n },\n _updateAssociations: function(type, name, data) {\n var _this = this;\n return Em.get(type, 'associationsByName').forEach(function(key, meta) {\n var clientId, dataProxy, id, ids, parent, _ref;\n if (meta.kind === 'belongsTo') {\n id = data[\"\" + key + \"_id\"];\n if (clientId = _this.typeMapFor(meta.type).idToCid[id]) {\n if (parent = _this.findByClientId(meta.type, clientId, id)) {\n dataProxy = parent.get('data');\n if (ids = dataProxy.get(\"\" + name + \"_ids\")) {\n if (_ref = data.id, __indexOf.call(ids, _ref) < 0) {\n ids.pushObject(data.id);\n }\n return parent.send('didChangeData');\n }\n }\n }\n }\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store");minispade.register('store/fixture_adapter', "(function() {(function() {\n\n this.Travis.FixtureAdapter = DS.Adapter.extend({\n find: function(store, type, id) {\n var fixtures;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n if (fixtures.hasLoaded) {\n return;\n }\n return setTimeout((function() {\n store.loadMany(type, fixtures);\n return fixtures.hasLoaded = true;\n }), 300);\n },\n findMany: function() {\n return this.find.apply(this, arguments);\n },\n findAll: function(store, type) {\n var fixtures, ids;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n ids = fixtures.map(function(item, index, self) {\n return item.id;\n });\n return store.loadMany(type, ids, fixtures);\n },\n findQuery: function(store, type, params, array) {\n var fixture, fixtures, hashes, key, matches, value;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n hashes = (function() {\n var _i, _len, _results;\n _results = [];\n for (_i = 0, _len = fixtures.length; _i < _len; _i++) {\n fixture = fixtures[_i];\n matches = (function() {\n var _results1;\n _results1 = [];\n for (key in params) {\n value = params[key];\n _results1.push(key === 'orderBy' || fixture[key] === value);\n }\n return _results1;\n })();\n if (matches.reduce(function(a, b) {\n return a && b;\n })) {\n _results.push(fixture);\n } else {\n _results.push(null);\n }\n }\n return _results;\n })();\n return array.load(hashes.compact());\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/fixture_adapter");minispade.register('store/rest_adapter', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('models');\n\n this.Travis.RestAdapter = DS.RESTAdapter.extend({\n mappings: {\n repositories: Travis.Repo,\n repository: Travis.Repo,\n repos: Travis.Repo,\n repo: Travis.Repo,\n builds: Travis.Build,\n build: Travis.Build,\n commits: Travis.Commit,\n commit: Travis.Commit,\n jobs: Travis.Job,\n job: Travis.Job,\n account: Travis.Account,\n accounts: Travis.Account,\n worker: Travis.Worker,\n workers: Travis.Worker\n },\n plurals: {\n repositories: 'repositories',\n repository: 'repositories',\n repo: 'repos',\n repos: 'repos',\n build: 'builds',\n branch: 'branches',\n job: 'jobs',\n worker: 'workers',\n profile: 'profile'\n },\n ajax: function() {\n return Travis.ajax.ajax.apply(this, arguments);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/rest_adapter");minispade.register('tailing', "(function() {(function() {\n\n this.Travis.Tailing = function() {\n this.position = $(window).scrollTop();\n $(window).scroll(this.onScroll.bind(this));\n return this;\n };\n\n $.extend(Travis.Tailing.prototype, {\n options: {\n timeout: 200\n },\n run: function() {\n this.autoScroll();\n this.positionButton();\n if (this.active()) {\n return Ember.run.later(this.run.bind(this), this.options.timeout);\n }\n },\n toggle: function(event) {\n if (this.active()) {\n return this.stop();\n } else {\n return this.start();\n }\n },\n active: function() {\n return $('#tail').hasClass('active');\n },\n start: function() {\n $('#tail').addClass('active');\n return this.run();\n },\n stop: function() {\n return $('#tail').removeClass('active');\n },\n autoScroll: function() {\n var log, logBottom, win, winBottom;\n if (!this.active()) {\n return;\n }\n win = $(window);\n log = $('#log');\n logBottom = log.offset().top + log.outerHeight() + 40;\n winBottom = win.scrollTop() + win.height();\n if (logBottom - winBottom > 0) {\n return win.scrollTop(logBottom - win.height());\n }\n },\n onScroll: function() {\n var position;\n this.positionButton();\n position = $(window).scrollTop();\n if (position < this.position) {\n this.stop();\n }\n return this.position = position;\n },\n positionButton: function() {\n var max, offset, tail;\n tail = $('#tail');\n if (tail.length === 0) {\n return;\n }\n offset = $(window).scrollTop() - $('#log').offset().top;\n max = $('#log').height() - $('#tail').height() + 5;\n if (offset > max) {\n offset = max;\n }\n if (offset > 0) {\n return tail.css({\n top: offset - 2\n });\n } else {\n return tail.css({\n top: 0\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=tailing");minispade.register('views', "(function() {(function() {\nminispade.require('ext/ember/namespace');\n\n this.Travis.reopen({\n View: Em.View.extend({\n popup: function(event) {\n this.popupCloseAll();\n return $(\"#\" + event.target.name).toggleClass('display');\n },\n popupClose: function(event) {\n return $(event.target).closest('.popup').removeClass('display');\n },\n popupCloseAll: function() {\n return $('.popup').removeClass('display');\n }\n })\n });\n\n this.Travis.reopen({\n HomeLayoutView: Travis.View.extend({\n templateName: 'layouts/home'\n }),\n AuthLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n }),\n ProfileLayoutView: Travis.View.extend({\n templateName: 'layouts/profile'\n }),\n StatsLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n })\n });\nminispade.require('views/accounts');\nminispade.require('views/application');\nminispade.require('views/build');\nminispade.require('views/events');\nminispade.require('views/flash');\nminispade.require('views/job');\nminispade.require('views/repo');\nminispade.require('views/profile');\nminispade.require('views/sidebar');\nminispade.require('views/stats');\nminispade.require('views/signin');\nminispade.require('views/top');\n\n}).call(this);\n\n})();\n//@ sourceURL=views");minispade.register('views/accounts', "(function() {(function() {\n\n this.Travis.reopen({\n AccountsView: Travis.View.extend({\n tabBinding: 'controller.tab',\n templateName: 'profile/accounts',\n classAccounts: (function() {\n if (this.get('tab') === 'accounts') {\n return 'active';\n }\n }).property('tab')\n }),\n AccountsListView: Em.CollectionView.extend({\n elementId: 'accounts',\n accountBinding: 'content',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n accountBinding: 'content',\n typeBinding: 'content.type',\n selectedBinding: 'account.selected',\n classNames: ['account'],\n classNameBindings: ['type', 'selected'],\n name: (function() {\n return this.get('content.name') || this.get('content.login');\n }).property('content.login', 'content.name'),\n urlAccount: (function() {\n return Travis.Urls.account(this.get('account.login'));\n }).property('account.login')\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/accounts");minispade.register('views/application', "(function() {(function() {\n\n this.Travis.reopen({\n ApplicationView: Travis.View.extend({\n templateName: 'application',\n classNames: ['application'],\n popup: function(event) {\n return console.log(event);\n },\n localeDidChange: (function() {\n var locale;\n if (locale = Travis.app.get('auth.user.locale')) {\n Travis.setLocale(locale);\n return Travis.app.get('router').reload();\n }\n }).observes('Travis.app.auth.user.locale'),\n click: function(event) {\n var targetAndParents;\n targetAndParents = $(event.target).parents().andSelf();\n if (!(targetAndParents.hasClass('open-popup') || targetAndParents.hasClass('popup'))) {\n this.popupCloseAll();\n }\n if (!targetAndParents.hasClass('menu')) {\n return $('.menu').removeClass('display');\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/application");minispade.register('views/build', "(function() {(function() {\n\n this.Travis.reopen({\n BuildsView: Travis.View.extend({\n templateName: 'builds/list',\n buildsBinding: 'controller.builds',\n showMore: function() {\n var id, number;\n id = this.get('controller.repo.id');\n number = this.get('builds.lastObject.number');\n return this.get('builds').load(Travis.Build.olderThanNumber(id, number));\n },\n ShowMoreButton: Em.View.extend({\n tagName: 'button',\n classNameBindings: ['isLoading'],\n attributeBindings: ['disabled'],\n isLoadingBinding: 'controller.builds.isLoading',\n template: Em.Handlebars.compile('{{view.label}}'),\n disabledBinding: 'isLoading',\n label: (function() {\n if (this.get('isLoading')) {\n return 'Loading';\n } else {\n return 'Show more';\n }\n }).property('isLoading'),\n click: function() {\n return this.get('parentView').showMore();\n }\n })\n }),\n BuildsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'controller.repo',\n buildBinding: 'context',\n commitBinding: 'build.commit',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha')\n }),\n BuildView: Travis.View.extend({\n templateName: 'builds/show',\n elementId: 'build',\n classNameBindings: ['color', 'loading'],\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n commitBinding: 'build.commit',\n currentItemBinding: 'build',\n loading: (function() {\n return !this.get('build.isComplete');\n }).property('build.isComplete'),\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/build");minispade.register('views/events', "(function() {(function() {\n\n this.Travis.reopen({\n EventsView: Travis.View.extend({\n templateName: 'events/list',\n eventsBinding: 'controller.events'\n }),\n EventsItemView: Travis.View.extend({\n tagName: 'tr'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/events");minispade.register('views/flash', "(function() {(function() {\n\n this.Travis.reopen({\n FlashView: Travis.View.extend({\n elementId: 'flash',\n tagName: 'ul',\n templateName: 'layouts/flash'\n }),\n FlashItemView: Travis.View.extend({\n tagName: 'li',\n classNameBindings: ['type'],\n type: (function() {\n return this.get('flash') && Ember.keys(this.get('flash'))[0];\n }).property('flash'),\n message: (function() {\n return this.get('flash') && this.get('flash')[this.get('type')];\n }).property('flash'),\n close: function(event) {\n return this.get('controller').removeObject(this.get('flash'));\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/flash");minispade.register('views/job', "(function() {(function() {\n\n this.Travis.reopen({\n JobsView: Travis.View.extend({\n templateName: 'jobs/list',\n buildBinding: 'controller.build'\n }),\n JobsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'context.repo',\n jobBinding: 'context',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id')\n }),\n JobView: Travis.View.extend({\n templateName: 'jobs/show',\n repoBinding: 'controller.repo',\n jobBinding: 'controller.job',\n commitBinding: 'job.commit',\n currentItemBinding: 'job',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n }),\n LogView: Travis.View.extend({\n templateName: 'jobs/log',\n logBinding: 'job.log',\n scrollTo: function(hash) {\n $('#main').scrollTop(0);\n $('html,body').scrollTop($(hash).offset().top);\n return this.set('controller.lineNumberHash', null);\n },\n lineNumberHashDidChange: (function() {\n return this.tryScrollingToHashLineNumber();\n }).observes('controller.lineNumberHash'),\n tryScrollingToHashLineNumber: function() {\n var checker, hash, self;\n if (hash = this.get('controller.lineNumberHash')) {\n self = this;\n checker = function() {\n if (self.get('isDestroyed')) {\n return;\n }\n if ($(hash).length) {\n return self.scrollTo(hash);\n } else {\n return setTimeout(checker, 100);\n }\n };\n return checker();\n }\n },\n didInsertElement: function() {\n this._super.apply(this, arguments);\n return this.tryScrollingToHashLineNumber();\n },\n click: function(event) {\n var path, target;\n target = $(event.target);\n target.closest('.fold').toggleClass('open');\n if (target.is('.log-line-number')) {\n path = target.attr('href');\n Travis.app.get('router').route(path);\n event.stopPropagation();\n return false;\n }\n },\n toTop: function() {\n return $(window).scrollTop(0);\n },\n jobBinding: 'context',\n toggleTailing: function(event) {\n Travis.app.tailing.toggle();\n return event.preventDefault();\n },\n logSubscriber: (function() {\n var job, state;\n job = this.get('job');\n state = this.get('job.state');\n if (job && state !== 'finished') {\n job.subscribe();\n }\n return null;\n }).property('job', 'job.state')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/job");minispade.register('views/left', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n tabBinding: 'controller.tab',\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/left");minispade.register('views/profile', "(function() {(function() {\n\n this.Travis.reopen({\n ProfileView: Travis.View.extend({\n templateName: 'profile/show',\n accountBinding: 'controller.account',\n name: (function() {\n return this.get('account.name') || this.get('account.login');\n }).property('account.name', 'account.login')\n }),\n ProfileTabsView: Travis.View.extend({\n templateName: 'profile/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classHooks: (function() {\n if (this.get('tab') === 'hooks') {\n return 'active';\n }\n }).property('tab'),\n classUser: (function() {\n if (this.get('tab') === 'user') {\n return 'active';\n }\n }).property('tab'),\n accountBinding: 'controller.account',\n displayUser: (function() {\n return this.get('controller.account.login') === this.get('controller.user.login');\n }).property('controller.account.login', 'controller.user.login')\n }),\n HooksView: Travis.View.extend({\n templateName: 'profile/tabs/hooks',\n userBinding: 'controller.user',\n urlGithubAdmin: (function() {\n return Travis.Urls.githubAdmin(this.get('hook.slug'));\n }).property('hook.slug')\n }),\n UserView: Travis.View.extend({\n templateName: 'profile/tabs/user',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=48&d=mm\";\n }).property('user.gravatarId'),\n locales: (function() {\n return [\n {\n key: null,\n name: ''\n }, {\n key: 'en',\n name: 'English'\n }, {\n key: 'ca',\n name: 'Catalan'\n }, {\n key: 'cs',\n name: 'Čeština'\n }, {\n key: 'es',\n name: 'Español'\n }, {\n key: 'fr',\n name: 'Français'\n }, {\n key: 'ja',\n name: '日本語'\n }, {\n key: 'nl',\n name: 'Nederlands'\n }, {\n key: 'nb',\n name: 'Norsk Bokmål'\n }, {\n key: 'pl',\n name: 'Polski'\n }, {\n key: {\n 'pt-BR': {\n name: 'Português brasileiro'\n }\n }\n }, {\n key: 'ru',\n name: 'Русский'\n }\n ];\n }).property(),\n saveLocale: function(event) {\n return this.get('user').updateLocale($('#locale').val());\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/profile");minispade.register('views/repo', "(function() {(function() {\nminispade.require('views/repo/list');\nminispade.require('views/repo/show');\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo");minispade.register('views/repo/list', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n toggleInfo: function(event) {\n return $('#repos').toggleClass('open');\n }\n }),\n ReposListView: Em.CollectionView.extend({\n elementId: 'repos',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n repoBinding: 'content',\n classNames: ['repo'],\n classNameBindings: ['color', 'selected'],\n selectedBinding: 'repo.selected',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('repo.lastBuildResult'));\n }).property('repo.lastBuildResult'),\n urlRepo: (function() {\n return Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlLastBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('repo.lastBuildId'));\n }).property('repo.slug', 'repo.lastBuildId')\n })\n }),\n ReposListTabsView: Travis.View.extend({\n templateName: 'repos/list/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.app.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/list");minispade.register('views/repo/show', "(function() {(function() {\n\n this.Travis.reopen({\n RepoView: Travis.View.extend({\n templateName: 'repos/show',\n reposBinding: 'controller.repos',\n repoBinding: 'controller.repo',\n \"class\": (function() {\n if (!this.get('repo.isComplete') && !this.get('isEmpty')) {\n return 'loading';\n }\n }).property('repo.isComplete'),\n isEmpty: (function() {\n return this.get('repos.length') === 0;\n }).property('repos.length'),\n urlGithub: (function() {\n return Travis.Urls.githubRepo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubWatchers: (function() {\n return Travis.Urls.githubWatchers(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubNetwork: (function() {\n return Travis.Urls.githubNetwork(this.get('repo.slug'));\n }).property('repo.slug')\n }),\n ReposEmptyView: Travis.View.extend({\n template: ''\n }),\n RepoShowTabsView: Travis.View.extend({\n templateName: 'repos/show/tabs',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n classCurrent: (function() {\n if (this.get('tab') === 'current') {\n return 'active';\n }\n }).property('tab'),\n classBuilds: (function() {\n if (this.get('tab') === 'builds') {\n return 'active';\n }\n }).property('tab'),\n classPullRequests: (function() {\n if (this.get('tab') === 'pull_requests') {\n return 'active';\n }\n }).property('tab'),\n classBranches: (function() {\n if (this.get('tab') === 'branches') {\n return 'active';\n }\n }).property('tab'),\n classEvents: (function() {\n if (this.get('tab') === 'events') {\n return 'active';\n }\n }).property('tab'),\n classBuild: (function() {\n var classes, tab;\n tab = this.get('tab');\n classes = [];\n if (tab === 'build') {\n classes.push('active');\n }\n if (tab === 'build' || tab === 'job') {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab'),\n classJob: (function() {\n if (this.get('tab') === 'job') {\n return 'active display-inline';\n }\n }).property('tab')\n }),\n RepoShowToolsView: Travis.View.extend({\n templateName: 'repos/show/tools',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n closeMenu: function() {\n return $('.menu').removeClass('display');\n },\n menu: function(event) {\n var element;\n this.popupCloseAll();\n element = $('#tools .menu').toggleClass('display');\n return event.stopPropagation();\n },\n requeue: function() {\n this.closeMenu();\n return this.get('build').requeue();\n },\n statusImages: function(event) {\n this.set('active', true);\n this.closeMenu();\n this.popup(event);\n return event.stopPropagation();\n },\n canPush: (function() {\n return this.get('isBuildTab') && this.get('build.isFinished') && this.get('hasPushPermissions');\n }).property('build.isFinished', 'hasPushPermissions', 'isBuildTab'),\n isBuildTab: (function() {\n return ['current', 'build', 'job'].indexOf(this.get('tab')) > -1;\n }).property('tab'),\n hasPushPermissions: (function() {\n var permissions;\n if (permissions = Travis.app.get('currentUser.permissions')) {\n return permissions.indexOf(this.get('repo.id')) > -1;\n }\n }).property('Travis.app.currentUser.permissions.length', 'repo.id'),\n branches: (function() {\n if (this.get('active')) {\n return this.get('repo.branches');\n }\n }).property('active', 'repo.branches'),\n urlRepo: (function() {\n return 'https://' + location.host + Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlStatusImage: (function() {\n return Travis.Urls.statusImage(this.get('repo.slug'), this.get('branch.commit.branch'));\n }).property('repo.slug', 'branch'),\n markdownStatusImage: (function() {\n return \"[) + \")](\" + (this.get('urlRepo')) + \")\";\n }).property('urlStatusImage'),\n textileStatusImage: (function() {\n return \"!\" + (this.get('urlStatusImage')) + \"!:\" + (this.get('urlRepo'));\n }).property('urlStatusImage'),\n rdocStatusImage: (function() {\n return \"{ }[\" + (this.get('urlRepo')) + \"]\";\n }).property('urlStatusImage')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/show");minispade.register('views/sidebar', "(function() {(function() {\n\n this.Travis.reopen({\n SidebarView: Travis.View.extend({\n templateName: 'layouts/sidebar',\n DecksView: Em.View.extend({\n templateName: \"sponsors/decks\",\n controller: Travis.SponsorsController.create({\n perPage: 1\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n Travis.app.get('router.sidebarController').tickables.push(controller);\n controller.set('content', Travis.Sponsor.decks());\n }\n return this._super.apply(this, arguments);\n }\n }),\n LinksView: Em.View.extend({\n templateName: \"sponsors/links\",\n controller: Travis.SponsorsController.create({\n perPage: 6\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n controller.set('content', Travis.Sponsor.links());\n Travis.app.get('router.sidebarController').tickables.push(controller);\n }\n return this._super.apply(this, arguments);\n }\n }),\n WorkersView: Em.View.extend({\n templateName: 'workers/list',\n controller: Travis.WorkersController.create(),\n didInsertElement: function() {\n this.set('controller.content', Travis.Worker.find());\n return this._super.apply(this, arguments);\n }\n }),\n QueuesView: Em.View.extend({\n templateName: 'queues/list',\n controller: Em.ArrayController.create(),\n didInsertElement: function() {\n var queue, queues;\n queues = (function() {\n var _i, _len, _ref, _results;\n _ref = Travis.QUEUES;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n queue = _ref[_i];\n _results.push(Em.ArrayController.create({\n content: Travis.Job.queued(queue.name),\n id: \"queue_\" + queue.name,\n name: queue.display\n }));\n }\n return _results;\n })();\n this.set('controller.content', queues);\n return this._super.apply(this, arguments);\n }\n })\n }),\n WorkersView: Travis.View.extend({\n toggleWorkers: function(event) {\n var handle;\n handle = $(event.target).toggleClass('open');\n if (handle.hasClass('open')) {\n return $('#workers li').addClass('open');\n } else {\n return $('#workers li').removeClass('open');\n }\n }\n }),\n WorkersListView: Travis.View.extend({\n toggle: function(event) {\n return $(event.target).closest('li').toggleClass('open');\n }\n }),\n WorkersItemView: Travis.View.extend({\n display: (function() {\n var name, number, payload, repo, state;\n name = (this.get('worker.name') || '').replace('travis-', '');\n state = this.get('worker.state');\n payload = this.get('worker.payload');\n if (state === 'working' && (payload != null ? payload.repository : void 0) && (payload != null ? payload.build : void 0)) {\n repo = payload.repository.slug;\n number = ' #' + payload.build.number;\n return (\"\" + name + \": \" + repo + \" \" + number).htmlSafe();\n } else {\n return \"\" + name + \": \" + state;\n }\n }).property('worker.state')\n }),\n QueueItemView: Travis.View.extend({\n tagName: 'li'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/sidebar");minispade.register('views/signin', "(function() {(function() {\n\n this.Travis.reopen({\n SigninView: Travis.View.extend({\n templateName: 'auth/signin',\n signingIn: (function() {\n return Travis.app.get('authState') === 'signing-in';\n }).property('Travis.app.authState')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/signin");minispade.register('views/stats', "(function() {(function() {\n\n this.Travis.reopen({\n StatsView: Travis.View.extend({\n templateName: 'stats/show',\n didInsertElement: function() {},\n renderChart: function(config) {\n var chart;\n chart = new Highcharts.Chart(config);\n return this.fetch(config.source, function(data) {\n var stats;\n stats = (function() {\n var _i, _len, _ref, _results;\n _ref = data.stats;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n stats = _ref[_i];\n _results.push(config.map(stats));\n }\n return _results;\n })();\n return chart.series[0].setData(stats);\n });\n },\n fetch: function(url, callback) {\n return $.ajax({\n type: 'GET',\n url: url,\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n },\n success: callback\n });\n },\n CHARTS: {\n repos: {\n source: '/api/stats/repos',\n total: 0,\n map: function(data) {\n return [Date.parse(data.date), this.total += parseInt(data.count)];\n },\n chart: {\n renderTo: \"repos_stats\"\n },\n title: {\n text: \"Total Projects/Repositories\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" repos\";\n }\n },\n series: [\n {\n name: \"Repository Growth\",\n data: []\n }\n ]\n },\n builds: {\n source: '/api/stats/tests',\n map: function(data) {\n return [Date.parse(data.date), parseInt(data.count)];\n },\n chart: {\n renderTo: \"tests_stats\",\n type: \"column\"\n },\n title: {\n text: \"Build Count\"\n },\n subtitle: {\n text: \"last month\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" builds\";\n }\n },\n series: [\n {\n name: \"Total Builds\",\n data: []\n }\n ]\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/stats");minispade.register('views/top', "(function() {(function() {\n\n this.Travis.reopen({\n TopView: Travis.View.extend({\n templateName: 'layouts/top',\n tabBinding: 'controller.tab',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=24&d=mm\";\n }).property('user.gravatarId'),\n classHome: (function() {\n if (this.get('tab') === 'home') {\n return 'active';\n }\n }).property('tab'),\n classStats: (function() {\n if (this.get('tab') === 'stats') {\n return 'active';\n }\n }).property('tab'),\n classProfile: (function() {\n var classes;\n classes = ['profile'];\n if (this.get('tab') === 'profile') {\n classes.push('active');\n }\n classes.push(Travis.app.get('authState'));\n return classes.join(' ');\n }).property('tab', 'Travis.app.authState'),\n showProfile: function() {\n return $('#top .profile ul').show();\n },\n hideProfile: function() {\n return $('#top .profile ul').hide();\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/top");minispade.register('config/emoij', "(function() {(function() {\n\n this.EmojiDictionary = ['-1', '0', '1', '109', '2', '3', '4', '5', '6', '7', '8', '8ball', '9', 'a', 'ab', 'airplane', 'alien', 'ambulance', 'angel', 'anger', 'angry', 'apple', 'aquarius', 'aries', 'arrow_backward', 'arrow_down', 'arrow_forward', 'arrow_left', 'arrow_lower_left', 'arrow_lower_right', 'arrow_right', 'arrow_up', 'arrow_upper_left', 'arrow_upper_right', 'art', 'astonished', 'atm', 'b', 'baby', 'baby_chick', 'baby_symbol', 'balloon', 'bamboo', 'bank', 'barber', 'baseball', 'basketball', 'bath', 'bear', 'beer', 'beers', 'beginner', 'bell', 'bento', 'bike', 'bikini', 'bird', 'birthday', 'black_square', 'blue_car', 'blue_heart', 'blush', 'boar', 'boat', 'bomb', 'book', 'boot', 'bouquet', 'bow', 'bowtie', 'boy', 'bread', 'briefcase', 'broken_heart', 'bug', 'bulb', 'bullettrain_front', 'bullettrain_side', 'bus', 'busstop', 'cactus', 'cake', 'calling', 'camel', 'camera', 'cancer', 'capricorn', 'car', 'cat', 'cd', 'chart', 'checkered_flag', 'cherry_blossom', 'chicken', 'christmas_tree', 'church', 'cinema', 'city_sunrise', 'city_sunset', 'clap', 'clapper', 'clock1', 'clock10', 'clock11', 'clock12', 'clock2', 'clock3', 'clock4', 'clock5', 'clock6', 'clock7', 'clock8', 'clock9', 'closed_umbrella', 'cloud', 'clubs', 'cn', 'cocktail', 'coffee', 'cold_sweat', 'computer', 'confounded', 'congratulations', 'construction', 'construction_worker', 'convenience_store', 'cool', 'cop', 'copyright', 'couple', 'couple_with_heart', 'couplekiss', 'cow', 'crossed_flags', 'crown', 'cry', 'cupid', 'currency_exchange', 'curry', 'cyclone', 'dancer', 'dancers', 'dango', 'dart', 'dash', 'de', 'department_store', 'diamonds', 'disappointed', 'dog', 'dolls', 'dolphin', 'dress', 'dvd', 'ear', 'ear_of_rice', 'egg', 'eggplant', 'egplant', 'eight_pointed_black_star', 'eight_spoked_asterisk', 'elephant', 'email', 'es', 'european_castle', 'exclamation', 'eyes', 'factory', 'fallen_leaf', 'fast_forward', 'fax', 'fearful', 'feelsgood', 'feet', 'ferris_wheel', 'finnadie', 'fire', 'fire_engine', 'fireworks', 'fish', 'fist', 'flags', 'flushed', 'football', 'fork_and_knife', 'fountain', 'four_leaf_clover', 'fr', 'fries', 'frog', 'fuelpump', 'gb', 'gem', 'gemini', 'ghost', 'gift', 'gift_heart', 'girl', 'goberserk', 'godmode', 'golf', 'green_heart', 'grey_exclamation', 'grey_question', 'grin', 'guardsman', 'guitar', 'gun', 'haircut', 'hamburger', 'hammer', 'hamster', 'hand', 'handbag', 'hankey', 'hash', 'headphones', 'heart', 'heart_decoration', 'heart_eyes', 'heartbeat', 'heartpulse', 'hearts', 'hibiscus', 'high_heel', 'horse', 'hospital', 'hotel', 'hotsprings', 'house', 'hurtrealbad', 'icecream', 'id', 'ideograph_advantage', 'imp', 'information_desk_person', 'iphone', 'it', 'jack_o_lantern', 'japanese_castle', 'joy', 'jp', 'key', 'kimono', 'kiss', 'kissing_face', 'kissing_heart', 'koala', 'koko', 'kr', 'leaves', 'leo', 'libra', 'lips', 'lipstick', 'lock', 'loop', 'loudspeaker', 'love_hotel', 'mag', 'mahjong', 'mailbox', 'man', 'man_with_gua_pi_mao', 'man_with_turban', 'maple_leaf', 'mask', 'massage', 'mega', 'memo', 'mens', 'metal', 'metro', 'microphone', 'minidisc', 'mobile_phone_off', 'moneybag', 'monkey', 'monkey_face', 'moon', 'mortar_board', 'mount_fuji', 'mouse', 'movie_camera', 'muscle', 'musical_note', 'nail_care', 'necktie', 'new', 'no_good', 'no_smoking', 'nose', 'notes', 'o', 'o2', 'ocean', 'octocat', 'octopus', 'oden', 'office', 'ok', 'ok_hand', 'ok_woman', 'older_man', 'older_woman', 'open_hands', 'ophiuchus', 'palm_tree', 'parking', 'part_alternation_mark', 'pencil', 'penguin', 'pensive', 'persevere', 'person_with_blond_hair', 'phone', 'pig', 'pill', 'pisces', 'plus1', 'point_down', 'point_left', 'point_right', 'point_up', 'point_up_2', 'police_car', 'poop', 'post_office', 'postbox', 'pray', 'princess', 'punch', 'purple_heart', 'question', 'rabbit', 'racehorse', 'radio', 'rage', 'rage1', 'rage2', 'rage3', 'rage4', 'rainbow', 'raised_hands', 'ramen', 'red_car', 'red_circle', 'registered', 'relaxed', 'relieved', 'restroom', 'rewind', 'ribbon', 'rice', 'rice_ball', 'rice_cracker', 'rice_scene', 'ring', 'rocket', 'roller_coaster', 'rose', 'ru', 'runner', 'sa', 'sagittarius', 'sailboat', 'sake', 'sandal', 'santa', 'satellite', 'satisfied', 'saxophone', 'school', 'school_satchel', 'scissors', 'scorpius', 'scream', 'seat', 'secret', 'shaved_ice', 'sheep', 'shell', 'ship', 'shipit', 'shirt', 'shit', 'shoe', 'signal_strength', 'six_pointed_star', 'ski', 'skull', 'sleepy', 'slot_machine', 'smile', 'smiley', 'smirk', 'smoking', 'snake', 'snowman', 'sob', 'soccer', 'space_invader', 'spades', 'spaghetti', 'sparkler', 'sparkles', 'speaker', 'speedboat', 'squirrel', 'star', 'star2', 'stars', 'station', 'statue_of_liberty', 'stew', 'strawberry', 'sunflower', 'sunny', 'sunrise', 'sunrise_over_mountains', 'surfer', 'sushi', 'suspect', 'sweat', 'sweat_drops', 'swimmer', 'syringe', 'tada', 'tangerine', 'taurus', 'taxi', 'tea', 'telephone', 'tennis', 'tent', 'thumbsdown', 'thumbsup', 'ticket', 'tiger', 'tm', 'toilet', 'tokyo_tower', 'tomato', 'tongue', 'top', 'tophat', 'traffic_light', 'train', 'trident', 'trophy', 'tropical_fish', 'truck', 'trumpet', 'tshirt', 'tulip', 'tv', 'u5272', 'u55b6', 'u6307', 'u6708', 'u6709', 'u6e80', 'u7121', 'u7533', 'u7a7a', 'umbrella', 'unamused', 'underage', 'unlock', 'up', 'us', 'v', 'vhs', 'vibration_mode', 'virgo', 'vs', 'walking', 'warning', 'watermelon', 'wave', 'wc', 'wedding', 'whale', 'wheelchair', 'white_square', 'wind_chime', 'wink', 'wink2', 'wolf', 'woman', 'womans_hat', 'womens', 'x', 'yellow_heart', 'zap', 'zzz'];\n\n}).call(this);\n\n})();\n//@ sourceURL=config/emoij");minispade.register('data/sponsors', "(function() {(function() {\n\n this.Travis.SPONSORS = [\n {\n type: 'platinum',\n url: \"http://www.wooga.com\",\n image: \"wooga-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://bendyworks.com\",\n image: \"bendyworks-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://cloudcontrol.com\",\n image: \"cloudcontrol-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://xing.de\",\n image: \"xing-205x130.png\"\n }, {\n type: 'gold',\n url: \"http://heroku.com\",\n image: \"heroku-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://soundcloud.com\",\n image: \"soundcloud-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://nedap.com\",\n image: \"nedap-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://mongohq.com\",\n image: \"mongohq-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://zweitag.de\",\n image: \"zweitag-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://kanbanery.com\",\n image: \"kanbanery-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://ticketevolution.com\",\n image: \"ticketevolution-205x60.jpg\"\n }, {\n type: 'gold',\n url: \"http://plan.io/travis\",\n image: \"planio-205x60.png\"\n }, {\n type: 'silver',\n link: \"Cobot : The one tool to run your coworking space \"\n }, {\n type: 'silver',\n link: \"JumpstartLab : We build developers \"\n }, {\n type: 'silver',\n link: \"Evil Martians : Agile Ruby on Rails development \"\n }, {\n type: 'silver',\n link: \"Zendesk : Love your helpdesk \"\n }, {\n type: 'silver',\n link: \"Stripe : Payments for developers \"\n }, {\n type: 'silver',\n link: \"Basho : We make Riak! \"\n }, {\n type: 'silver',\n link: \"Relevance : We deliver software solutions \"\n }, {\n type: 'silver',\n link: \"Mindmatters : Software für Menschen \"\n }, {\n type: 'silver',\n link: \"Amen : The best and worst of everything \"\n }, {\n type: 'silver',\n link: \"Site5 : Premium Web Hosting Solutions \"\n }, {\n type: 'silver',\n link: \"Crowd Interactive : Leading Rails consultancy in Mexico \"\n }, {\n type: 'silver',\n link: \"Atomic Object : Work with really smart people \"\n }, {\n type: 'silver',\n link: \"Codeminer : smart services for your startup \"\n }, {\n type: 'silver',\n link: \"Cloudant : grow into your data layer, not out of it \"\n }, {\n type: 'silver',\n link: \"Gidsy : Explore, organize & book unique things to do! \"\n }, {\n type: 'silver',\n link: \"5apps : Package & deploy HTML5 apps automatically \"\n }, {\n type: 'silver',\n link: \"Meltmedia : We are Interactive Superheroes \"\n }, {\n type: 'silver',\n link: \"Fingertips offers design and development services \"\n }, {\n type: 'silver',\n link: \"Engine Yard : Build epic apps, let us handle the rest \"\n }, {\n type: 'silver',\n link: \"Malwarebytes : Defeat Malware once and for all. \"\n }, {\n type: 'silver',\n link: \"Readmill : The best reading app on the iPad. \"\n }, {\n type: 'silver',\n link: \"Medidata : clinical tech improving quality of life \"\n }, {\n type: 'silver',\n link: \"ESM : Japan's best agile Ruby/Rails consultancy \"\n }, {\n type: 'silver',\n link: \"Twitter : instantly connects people everywhere \"\n }, {\n type: 'silver',\n link: \"AGiLE ANiMAL : we <3 Travis CI. \"\n }, {\n type: 'silver',\n link: \"Tupalo : Discover, review & share local businesses. \"\n }\n ];\n\n this.Travis.WORKERS = {\n \"jvm-otp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n },\n \"jvm-otp2.worker.travis-ci.org\": {\n name: \"Transloadit\",\n url: \"http://transloadit.com\"\n },\n \"ppp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://beta.travis-ci.com\"\n },\n \"ppp2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ppp3.worker.travis-ci.org\": {\n name: \"Alchemy CMS\",\n url: \"http://alchemy-cms.com/\"\n },\n \"rails1.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby1.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"ruby2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby3.worker.travis-ci.org\": {\n name: \"Railslove\",\n url: \"http://railslove.de\"\n },\n \"ruby4.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"spree.worker.travis-ci.org\": {\n name: \"Spree\",\n url: \"http://spreecommerce.com\"\n },\n \"staging.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=data/sponsors");minispade.register('ext/jquery', "(function() {(function() {\n\n $.fn.extend({\n outerHtml: function() {\n return $(this).wrap('
').parent().html();\n },\n outerElement: function() {\n return $($(this).outerHtml()).empty();\n },\n flash: function() {\n return Utils.flash(this);\n },\n unflash: function() {\n return Utils.unflash(this);\n },\n filterLog: function() {\n this.deansi();\n return this.foldLog();\n },\n deansi: function() {\n return this.html(Utils.deansi(this.html()));\n },\n foldLog: function() {\n return this.html(Utils.foldLog(this.html()));\n },\n unfoldLog: function() {\n return this.html(Utils.unfoldLog(this.html()));\n },\n updateTimes: function() {\n return Utils.updateTimes(this);\n },\n activateTab: function(tab) {\n return Utils.activateTab(this, tab);\n },\n timeInWords: function() {\n return $(this).each(function() {\n return $(this).text(Utils.timeInWords(parseInt($(this).attr('title'))));\n });\n },\n updateGithubStats: function(repo) {\n return Utils.updateGithubStats(repo, $(this));\n }\n });\n\n $.extend({\n isEmpty: function(obj) {\n if ($.isArray(obj)) {\n return !obj.length;\n } else if ($.isObject(obj)) {\n return !$.keys(obj).length;\n } else {\n return !obj;\n }\n },\n isObject: function(obj) {\n return Object.prototype.toString.call(obj) === '[object Object]';\n },\n keys: function(obj) {\n var keys;\n keys = [];\n $.each(obj, function(key) {\n return keys.push(key);\n });\n return keys;\n },\n values: function(obj) {\n var values;\n values = [];\n $.each(obj, function(key, value) {\n return values.push(value);\n });\n return values;\n },\n underscore: function(string) {\n return string[0].toLowerCase() + string.substring(1).replace(/([A-Z])?/g, function(match, chr) {\n if (chr) {\n return \"_\" + (chr.toUpperCase());\n } else {\n return '';\n }\n });\n },\n camelize: function(string, uppercase) {\n string = uppercase === false ? $.underscore(string) : $.capitalize(string);\n return string.replace(/_(.)?/g, function(match, chr) {\n if (chr) {\n return chr.toUpperCase();\n } else {\n return '';\n }\n });\n },\n capitalize: function(string) {\n return string[0].toUpperCase() + string.substring(1);\n },\n compact: function(object) {\n return $.grep(object, function(value) {\n return !!value;\n });\n },\n all: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return false;\n }\n i++;\n }\n return true;\n },\n detect: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return array[i];\n }\n i++;\n }\n },\n select: function(array, callback) {\n var args, i, result;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n result = [];\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n result.push(array[i]);\n }\n i++;\n }\n return result;\n },\n slice: function(object, key) {\n var keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) > -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n only: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) !== -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n except: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) === -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n intersect: function(array, other) {\n return array.filter(function(element) {\n return other.indexOf(element) !== -1;\n });\n },\n map: function(elems, callback, arg) {\n var i, isArray, key, length, ret, value;\n value = void 0;\n key = void 0;\n ret = [];\n i = 0;\n length = elems.length;\n isArray = elems instanceof jQuery || length !== void 0 && typeof length === 'number' && (length > 0 && elems[0] && elems[length - 1]) || length === 0 || jQuery.isArray(elems);\n if (isArray) {\n while (i < length) {\n value = callback(elems[i], i, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n i++;\n }\n } else {\n for (key in elems) {\n value = callback(elems[key], key, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n }\n }\n return ret.concat.apply([], ret);\n },\n shuffle: function(array) {\n var current, tmp, top;\n array = array.slice();\n top = array.length;\n while (top && --top) {\n current = Math.floor(Math.random() * (top + 1));\n tmp = array[current];\n array[current] = array[top];\n array[top] = tmp;\n }\n return array;\n },\n truncate: function(string, length) {\n if (string.length > length) {\n return string.trim().substring(0, length) + '...';\n } else {\n return string;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=ext/jquery");minispade.register('travis/ajax', "(function() {(function() {\n\n jQuery.support.cors = true;\n\n this.Travis.ajax = Em.Object.create({\n DEFAULT_OPTIONS: {\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n }\n },\n get: function(url, callback) {\n return this.ajax(url, 'get', {\n success: callback\n });\n },\n post: function(url, data, callback) {\n return this.ajax(url, 'post', {\n data: data,\n success: callback\n });\n },\n ajax: function(url, method, options) {\n var endpoint, success, token, _base,\n _this = this;\n endpoint = Travis.config.api_endpoint || '';\n options = options || {};\n if (token = sessionStorage.getItem('travis.token')) {\n options.headers || (options.headers = {});\n (_base = options.headers)['Authorization'] || (_base['Authorization'] = \"token \" + token);\n }\n options.url = \"\" + endpoint + url;\n options.type = method;\n options.dataType = 'json';\n options.contentType = 'application/json; charset=utf-8';\n options.context = this;\n if (options.data && method !== 'GET' && method !== 'get') {\n options.data = JSON.stringify(options.data);\n }\n success = options.success || (function() {});\n options.success = function(data) {\n var _ref;\n if (((_ref = Travis.app) != null ? _ref.router : void 0) && data.flash) {\n Travis.app.router.flashController.pushObjects(data.flash);\n }\n delete data.flash;\n return success.call(_this, data);\n };\n options.error = function(data) {\n if (data.flash) {\n return Travis.app.router.flashController.pushObject(data.flash);\n }\n };\n return $.ajax($.extend(options, Travis.ajax.DEFAULT_OPTIONS));\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ajax");minispade.register('travis/expandable_record_array', "(function() {(function() {\n\n Travis.ExpandableRecordArray = DS.RecordArray.extend({\n isLoaded: false,\n isLoading: false,\n load: function(array) {\n var observer, self;\n this.set('isLoading', true);\n self = this;\n observer = function() {\n var content;\n if (this.get('isLoaded')) {\n content = self.get('content');\n array.removeObserver('isLoaded', observer);\n array.forEach(function(record) {\n return self.pushObject(record);\n });\n self.set('isLoading', false);\n return self.set('isLoaded', true);\n }\n };\n return array.addObserver('isLoaded', observer);\n },\n pushObject: function(record) {\n var clientId, id, ids;\n ids = this.get('content');\n id = record.get('id');\n clientId = record.get('clientId');\n if (ids.contains(clientId)) {\n return;\n }\n return ids.pushObject(clientId);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/expandable_record_array");minispade.register('travis/limited_array', "(function() {(function() {\n\n Travis.LimitedArray = Em.ArrayProxy.extend({\n limit: 10,\n init: function() {\n return this._super.apply(this, arguments);\n },\n arrangedContent: (function() {\n var content;\n if (content = this.get('content')) {\n return content.slice(0, this.get('limit'));\n }\n }).property('content'),\n contentArrayDidChange: function(array, index, removedCount, addedCount) {\n var addedObjects, arrangedContent, length, limit, object, _i, _len;\n this._super.apply(this, arguments);\n if (addedCount > 0) {\n addedObjects = array.slice(index, index + addedCount);\n arrangedContent = this.get('arrangedContent');\n for (_i = 0, _len = addedObjects.length; _i < _len; _i++) {\n object = addedObjects[_i];\n arrangedContent.unshiftObject(object);\n }\n limit = this.get('limit');\n length = arrangedContent.get('length');\n if (length > limit) {\n return arrangedContent.replace(limit, length - limit);\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/limited_array");minispade.register('travis/location', "(function() {(function() {\n\n Travis.Location = Ember.HistoryLocation.extend({\n onUpdateURL: function(callback) {\n var guid;\n guid = Ember.guidFor(this);\n return Ember.$(window).bind('popstate.ember-location-' + guid, function(e) {\n return callback(location.pathname + location.hash);\n });\n },\n getURL: function() {\n var location;\n location = this.get('location');\n return location.pathname + location.hash;\n }\n });\n\n Ember.Location.implementations['travis'] = Travis.Location;\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/location");minispade.register('travis/log', "(function() {(function() {\n\n this.Travis.Log = {\n FOLDS: {\n schema: /(\\$ (?:bundle exec )?rake( db:create)? db:schema:load[\\s\\S]*?-- assume_migrated_upto_version[\\s\\S]*?<\\/p>\\n.*<\\/p>)/g,\n migrate: /(\\$ (?:bundle exec )?rake( db:create)? db:migrate[\\s\\S]*== +\\w+: migrated \\(.*\\) =+)/g,\n bundle: /(\\$ bundle install.*<\\/p>\\n((Updating|Using|Installing|Fetching|remote:|Receiving|Resolving).*?<\\/p>\\n|<\\/p>\\n)*)/g,\n exec: /([\\/\\w]*.rvm\\/rubies\\/[\\S]*?\\/(ruby|rbx|jruby) .*?<\\/p>)/g\n },\n filter: function(log, path) {\n log = this.escape(log);\n log = this.deansi(log);\n log = log.replace(/\\r/g, '');\n log = this.number(log, path);\n log = this.fold(log);\n log = log.replace(/\\n/g, '');\n return log;\n },\n stripPaths: function(log) {\n return log.replace(/\\/home\\/vagrant\\/builds(\\/[^\\/\\n]+){2}\\//g, '');\n },\n escape: function(log) {\n return Handlebars.Utils.escapeExpression(log);\n },\n escapeRuby: function(log) {\n return log.replace(/#<(\\w+.*?)>/, '#<$1>');\n },\n number: function(log, path) {\n var result;\n path = \"\" + path + \"/\";\n result = '';\n $.each(log.trim().split('\\n'), function(ix, line) {\n var number, pathWithNumber;\n number = ix + 1;\n pathWithNumber = \"\" + path + \"#L\" + number;\n return result += '%@ %@
\\n'.fmt(pathWithNumber, number, number, number, line);\n });\n return result.trim();\n },\n deansi: function(log) {\n var ansi, text;\n log = log.replace(/\\r\\r/g, '\\r').replace(/\\033\\[K\\r/g, '\\r').replace(/^.*\\r(?!$)/gm, '').replace(/\u001b\\[2K/g, '').replace(/\\033\\(B/g, \"\");\n ansi = ansiparse(log);\n text = '';\n ansi.forEach(function(part) {\n var classes;\n classes = [];\n part.foreground && classes.push(part.foreground);\n part.background && classes.push('bg-' + part.background);\n part.bold && classes.push('bold');\n part.italic && classes.push('italic');\n return text += (classes.length ? '' + part.text + ' ' : part.text);\n });\n return text.replace(/\\033/g, '');\n },\n fold: function(log) {\n log = this.unfold(log);\n $.each(Travis.Log.FOLDS, function(name, pattern) {\n return log = log.replace(pattern, function() {\n return '' + arguments[1].trim() + '
';\n });\n });\n return log;\n },\n unfold: function(log) {\n return log.replace(/([\\s\\S]*?)<\\/div>/g, '$1\\n');\n },\n location: function() {\n return window.location.hash;\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/log");minispade.register('travis/model', "(function() {(function() {\n\n this.Travis.Model = DS.Model.extend({\n primaryKey: 'id',\n id: DS.attr('number'),\n init: function() {\n this.loadedAttributes = [];\n return this._super.apply(this, arguments);\n },\n get: function(name) {\n if (this.constructor.isAttribute(name) && this.get('incomplete') && !this.isAttributeLoaded(name)) {\n this.loadTheRest();\n }\n return this._super.apply(this, arguments);\n },\n refresh: function() {\n var id, store;\n if (id = this.get('id')) {\n store = this.get('store');\n return store.adapter.find(store, this.constructor, id);\n }\n },\n update: function(attrs) {\n var _this = this;\n $.each(attrs, function(key, value) {\n if (key !== 'id') {\n return _this.set(key, value);\n }\n });\n return this;\n },\n isAttributeLoaded: function(name) {\n return this.loadedAttributes.contains(name);\n },\n isComplete: (function() {\n if (this.get('incomplete')) {\n this.loadTheRest();\n return false;\n } else {\n this.set('isCompleting', false);\n return this.get('isLoaded');\n }\n }).property('incomplete', 'isLoaded'),\n loadTheRest: function() {\n if (this.get('isCompleting')) {\n return;\n }\n this.set('isCompleting', true);\n return this.refresh();\n },\n select: function() {\n return this.constructor.select(this.get('id'));\n }\n });\n\n this.Travis.Model.reopenClass({\n find: function() {\n if (arguments.length === 0) {\n return Travis.app.store.findAll(this);\n } else {\n return this._super.apply(this, arguments);\n }\n },\n filter: function(callback) {\n return Travis.app.store.filter(this, callback);\n },\n load: function(attrs) {\n return Travis.app.store.load(this, attrs);\n },\n select: function(id) {\n return this.find().forEach(function(record) {\n return record.set('selected', record.get('id') === id);\n });\n },\n buildURL: function(suffix) {\n var base, url;\n base = this.url || this.pluralName();\n Ember.assert('Base URL (' + base + ') must not start with slash', !base || base.toString().charAt(0) !== '/');\n Ember.assert('URL suffix (' + suffix + ') must not start with slash', !suffix || suffix.toString().charAt(0) !== '/');\n url = [base];\n if (suffix !== void 0) {\n url.push(suffix);\n }\n return url.join('/');\n },\n singularName: function() {\n var name, parts;\n parts = this.toString().split('.');\n name = parts[parts.length - 1];\n return name.replace(/([A-Z])/g, '_$1').toLowerCase().slice(1);\n },\n pluralName: function() {\n return Travis.app.store.adapter.pluralize(this.singularName());\n },\n isAttribute: function(name) {\n if (!this.attributesSaved) {\n this._saveAttributes();\n }\n return this.cachedAttributes.contains(name);\n },\n _saveAttributes: function() {\n var cachedAttributes;\n this.attributesSaved = true;\n cachedAttributes = [];\n this.eachComputedProperty(function(name, meta) {\n if (meta.isAttribute) {\n return cachedAttributes.pushObject(name);\n }\n });\n return this.cachedAttributes = cachedAttributes;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/model");minispade.register('travis/ticker', "(function() {(function() {\n\n this.Travis.Ticker = Ember.Object.extend({\n init: function() {\n if (this.get('interval') !== -1) {\n return this.schedule();\n }\n },\n tick: function() {\n var context, target, targets, _i, _len;\n context = this.get('context');\n targets = this.get('targets') || [this.get('target')];\n for (_i = 0, _len = targets.length; _i < _len; _i++) {\n target = targets[_i];\n if (context) {\n target = context.get(target);\n }\n if (target) {\n target.tick();\n }\n }\n return this.schedule();\n },\n schedule: function() {\n var _this = this;\n return Ember.run.later((function() {\n return _this.tick();\n }), this.get('interval') || Travis.app.TICK_INTERVAL);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ticker");minispade.register('travis', "(function() {(function() {\nminispade.require('ext/jquery');\nminispade.require('ext/ember/namespace');\n\n this.Travis = Em.Namespace.create({\n config: {\n api_endpoint: $('meta[rel=\"travis.api_endpoint\"]').attr('href'),\n pusher_key: $('meta[name=\"travis.pusher_key\"]').attr('value')\n },\n CONFIG_KEYS: ['rvm', 'gemfile', 'env', 'jdk', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala'],\n ROUTES: {\n 'profile/:login/me': ['profile', 'user'],\n 'profile/:login': ['profile', 'hooks'],\n 'profile': ['profile', 'hooks'],\n 'stats': ['stats', 'show'],\n ':owner/:name/jobs/:id/:line': ['home', 'job'],\n ':owner/:name/jobs/:id': ['home', 'job'],\n ':owner/:name/builds/:id': ['home', 'build'],\n ':owner/:name/builds': ['home', 'builds'],\n ':owner/:name/pull_requests': ['home', 'pullRequests'],\n ':owner/:name/branches': ['home', 'branches'],\n ':owner/:name': ['home', 'current'],\n '': ['home', 'index'],\n '#': ['home', 'index']\n },\n QUEUES: [\n {\n name: 'common',\n display: 'Common'\n }, {\n name: 'php',\n display: 'PHP, Perl and Python'\n }, {\n name: 'node_js',\n display: 'Node.js'\n }, {\n name: 'jvmotp',\n display: 'JVM and Erlang'\n }, {\n name: 'rails',\n display: 'Rails'\n }, {\n name: 'spree',\n display: 'Spree'\n }\n ],\n INTERVALS: {\n sponsors: -1,\n times: -1,\n updateTimes: 1000\n },\n setLocale: function(locale) {\n if (!locale) {\n return;\n }\n I18n.locale = locale;\n return localStorage.setItem('travis.config.locale', locale);\n },\n run: function(attrs) {\n if (location.hash.slice(0, 2) === '#!') {\n location.href = location.href.replace('#!/', '');\n }\n this.setLocale(localStorage.getItem('travis.config.locale'));\n return Ember.run.next(this, function() {\n var app,\n _this = this;\n app = Travis.App.create(attrs || {});\n $.each(Travis, function(key, value) {\n if (value && value.isClass && key !== 'constructor') {\n return app[key] = value;\n }\n });\n this.app = app;\n this.store = app.store;\n return $(function() {\n return app.initialize();\n });\n });\n }\n });\nminispade.require('travis/ajax');\nminispade.require('app');\n\n}).call(this);\n\n})();\n//@ sourceURL=travis");minispade.register('templates', "(function() {\nEmber.TEMPLATES['application'] = Ember.Handlebars.compile(\"{{outlet}}\\n\");\n\nEmber.TEMPLATES['auth/signin'] = Ember.Handlebars.compile(\"{{#if view.signingIn}}\\n
Signing in ... \\n
\\n Trying to authenticate with GitHub.\\n
\\n{{else}}\\n
Sign in \\n
\\n Please sign in with GitHub. \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/list'] = Ember.Handlebars.compile(\"{{#if builds.isLoaded}}\\n
\\n \\n \\n {{t builds.name}} \\n {{t builds.commit}} \\n {{t builds.message}} \\n {{t builds.duration}} \\n {{t builds.finished_at}} \\n \\n \\n\\n \\n {{#each build in builds}}\\n {{#view Travis.BuildsItemView contextBinding=\\\"build\\\"}}\\n \\n \\n {{#if id}}\\n \\n {{number}}\\n \\n {{/if}}\\n \\n \\n \\n {{formatCommit commit}}\\n \\n \\n \\n {{{formatMessage commit.message short=\\\"true\\\"}}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n
\\n {{view view.ShowMoreButton}}\\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if loading}}\\n
Loading \\n {{else}}\\n
\\n \\n
{{t builds.name}} \\n
\\n \\n {{#if build.id}}\\n {{build.number}} \\n {{/if}}\\n \\n
{{t builds.finished_at}} \\n
{{formatTime build.finishedAt}} \\n
{{t builds.duration}} \\n
{{formatDuration build.duration}} \\n
\\n\\n \\n\\n {{t builds.message}} \\n {{{formatMessage build.commit.message}}} \\n\\n {{#unless isMatrix}}\\n {{t builds.config}} \\n {{formatConfig build.config}} \\n {{/unless}}\\n \\n\\n {{#if build.isMatrix}}\\n {{view Travis.JobsView jobsBinding=\\\"build.requiredJobs\\\" required=\\\"true\\\"}}\\n {{view Travis.JobsView jobsBinding=\\\"build.allowedFailureJobs\\\"}}\\n {{else}}\\n {{view Travis.LogView contextBinding=\\\"build.jobs.firstObject\\\"}}\\n {{/if}}\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['events/list'] = Ember.Handlebars.compile(\"{{#if view.events.isLoaded}}\\n
\\n \\n \\n Time \\n Event \\n Result \\n Message \\n \\n \\n\\n \\n {{#each event in view.events}}\\n {{#view Travis.EventsItemView contextBinding=\\\"event\\\"}}\\n \\n {{formatTime createdAt}}\\n \\n \\n {{event.event_}}\\n \\n \\n {{event.result}}\\n \\n \\n {{event.message}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\\n\");\n\nEmber.TEMPLATES['jobs/list'] = Ember.Handlebars.compile(\"{{#if view.jobs.length}}\\n {{#if view.required}}\\n
\\n \\n {{t jobs.build_matrix}}\\n \\n {{else}}\\n \\n \\n {{t jobs.allowed_failures}}\\n \\n \\n {{/if}}\\n \\n \\n {{#each key in view.build.configKeys}}\\n {{key}} \\n {{/each}}\\n \\n \\n \\n {{#each job in view.jobs}}\\n {{#view Travis.JobsItemView contextBinding=\\\"job\\\"}}\\n \\n \\n {{#if job.id}}\\n {{number}} \\n {{/if}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{#each value in configValues}}\\n {{value}} \\n {{/each}}\\n {{/view}}\\n {{/each}}\\n \\n
\\n\\n {{#unless view.required}}\\n \\n {{/unless}}\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/log'] = Ember.Handlebars.compile(\"{{view.logSubscriber}}\\n\\n{{#if log.isLoaded}}\\n \\n \\n Follow logs \\n {{{formatLog log.body repo=\\\"repository\\\" item=\\\"parentView.currentItem\\\"}}} \\n\\n {{#if sponsor.name}}\\n \\n {{/if}}\\n\\n To top \\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if job.isComplete}}\\n \\n
\\n \\n
Job \\n
\\n \\n {{#if job.id}}\\n {{job.number}} \\n {{/if}}\\n \\n
{{t jobs.finished_at}} \\n
{{formatTime job.finishedAt}} \\n
{{t jobs.duration}} \\n
{{formatDuration job.duration}} \\n
\\n\\n \\n\\n {{t jobs.message}} \\n {{formatMessage commit.message}} \\n {{t jobs.config}} \\n {{formatConfig job.config}} \\n \\n\\n {{view Travis.LogView contextBinding=\\\"job\\\"}}}\\n
\\n {{else}}\\n \\n Loading \\n
\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['layouts/flash'] = Ember.Handlebars.compile(\"{{#each flash in controller}}\\n {{#view Travis.FlashItemView flashBinding=\\\"flash\\\"}}\\n {{view.message}}
\\n \\n {{/view}}\\n{{/each}}\\n\");\n\nEmber.TEMPLATES['layouts/home'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n {{outlet right}}\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/profile'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n
\\n\\n
\\n\\n
\\n
Getting started? \\n
\\n Please read our guide .\\n It will only take a few minutes :)\\n
\\n
\\n You can find detailled docs on our about site.\\n
\\n
\\n If you need help please don't hesitate to join\\n #travis on irc.freenode.net\\n or our mailinglist .\\n
\\n
\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/sidebar'] = Ember.Handlebars.compile(\"\\n\\n\\n\\n{{view view.DecksView}}\\n{{view view.WorkersView}}\\n{{view view.QueuesView}}\\n{{view view.LinksView}}\\n\\n\\n
{{t layouts.about.join}} \\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/simple'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n
\\n\\n\");\n\nEmber.TEMPLATES['layouts/top'] = Ember.Handlebars.compile(\"\\n Travis \\n \\n\\n\\n\");\n\nEmber.TEMPLATES['profile/accounts'] = Ember.Handlebars.compile(\"\\n
\\n\\n\\n\\n\\n {{#collection Travis.AccountsListView contentBinding=\\\"controller\\\"}}\\n
{{view.name}} \\n
\\n Repositories: \\n {{view.account.reposCount}} \\n
\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['profile/show'] = Ember.Handlebars.compile(\"{{view.name}} \\n\\n{{view Travis.ProfileTabsView}}\\n\\n\\n {{outlet pane}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n {{#if view.displayUser}}\\n \\n \\n \\n {{/if}}\\n \\n\");\n\nEmber.TEMPLATES['profile/tabs/hooks'] = Ember.Handlebars.compile(\"\\n {{{t profiles.show.message.your_repos}}}\\n
\\n\\n{{#if hooks.isLoaded}}\\n {{#if user.isSyncing}}\\n \\n Please wait while we sync from GitHub \\n
\\n {{else}}\\n \\n Last synchronized from GitHub: {{formatTime user.syncedAt}}\\n \\n Sync now\\n \\n
\\n\\n \\n {{#each hook in hooks}}\\n \\n {{hook.slug}} \\n {{hook.description}}
\\n\\n \\n \\n {{else}}\\n \\n You do not seem to have any repositories that we could sync.\\n \\n {{/each}}\\n \\n {{/if}}\\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs/user'] = Ember.Handlebars.compile(\" \\n\\n\\n \\n {{t profiles.show.github}}:\\n \\n \\n {{user.login}} \\n \\n \\n {{t profiles.show.email}}:\\n \\n \\n {{user.email}}\\n \\n \\n {{t profiles.show.token}}:\\n \\n \\n {{user.token}}\\n \\n \\n\\n\\n\\n\\n\");\n\nEmber.TEMPLATES['queues/list'] = Ember.Handlebars.compile(\"\\n{{#each queue in controller}}\\n \\n {{t queue}}: {{queue.name}} \\n \\n \\n{{/each}}\\n \\n\");\n\nEmber.TEMPLATES['repos/list'] = Ember.Handlebars.compile(\"\\n {{view Ember.TextField valueBinding=\\\"controller.search\\\"}}\\n
\\n\\n{{view Travis.ReposListTabsView}}\\n\\n \\n\\n\\n {{#collection Travis.ReposListView contentBinding=\\\"controller\\\"}}\\n {{#with view.repo}}\\n
\\n
\\n {{#if slug}}\\n
{{slug}} \\n {{/if}}\\n
\\n {{#if lastBuildId}}\\n
{{lastBuildNumber}} \\n {{/if}}\\n\\n
\\n {{t repositories.duration}}: \\n {{formatDuration lastBuildDuration}} ,\\n {{t repositories.finished_at}}: \\n {{formatTime lastBuildFinishedAt}} \\n
\\n\\n
\\n\\n {{#if description}}\\n
\\n {{/if}}\\n {{/with}}\\n {{else}}\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['repos/list/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\\n\");\n\nEmber.TEMPLATES['repos/show'] = Ember.Handlebars.compile(\"\\n {{#if view.isEmpty}}\\n {{view Travis.ReposEmptyView}}\\n {{else}}\\n {{#if view.repo.isComplete}}\\n {{#with view.repo}}\\n
\\n\\n
{{description}}
\\n\\n
\\n\\n {{view Travis.RepoShowTabsView}}\\n {{view Travis.RepoShowToolsView}}\\n {{/with}}\\n\\n {{else}}\\n
Loading \\n {{/if}}\\n\\n
\\n {{outlet pane}}\\n
\\n {{/if}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['repos/show/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n {{#if view.repo.slug}}\\n \\n Events\\n \\n {{/if}}\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\");\n\nEmber.TEMPLATES['repos/show/tools'] = Ember.Handlebars.compile(\"\\n\\n\\n\");\n\nEmber.TEMPLATES['sponsors/decks'] = Ember.Handlebars.compile(\"{{t layouts.application.sponsers}} \\n\\n\\n\\n\\n \\n {{{t layouts.application.sponsors_link}}}\\n \\n
\\n\");\n\nEmber.TEMPLATES['sponsors/links'] = Ember.Handlebars.compile(\"\\n\\n\");\n\nEmber.TEMPLATES['stats/show'] = Ember.Handlebars.compile(\"Sorry \\nStatistics are disabled for now.
\\n We're looking into a solution. If you want to help, please ping us!
\\n\");\n\nEmber.TEMPLATES['workers/list'] = Ember.Handlebars.compile(\"{{#view Travis.WorkersView}}\\n \\n {{t workers}}\\n \\n \\n \\n {{#each group in controller.groups}}\\n {{#view Travis.WorkersListView}}\\n \\n \\n {{group.firstObject.host}}\\n \\n \\n {{#each worker in group}}\\n {{#view Travis.WorkersItemView workerBinding=\\\"worker\\\"}}\\n \\n
\\n {{#if worker.isWorking}}\\n {{#if worker.job_id}}\\n \\n {{view.display}}\\n \\n {{/if}}\\n {{else}}\\n {{view.display}}\\n {{/if}}\\n \\n {{/view}}\\n {{/each}}\\n \\n \\n {{/view}}\\n {{else}}\\n No workers\\n {{/each}}\\n \\n{{/view}}\\n\");\n\n})();\n//@ sourceURL=templates");minispade.register('config/locales', "(function() {window.I18n = window.I18n || {}\nwindow.I18n.translations = {\"ca\":{\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"pt-BR\":\"português brasileiro\",\"ru\":\"Русский\"}},\"en\":{\"errors\":{\"messages\":{\"not_found\":\"not found\",\"already_confirmed\":\"was already confirmed\",\"not_locked\":\"was not locked\"}},\"devise\":{\"failure\":{\"unauthenticated\":\"You need to sign in or sign up before continuing.\",\"unconfirmed\":\"You have to confirm your account before continuing.\",\"locked\":\"Your account is locked.\",\"invalid\":\"Invalid email or password.\",\"invalid_token\":\"Invalid authentication token.\",\"timeout\":\"Your session expired, please sign in again to continue.\",\"inactive\":\"Your account was not activated yet.\"},\"sessions\":{\"signed_in\":\"Signed in successfully.\",\"signed_out\":\"Signed out successfully.\"},\"passwords\":{\"send_instructions\":\"You will receive an email with instructions about how to reset your password in a few minutes.\",\"updated\":\"Your password was changed successfully. You are now signed in.\"},\"confirmations\":{\"send_instructions\":\"You will receive an email with instructions about how to confirm your account in a few minutes.\",\"confirmed\":\"Your account was successfully confirmed. You are now signed in.\"},\"registrations\":{\"signed_up\":\"You have signed up successfully. If enabled, a confirmation was sent to your e-mail.\",\"updated\":\"You updated your account successfully.\",\"destroyed\":\"Bye! Your account was successfully cancelled. We hope to see you again soon.\"},\"unlocks\":{\"send_instructions\":\"You will receive an email with instructions about how to unlock your account in a few minutes.\",\"unlocked\":\"Your account was successfully unlocked. You are now signed in.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Confirmation instructions\"},\"reset_password_instructions\":{\"subject\":\"Reset password instructions\"},\"unlock_instructions\":{\"subject\":\"Unlock Instructions\"}}},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hour\",\"other\":\"%{count} hours\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} second\",\"other\":\"%{count} seconds\"}}},\"workers\":\"Workers\",\"queue\":\"Queue\",\"no_job\":\"There are no jobs\",\"repositories\":{\"branch\":\"Branch\",\"image_url\":\"Image URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"tabs\":{\"current\":\"Current\",\"build_history\":\"Build History\",\"branches\":\"Branch Summary\",\"pull_requests\":\"Pull Requests\",\"build\":\"Build\",\"job\":\"Job\"}},\"build\":{\"job\":\"Job\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"show_more\":\"Show more\"},\"layouts\":{\"top\":{\"home\":\"Home\",\"blog\":\"Blog\",\"docs\":\"Docs\",\"stats\":\"Stats\",\"github_login\":\"Sign in with Github\",\"profile\":\"Profile\",\"sign_out\":\"Sign Out\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Recent\",\"search\":\"Search\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"See all of our amazing sponsors →\",\"my_repositories\":\"My Repositories\"},\"about\":{\"alpha\":\"This stuff is alpha.\",\"messages\":{\"alpha\":\"Please do not consider this a stable service. We're still far from that! More info here. \"},\"join\":\"Join us and help!\",\"mailing_list\":\"Mailing List\",\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Author\",\"build\":\"Build\",\"build_matrix\":\"Build Matrix\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Compare\",\"config\":\"Config\",\"duration\":\"Duration\",\"finished_at\":\"Finished at\",\"job\":\"Job\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Flick the switches below to turn on the Travis service hook for your projects, then push to GitHub.\",\"config\":\"how to configure custom build options\"},\"messages\":{\"notice\":\"To get started, please read our Getting Started guide .\\n It will only take a couple of minutes. \"},\"token\":\"Token\",\"your_repos\":\"Your Repositories\",\"update\":\"Update\",\"update_locale\":\"Update\",\"your_locale\":\"Your Locale\"}},\"statistics\":{\"index\":{\"count\":\"Count\",\"repo_growth\":\"Repository Growth\",\"total_projects\":\"Total Projects/Repositories\",\"build_count\":\"Build Count\",\"last_month\":\"last month\",\"total_builds\":\"Total Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"es\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"workers\":\"Procesos\",\"queue\":\"Cola\",\"no_job\":\"No hay trabajos\",\"repositories\":{\"branch\":\"Rama\",\"image_url\":\"Imagen URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"tabs\":{\"current\":\"Actual\",\"build_history\":\"Histórico\",\"branches\":\"Ramas\",\"build\":\"Builds\",\"job\":\"Trabajo\"}},\"build\":{\"job\":\"Trabajo\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"sponsored_by\":\"Patrocinado por\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"layouts\":{\"top\":{\"home\":\"Inicio\",\"blog\":\"Blog\",\"docs\":\"Documentación\",\"stats\":\"Estadísticas\",\"github_login\":\"Iniciar sesión con Github\",\"profile\":\"Perfil\",\"sign_out\":\"Desconectar\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Hazme un Fork en Github\",\"recent\":\"Reciente\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Ver todos nuestros patrocinadores →\",\"my_repositories\":\"Mis Repositorios\"},\"about\":{\"alpha\":\"Esto es alpha.\",\"messages\":{\"alpha\":\"Por favor no considereis esto un servicio estable. Estamos estamos aún lejos de ello! Más información aquí. \"},\"join\":\"Únetenos y ayudanos!\",\"mailing_list\":\"Lista de Correos\",\"repository\":\"Repositorio\",\"twitter\":\"Twitter\"}},\"profiles\":{\"show\":{\"email\":\"Correo electrónico\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Activa los interruptores para inicial el Travis service hook para tus proyectos, y haz un Push en GitHub. \\n Para probar varias versiones de ruby, mira\",\"config\":\"como configurar tus propias opciones para el Build\"},\"messages\":{\"notice\":\"Para comenzar, por favor lee nuestra Guía de Inicio .\\n Solo tomará unos pocos minutos. \"},\"token\":\"Token\",\"your_repos\":\"Tus repositorios\",\"update\":\"Actualizar\",\"update_locale\":\"Actualizar\",\"your_locale\":\"Tu Idioma\"}},\"statistics\":{\"index\":{\"count\":\"Número\",\"repo_growth\":\"Crecimiento de Repositorios\",\"total_projects\":\"Total de Proyectos/Repositorios\",\"build_count\":\"Número de Builds\",\"last_month\":\"mes anterior\",\"total_builds\":\"Total de Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"fr\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} heure\",\"other\":\"%{count} heures\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} secondes\"}}},\"workers\":\"Processus\",\"queue\":\"File\",\"no_job\":\"Pas de tâches\",\"repositories\":{\"branch\":\"Branche\",\"image_url\":\"Image\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"tabs\":{\"current\":\"Actuel\",\"build_history\":\"Historique des tâches\",\"branches\":\"Résumé des branches\",\"build\":\"Construction\",\"job\":\"Tâche\"}},\"build\":{\"job\":\"Tâche\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"builds\":{\"name\":\"Version\",\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"layouts\":{\"top\":{\"home\":\"Accueil\",\"blog\":\"Blog\",\"docs\":\"Documentation\",\"stats\":\"Statistiques\",\"github_login\":\"Connection Github\",\"profile\":\"Profil\",\"sign_out\":\"Déconnection\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Faites un Fork sur Github\",\"recent\":\"Récent\",\"search\":\"Chercher\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Voir tous nos extraordinaire sponsors →\",\"my_repositories\":\"Mes dépôts\"},\"about\":{\"alpha\":\"Ceci est en alpha.\",\"messages\":{\"alpha\":\"S'il vous plaît ne considérez pas ce service comme étant stable. Nous sommes loin de ça! Plus d'infos ici. \"},\"join\":\"Joignez-vous à nous et aidez-nous!\",\"mailing_list\":\"Liste de distribution\",\"repository\":\"Dépôt\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Version\",\"build_matrix\":\"Matrice des versions\",\"commit\":\"Commit\",\"committer\":\"Committeur\",\"compare\":\"Comparer\",\"config\":\"Config\",\"duration\":\"Durée\",\"finished_at\":\"Terminé à\",\"job\":\"Tâche\",\"log\":\"Journal\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"message\":{\"your_repos\":\"Utilisez les boutons ci-dessous pour activer Travis sur vos projets puis déployez sur GitHub. \\nPour tester sur plus de versions de ruby, voir\",\"config\":\"comment configurer des options de version personnalisées\"},\"messages\":{\"notice\":\"Pour commencer, veuillez lire notre guide de démarrage .\\n Cela ne vous prendra que quelques minutes. \"},\"token\":\"Jeton\",\"your_repos\":\"Vos dépôts\",\"email\":\"Courriel\",\"update\":\"Modifier\",\"update_locale\":\"Modifier\",\"your_locale\":\"Votre langue\"}},\"statistics\":{\"index\":{\"count\":\"Décompte\",\"repo_growth\":\"Croissance de dépôt\",\"total_projects\":\"Total des projets/dépôts\",\"build_count\":\"Décompte des versions\",\"last_month\":\"mois dernier\",\"total_builds\":\"Total des versions\"}},\"admin\":{\"actions\":{\"create\":\"créer\",\"created\":\"créé\",\"delete\":\"supprimer\",\"deleted\":\"supprimé\",\"update\":\"mise à jour\",\"updated\":\"mis à jour\"},\"credentials\":{\"log_out\":\"Déconnection\"},\"delete\":{\"confirmation\":\"Oui, je suis sure\",\"flash_confirmation\":\"%{name} a été détruit avec succès\"},\"flash\":{\"error\":\"%{name} n'a pas pu être %{action}\",\"noaction\":\"Aucune action n'a été entreprise\",\"successful\":\"%{name} a réussi à %{action}\"},\"history\":{\"name\":\"Historique\",\"no_activity\":\"Aucune activité\",\"page_name\":\"Historique pour %{name}\"},\"list\":{\"add_new\":\"Ajouter un nouveau\",\"delete_action\":\"Supprimer\",\"delete_selected\":\"Supprimer la sélection\",\"edit_action\":\"Modifier\",\"search\":\"Rechercher\",\"select\":\"Sélectionner le %{name} à modifier\",\"select_action\":\"Sélectionner\",\"show_all\":\"Montrer tout\"},\"new\":{\"basic_info\":\"Information de base\",\"cancel\":\"Annuler\",\"chosen\":\"%{name} choisi\",\"chose_all\":\"Choisir tout\",\"clear_all\":\"Déselectionner tout\",\"many_chars\":\"caractères ou moins\",\"one_char\":\"caractère.\",\"optional\":\"Optionnel\",\"required\":\"Requis\",\"save\":\"Sauvegarder\",\"save_and_add_another\":\"Sauvegarder et en ajouter un autre\",\"save_and_edit\":\"Sauvegarder et modifier\",\"select_choice\":\"Faites vos choix et cliquez\"},\"dashboard\":{\"add_new\":\"Ajouter un nouveau\",\"last_used\":\"Dernière utilisation\",\"model_name\":\"Nom du modèle\",\"modify\":\"Modification\",\"name\":\"Tableau de bord\",\"pagename\":\"Administration du site\",\"records\":\"Enregistrements\",\"show\":\"Voir\",\"ago\":\"plus tôt\"}},\"home\":{\"name\":\"accueil\"},\"repository\":{\"duration\":\"Durée\"},\"devise\":{\"confirmations\":{\"confirmed\":\"Votre compte a été crée avec succès. Vous être maintenant connecté.\",\"send_instructions\":\"Vous allez recevoir un courriel avec les instructions de confirmation de votre compte dans quelques minutes.\"},\"failure\":{\"inactive\":\"Votre compte n'a pas encore été activé.\",\"invalid\":\"Adresse courriel ou mot de passe invalide.\",\"invalid_token\":\"Jeton d'authentification invalide.\",\"locked\":\"Votre compte est bloqué.\",\"timeout\":\"Votre session est expirée, veuillez vous reconnecter pour continuer.\",\"unauthenticated\":\"Vous devez vous connecter ou vous enregistrer afin de continuer\",\"unconfirmed\":\"Vous devez confirmer votre compte avant de continuer.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instructions de confirmations\"},\"reset_password_instructions\":{\"subject\":\"Instruction de remise à zéro du mot de passe\"},\"unlock_instructions\":{\"subject\":\"Instruction de débloquage\"}},\"passwords\":{\"send_instructions\":\"Vous recevrez un courriel avec les instructions de remise à zéro du mot de passe dans quelques minutes.\",\"updated\":\"Votre mot de passe a été changé avec succès. Vous êtes maintenant connecté.\"},\"registrations\":{\"destroyed\":\"Au revoir! Votre compte a été annulé avec succès. Nous espérons vous revoir bientôt.\",\"signed_up\":\"Vous êtes enregistré avec succès. Si activé, une confirmation vous a été envoyé par courriel.\",\"updated\":\"Votre compte a été mis a jour avec succès\"},\"sessions\":{\"signed_in\":\"Connecté avec succès\",\"signed_out\":\"Déconnecté avec succès\"},\"unlocks\":{\"send_instructions\":\"Vous recevrez un courriel contenant les instructions pour débloquer votre compte dans quelques minutes.\",\"unlocked\":\"Votre compte a été débloqué avec succès.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"étais déja confirmé\",\"not_found\":\"n'a pas été trouvé\",\"not_locked\":\"n'étais pas bloqué\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"ja\":{\"workers\":\"ワーカー\",\"queue\":\"キュー\",\"no_job\":\"ジョブはありません\",\"repositories\":{\"branch\":\"ブランチ\",\"image_url\":\"画像URL\",\"markdown\":\".md\",\"textile\":\".textile\",\"rdoc\":\".rdoc\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"tabs\":{\"current\":\"最新\",\"build_history\":\"ビルド履歴\",\"branches\":\"ブランチまとめ\",\"build\":\"ビルド\",\"job\":\"ジョブ\"}},\"build\":{\"job\":\"ジョブ\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"ビルドマトリクス\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"builds\":{\"name\":\"ビルド\",\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"失敗許容範囲外\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"layouts\":{\"about\":{\"alpha\":\"まだアルファですよ!\",\"join\":\"参加してみよう!\",\"mailing_list\":\"メールリスト\",\"messages\":{\"alpha\":\"Travis-ciは安定したサービスまで後一歩!詳しくはこちら \"},\"repository\":\"リポジトリ\",\"twitter\":\"ツイッター\"},\"application\":{\"fork_me\":\"Githubでフォークしよう\",\"my_repositories\":\"マイリポジトリ\",\"recent\":\"最近\",\"search\":\"検索\",\"sponsers\":\"スポンサー\",\"sponsors_link\":\"スポンサーをもっと見る →\"},\"top\":{\"blog\":\"ブログ\",\"docs\":\"Travisとは?\",\"github_login\":\"Githubでログイン\",\"home\":\"ホーム\",\"profile\":\"プロフィール\",\"sign_out\":\"ログアウト\",\"stats\":\"統計\",\"admin\":\"管理\"},\"mobile\":{\"author\":\"制作者\",\"build\":\"ビルド\",\"build_matrix\":\"ビルドマトリクス\",\"commit\":\"コミット\",\"committer\":\"コミット者\",\"compare\":\"比較\",\"config\":\"設定\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"job\":\"ジョブ\",\"log\":\"ログ\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"email\":\"メール\",\"message\":{\"config\":\"詳細設定\",\"your_repos\":\"以下のスイッチを設定し、Travis-ciを有効にします。Githubへプッシュしたらビルドは自動的に開始します。複数バーションや細かい設定はこちらへ:\"},\"messages\":{\"notice\":\"まずはTravisのはじめ方 を参照してください。\"},\"token\":\"トークン\",\"your_repos\":\"リポジトリ\",\"update\":\"更新\",\"update_locale\":\"更新\",\"your_locale\":\"言語設定\"}},\"statistics\":{\"index\":{\"build_count\":\"ビルド数\",\"count\":\"数\",\"last_month\":\"先月\",\"repo_growth\":\"リポジトリ\",\"total_builds\":\"合計ビルド数\",\"total_projects\":\"合計リポジトリ\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nb\":{\"admin\":{\"actions\":{\"create\":\"opprett\",\"created\":\"opprettet\",\"delete\":\"slett\",\"deleted\":\"slettet\",\"update\":\"oppdater\",\"updated\":\"oppdatert\"},\"credentials\":{\"log_out\":\"Logg ut\"},\"dashboard\":{\"add_new\":\"Legg til ny\",\"ago\":\"siden\",\"last_used\":\"Sist brukt\",\"model_name\":\"Modell\",\"modify\":\"Rediger\",\"name\":\"Dashbord\",\"pagename\":\"Nettstedsadministrasjon\",\"records\":\"Oppføringer\",\"show\":\"Vis\"},\"delete\":{\"confirmation\":\"Ja, jeg er sikker\",\"flash_confirmation\":\"%{name} ble slettet\"},\"flash\":{\"error\":\"%{name} kunne ikke bli %{action}\",\"noaction\":\"Ingen handlinger ble utført\",\"successful\":\"%{name} ble %{action}\"},\"history\":{\"name\":\"Logg\",\"no_activity\":\"Ingen aktivitet\",\"page_name\":\"Logg for %{name}\"},\"list\":{\"add_new\":\"Legg til ny\",\"delete_action\":\"Slett\",\"delete_selected\":\"Slett valgte\",\"edit_action\":\"Rediger\",\"search\":\"Søk\",\"select\":\"Velg %{name} for å redigere\",\"select_action\":\"Velg\",\"show_all\":\"Vis alle \"},\"new\":{\"basic_info\":\"Basisinformasjon\",\"cancel\":\"Avbryt\",\"chosen\":\"Valgt %{name}\",\"chose_all\":\"Velg alle\",\"clear_all\":\"Fjern alle\",\"many_chars\":\"eller færre tegn.\",\"one_char\":\"tegn.\",\"optional\":\"Valgfri\",\"required\":\"Påkrevd\",\"save\":\"Lagre\",\"save_and_add_another\":\"Lagre og legg til ny\",\"save_and_edit\":\"Lagre og rediger\",\"select_choice\":\"Kryss av for dine valg og klikk\"}},\"build\":{\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\"},\"builds\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testen ble kjørt på en maskin sponset av\"},\"name\":\"Jobb\",\"started_at\":\"Startet\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} time\",\"other\":\"%{count} timer\"},\"minutes_exact\":{\"one\":\"%{count} minutt\",\"other\":\"%{count} minutter\"},\"seconds_exact\":{\"one\":\"%{count} sekund\",\"other\":\"%{count} sekunder\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Din konto er aktivert og du er nå innlogget.\",\"send_instructions\":\"Om noen få minutter så vil du få en e-post med informasjon om hvordan du bekrefter kontoen din.\"},\"failure\":{\"inactive\":\"Kontoen din har ikke blitt aktivert enda.\",\"invalid\":\"Ugyldig e-post eller passord.\",\"invalid_token\":\"Ugyldig autentiseringskode.\",\"locked\":\"Kontoen din er låst.\",\"timeout\":\"Du ble logget ut siden på grunn av mangel på aktivitet, vennligst logg inn på nytt.\",\"unauthenticated\":\"Du må logge inn eller registrere deg for å fortsette.\",\"unconfirmed\":\"Du må bekrefte kontoen din før du kan fortsette.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bekreftelsesinformasjon\"},\"reset_password_instructions\":{\"subject\":\"Instruksjoner for å få nytt passord\"},\"unlock_instructions\":{\"subject\":\"Opplåsningsinstruksjoner\"}},\"passwords\":{\"send_instructions\":\"Om noen få minutter så vil du få en epost med informasjon om hvordan du kan få et nytt passord.\",\"updated\":\"Passordet ditt ble endret, og du er logget inn.\"},\"registrations\":{\"destroyed\":\"Adjø! Kontoen din ble kansellert. Vi håper vi ser deg igjen snart.\",\"signed_up\":\"Du er nå registrert.\",\"updated\":\"Kontoen din ble oppdatert.\"},\"sessions\":{\"signed_in\":\"Du er nå logget inn.\",\"signed_out\":\"Du er nå logget ut.\"},\"unlocks\":{\"send_instructions\":\"Om noen få minutter så kommer du til å få en e-post med informasjon om hvordan du kan låse opp kontoen din.\",\"unlocked\":\"Kontoen din ble låst opp, og du er nå logget inn igjen.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"har allerede blitt bekreftet\",\"not_found\":\"ikke funnnet\",\"not_locked\":\"var ikke låst\"}},\"home\":{\"name\":\"hjem\"},\"jobs\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testserien ble kjørt på en maskin sponset av\"},\"started_at\":\"Startet\"},\"layouts\":{\"about\":{\"alpha\":\"Dette er alfa-greier.\",\"join\":\"Bli med og hjelp oss!\",\"mailing_list\":\"E-postliste\",\"messages\":{\"alpha\":\"Dette er ikke en stabil tjeneste. Vi har fremdeles et stykke igjen! Mer informasjon finner du her .\"},\"repository\":\"Kodelager\",\"twitter\":\"Twitter.\"},\"application\":{\"fork_me\":\"Se koden på Github\",\"my_repositories\":\"Mine kodelagre\",\"recent\":\"Nylig\",\"search\":\"Søk\",\"sponsers\":\"Sponsorer\",\"sponsors_link\":\"Se alle de flotte sponsorene våre →\"},\"mobile\":{\"author\":\"Forfatter\",\"build\":\"Jobb\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\",\"log\":\"Logg\"},\"top\":{\"admin\":\"Administrator\",\"blog\":\"Blogg\",\"docs\":\"Dokumentasjon\",\"github_login\":\"Logg inn med Github\",\"home\":\"Hjem\",\"profile\":\"Profil\",\"sign_out\":\"Logg ut\",\"stats\":\"Statistikk\"}},\"no_job\":\"Ingen jobber finnnes\",\"profiles\":{\"show\":{\"email\":\"E-post\",\"github\":\"Github\",\"message\":{\"config\":\"hvordan sette opp egne jobbinnstillinger\",\"your_repos\":\"Slå\\u0010 på Travis for prosjektene dine ved å dra i bryterne under, og send koden til Github. \\nFor å teste mot flere ruby-versjoner, se dokumentasjonen for\"},\"messages\":{\"notice\":\"For å komme i gang, vennligst les kom-i-gang-veivisereren vår. Det tar bare et par minutter. \"},\"token\":\"Kode\",\"update\":\"Oppdater\",\"update_locale\":\"Oppdater\",\"your_locale\":\"Ditt språk\",\"your_repos\":\"Dine kodelagre\"}},\"queue\":\"Kø\",\"repositories\":{\"branch\":\"Gren\",\"commit\":\"Innsender\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"image_url\":\"Bilde-URL\",\"markdown\":\"Markdown\",\"message\":\"Beskrivelse\",\"rdoc\":\"RDOC\",\"started_at\":\"Startet\",\"tabs\":{\"branches\":\"Grensammendrag\",\"build\":\"Jobb\",\"build_history\":\"Jobblogg\",\"current\":\"Siste\",\"job\":\"Jobb\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Varighet\"},\"statistics\":{\"index\":{\"build_count\":\"Antall jobber\",\"count\":\"Antall\",\"last_month\":\"siste måned\",\"repo_growth\":\"Vekst i kodelager\",\"total_builds\":\"Totale jobber\",\"total_projects\":\"Antall prosjekter/kodelagre\"}},\"workers\":\"Arbeidere\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nl\":{\"admin\":{\"actions\":{\"create\":\"aanmaken\",\"created\":\"aangemaakt\",\"delete\":\"verwijderen\",\"deleted\":\"verwijderd\",\"update\":\"bijwerken\",\"updated\":\"bijgewerkt\"},\"credentials\":{\"log_out\":\"Afmelden\"},\"dashboard\":{\"add_new\":\"Nieuwe toevoegen\",\"ago\":\"geleden\",\"last_used\":\"Laatst gebruikt\",\"model_name\":\"Model naam\",\"modify\":\"Wijzigen\",\"pagename\":\"Site administratie\",\"show\":\"Laten zien\",\"records\":\"Gegevens\"},\"delete\":{\"confirmation\":\"Ja, ik ben zeker\",\"flash_confirmation\":\"%{name} is vernietigd\"},\"flash\":{\"error\":\"%{name} kon niet worden %{action}\",\"noaction\":\"Er zijn geen acties genomen\",\"successful\":\"%{name} is %{action}\"},\"history\":{\"name\":\"Geschiedenis\",\"no_activity\":\"Geen activiteit\",\"page_name\":\"Geschiedenis van %{name}\"},\"list\":{\"add_new\":\"Nieuwe toevoegen\",\"delete_action\":\"Verwijderen\",\"delete_selected\":\"Verwijder geselecteerden\",\"edit_action\":\"Bewerken\",\"search\":\"Zoeken\",\"select\":\"Selecteer %{name} om te bewerken\",\"select_action\":\"Selecteer\",\"show_all\":\"Laat allen zien\"},\"new\":{\"basic_info\":\"Basisinfo\",\"cancel\":\"Annuleren\",\"chosen\":\"%{name} gekozen\",\"chose_all\":\"Kies allen\",\"clear_all\":\"Deselecteer allen\",\"many_chars\":\"tekens of minder.\",\"one_char\":\"teken.\",\"optional\":\"Optioneel\",\"required\":\"Vereist\",\"save\":\"Opslaan\",\"save_and_add_another\":\"Opslaan en een nieuwe toevoegen\",\"save_and_edit\":\"Opslaan en bewerken\",\"select_choice\":\"Selecteer uw keuzes en klik\"}},\"build\":{\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"job\":\"Taak\"},\"builds\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw Matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze tests zijn gedraaid op een machine gesponsord door\"},\"name\":\"Bouw\",\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} uur\",\"other\":\"%{count} uren\"},\"minutes_exact\":{\"one\":\"%{count} minuut\",\"other\":\"%{count} minuten\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} seconden\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Uw account is bevestigd. U wordt nu ingelogd.\",\"send_instructions\":\"Binnen enkele minuten zal u een email ontvangen met instructies om uw account te bevestigen.\"},\"failure\":{\"inactive\":\"Uw account is nog niet geactiveerd.\",\"invalid\":\"Ongeldig email adres of wachtwoord.\",\"invalid_token\":\"Ongeldig authenticatie token.\",\"locked\":\"Uw account is vergrendeld.\",\"timeout\":\"Uw sessie is verlopen, gelieve opnieuw in te loggen om verder te gaan.\",\"unauthenticated\":\"U moet inloggen of u registeren voordat u verder gaat.\",\"unconfirmed\":\"U moet uw account bevestigen voordat u verder gaat.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bevestigings-instructies\"},\"reset_password_instructions\":{\"subject\":\"Wachtwoord herstel instructies\"},\"unlock_instructions\":{\"subject\":\"Ontgrendel-instructies\"}},\"passwords\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw wachtwoord opnieuw in te stellen.\",\"updated\":\"Uw wachtwoord is veranderd. U wordt nu ingelogd.\"},\"registrations\":{\"destroyed\":\"Dag! Uw account is geannuleerd. We hopen u vlug terug te zien.\",\"signed_up\":\"Uw registratie is voltooid. Als het ingeschakeld is wordt een bevestiging naar uw email adres verzonden.\",\"updated\":\"Het bijwerken van uw account is gelukt.\"},\"sessions\":{\"signed_in\":\"Inloggen gelukt.\",\"signed_out\":\"Uitloggen gelukt.\"},\"unlocks\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw account te ontgrendelen.\",\"unlocked\":\"Uw account is ontgrendeld. U wordt nu ingelogd.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"was al bevestigd\",\"not_found\":\"niet gevonden\",\"not_locked\":\"was niet vergrendeld\"}},\"jobs\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze testen zijn uitgevoerd op een machine gesponsord door\"},\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"layouts\":{\"about\":{\"alpha\":\"Dit is in alfa-stadium.\",\"join\":\"Doe met ons mee en help!\",\"mailing_list\":\"Mailing lijst\",\"messages\":{\"alpha\":\"Gelieve deze service niet te beschouwen als stabiel. Daar zijn we nog lang niet! Meer info hier. \"},\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Maak een fork op Github\",\"my_repositories\":\"Mijn repositories\",\"recent\":\"Recent\",\"search\":\"Zoeken\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Bekijk al onze geweldige sponsors →\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Bouw\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid op\",\"job\":\"Taak\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"log\":\"Logboek\"},\"top\":{\"admin\":\"Administratie\",\"blog\":\"Blog\",\"docs\":\"Documentatie\",\"github_login\":\"Inloggen met Github\",\"home\":\"Home\",\"profile\":\"Profiel\",\"sign_out\":\"Uitloggen\",\"stats\":\"Statistieken\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Er zijn geen taken\",\"profiles\":{\"show\":{\"email\":\"Email adres\",\"github\":\"Github\",\"message\":{\"config\":\"hoe eigen bouw-opties in te stellen\",\"your_repos\":\"Zet de schakelaars hieronder aan om de Travis hook voor uw projecten te activeren en push daarna naar Github \\nOm te testen tegen meerdere rubies, zie\"},\"messages\":{\"notice\":\"Om te beginnen kunt u onze startersgids lezen.\\\\n Het zal maar enkele minuten van uw tijd vergen. \"},\"update\":\"Bijwerken\",\"update_locale\":\"Bijwerken\",\"your_locale\":\"Uw taal\",\"your_repos\":\"Uw repositories\",\"token\":\"Token\"}},\"queue\":\"Wachtrij\",\"repositories\":{\"branch\":\"Tak\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"image_url\":\"Afbeeldings URL\",\"message\":\"Bericht\",\"started_at\":\"Gestart\",\"tabs\":{\"branches\":\"Tak samenvatting\",\"build\":\"Bouw\",\"build_history\":\"Bouw geschiedenis\",\"current\":\"Huidig\",\"job\":\"Taak\"},\"commit\":\"Commit\",\"markdown\":\"Markdown\",\"rdoc\":\"RDOC\",\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duur\"},\"statistics\":{\"index\":{\"build_count\":\"Bouw aantal\",\"count\":\"Aantal\",\"last_month\":\"voorbije maand\",\"repo_growth\":\"Repository groei\",\"total_builds\":\"Bouw totaal\",\"total_projects\":\"Projecten/Repository totaal\"}},\"workers\":\"Machines\",\"home\":{\"name\":\"Hoofdpagina\"}},\"pl\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} godzina\",\"other\":\"%{count} godziny\"},\"minutes_exact\":{\"one\":\"%{count} minuta\",\"other\":\"%{count} minuty\"},\"seconds_exact\":{\"one\":\"%{count} sekunda\",\"other\":\"%{count} sekundy\"}}},\"workers\":\"Workers\",\"queue\":\"Kolejka\",\"no_job\":\"Brak zadań\",\"repositories\":{\"branch\":\"Gałąź\",\"image_url\":\"URL obrazka\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"tabs\":{\"current\":\"Aktualny\",\"build_history\":\"Historia Buildów\",\"branches\":\"Wszystkie Gałęzie\",\"build\":\"Build\",\"job\":\"Zadanie\"}},\"build\":{\"job\":\"Zadanie\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Committer\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Komitujący\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"layouts\":{\"top\":{\"home\":\"Start\",\"blog\":\"Blog\",\"docs\":\"Dokumentacja\",\"stats\":\"Statystki\",\"github_login\":\"Zaloguj się przy pomocy Githuba\",\"profile\":\"Profil\",\"sign_out\":\"Wyloguj się\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Ostatnie\",\"search\":\"Wyniki\",\"sponsers\":\"Sponsorzy\",\"sponsors_link\":\"Zobacz naszych wszystkich wspaniałych sponsorów →\",\"my_repositories\":\"Moje repozytoria\"},\"about\":{\"alpha\":\"To wciąż jest wersja alpha.\",\"messages\":{\"alpha\":\"Proszę nie traktuj tego jako stabilnej usługi. Wciąż nam wiele do tego brakuje! Więcej informacji znajdziesz tutaj. \"},\"join\":\"Pomóż i dołącz do nas!\",\"mailing_list\":\"Lista mailingowa\",\"repository\":\"Repozytorium\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Macierz Buildów\",\"commit\":\"Commit\",\"committer\":\"Komitujący\",\"compare\":\"Porównianie\",\"config\":\"Konfiguracja\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"job\":\"Zadanie\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Przesuń suwak poniżej, aby włączyć Travisa, dla twoich projektów, a następnie umieść swój kod na GitHubie. \\n Aby testować swój kod przy użyciu wielu wersji Rubiego, zobacz\",\"config\":\"jak skonfigurować niestandardowe opcje builda\"},\"messages\":{\"notice\":\"Aby zacząć, przeczytaj nasz Przewodnik .\\n Zajmie ci to tylko kilka minut. \"},\"token\":\"Token\",\"your_repos\":\"Twoje repozytoria\"}},\"statistics\":{\"index\":{\"count\":\"Ilość\",\"repo_growth\":\"Przyrost repozytoriów\",\"total_projects\":\"Łącznie projektów/repozytoriów\",\"build_count\":\"Liczba buildów\",\"last_month\":\"ostatni miesiąc\",\"total_builds\":\"Łącznie Buildów\"}},\"date\":{\"abbr_day_names\":[\"nie\",\"pon\",\"wto\",\"śro\",\"czw\",\"pią\",\"sob\"],\"abbr_month_names\":[\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\"],\"day_names\":[\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\"formats\":{\"default\":\"%d-%m-%Y\",\"long\":\"%B %d, %Y\",\"short\":\"%d %b\"},\"month_names\":[\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\"],\"order\":[\"day\",\"month\",\"year\"]},\"errors\":{\"format\":\"%{attribute} %{message}\",\"messages\":{\"accepted\":\"musi zostać zaakceptowane\",\"blank\":\"nie może być puste\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"pt-BR\":{\"admin\":{\"actions\":{\"create\":\"criar\",\"created\":\"criado\",\"delete\":\"deletar\",\"deleted\":\"deletado\",\"update\":\"atualizar\",\"updated\":\"atualizado\"},\"credentials\":{\"log_out\":\"Deslogar\"},\"dashboard\":{\"add_new\":\"Adicionar novo\",\"ago\":\"atrás\",\"last_used\":\"Última utilização\",\"model_name\":\"Nome do modelo\",\"modify\":\"Modificar\",\"name\":\"Dashboard\",\"pagename\":\"Administração do site\",\"records\":\"Registros\",\"show\":\"Mostrar\"},\"delete\":{\"confirmation\":\"Sim, tenho certeza\",\"flash_confirmation\":\"%{name} foi destruído com sucesso\"},\"flash\":{\"error\":\"%{name} falhou ao %{action}\",\"noaction\":\"Nenhuma ação foi tomada\",\"successful\":\"%{name} foi %{action} com sucesso\"},\"history\":{\"name\":\"Histórico\",\"no_activity\":\"Nenhuma Atividade\",\"page_name\":\"Histórico para %{name}\"},\"list\":{\"add_new\":\"Adicionar novo\",\"delete_action\":\"Deletar\",\"delete_selected\":\"Deletar selecionados\",\"edit_action\":\"Editar\",\"search\":\"Buscar\",\"select\":\"Selecionar %{name} para editar\",\"select_action\":\"Selecionar\",\"show_all\":\"Mostrar todos\"},\"new\":{\"basic_info\":\"Informações básicas\",\"cancel\":\"Cancelar\",\"chosen\":\"Escolhido %{name}\",\"chose_all\":\"Escolher todos\",\"clear_all\":\"Limpar todos\",\"many_chars\":\"caracteres ou menos.\",\"one_char\":\"caractere.\",\"optional\":\"Opcional\",\"required\":\"Requerido\",\"save\":\"Salvar\",\"save_and_add_another\":\"Salvar e adicionar outro\",\"save_and_edit\":\"Salvar e alterar\",\"select_choice\":\"Selecione e clique\"}},\"build\":{\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\"},\"builds\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"name\":\"Build\",\"started_at\":\"Iniciou em\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Sua conta foi confirmada com sucesso. Você agora está logado.\",\"send_instructions\":\"Você receberá um email com instruções de como confirmar sua conta em alguns minutos.\"},\"failure\":{\"inactive\":\"Sua conta ainda não foi ativada.\",\"invalid\":\"Email ou senha inválidos.\",\"invalid_token\":\"Token de autenticação inválido.\",\"locked\":\"Sua conta está trancada.\",\"timeout\":\"Sua sessão expirou, por favor faça seu login novamente.\",\"unauthenticated\":\"Você precisa fazer o login ou cadastrar-se antes de continuar.\",\"unconfirmed\":\"Você precisa confirmar sua conta antes de continuar.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instruções de confirmação\"},\"reset_password_instructions\":{\"subject\":\"Instruções de atualização de senha\"},\"unlock_instructions\":{\"subject\":\"Instruções de destrancamento\"}},\"passwords\":{\"send_instructions\":\"Você receberá um email com instruções de como atualizar sua senha em alguns minutos.\",\"updated\":\"Sua senha foi alterada com sucesso. Você agora está logado.\"},\"registrations\":{\"destroyed\":\"Tchau! Sua conta foi cancelada com sucesso. Esperamos vê-lo novamente em breve!\",\"signed_up\":\"Você se cadastrou com sucesso. Se ativada, uma confirmação foi enviada para seu email.\",\"updated\":\"Você atualizou sua conta com sucesso.\"},\"sessions\":{\"signed_in\":\"Logado com sucesso.\",\"signed_out\":\"Deslogado com sucesso.\"},\"unlocks\":{\"send_instructions\":\"Você receberá um email com instruções de como destrancar sua conta em alguns minutos.\",\"unlocked\":\"Sua conta foi destrancada com sucesso. Você agora está logado.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"já foi confirmado\",\"not_found\":\"não encontrado\",\"not_locked\":\"não estava trancado\"}},\"home\":{\"name\":\"home\"},\"jobs\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"started_at\":\"Iniciou em\"},\"layouts\":{\"about\":{\"alpha\":\"Isto é um alpha.\",\"join\":\"Junte-se à nós e ajude!\",\"mailing_list\":\"Lista de email\",\"messages\":{\"alpha\":\"Por favor, não considere isto um serviço estável. Estamos muito longe disso! Mais informações aqui. \"},\"repository\":\"Repositório\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Faça fork no Github\",\"my_repositories\":\"Meus Repositórios\",\"recent\":\"Recentes\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Conheça todos os nossos patrocinadores →\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\",\"log\":\"Log\"},\"top\":{\"admin\":\"Admin\",\"blog\":\"Blog\",\"docs\":\"Documentação\",\"github_login\":\"Logue com o Github\",\"home\":\"Home\",\"profile\":\"Perfil\",\"sign_out\":\"Sair\",\"stats\":\"Estatísticas\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Não há trabalhos\",\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"config\":\"como configurar opções de build\",\"your_repos\":\"Use os botões abaixo para ligar ou desligar o hook de serviço do Travis para seus projetos, e então, faça um push para o Github. Para testar com múltiplas versões do Ruby, leia\"},\"messages\":{\"notice\":\"Para começar, leia nosso Guia de início . Só leva alguns minutinhos. \"},\"token\":\"Token\",\"update\":\"Atualizar\",\"update_locale\":\"Atualizar\",\"your_locale\":\"Sua língua\",\"your_repos\":\"Seus Repositórios\"}},\"queue\":\"Fila\",\"repositories\":{\"branch\":\"Branch\",\"commit\":\"Commit\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"image_url\":\"URL da imagem\",\"markdown\":\"Markdown\",\"message\":\"Mensagem\",\"rdoc\":\"RDOC\",\"started_at\":\"Iniciou em\",\"tabs\":{\"branches\":\"Sumário do Branch\",\"build\":\"Build\",\"build_history\":\"Histórico de Build\",\"current\":\"Atual\",\"job\":\"Trabalho\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duração\"},\"statistics\":{\"index\":{\"build_count\":\"Número de Builds\",\"count\":\"Número\",\"last_month\":\"último mês\",\"repo_growth\":\"Crescimento de Repositório\",\"total_builds\":\"Total de Builds\",\"total_projects\":\"Total de Projetos/Repositórios\"}},\"workers\":\"Processos\"},\"ru\":{\"admin\":{\"actions\":{\"create\":\"создать\",\"created\":\"создано\",\"delete\":\"удалить\",\"deleted\":\"удалено\",\"update\":\"обновить\",\"updated\":\"обновлено\"},\"credentials\":{\"log_out\":\"Выход\"},\"dashboard\":{\"add_new\":\"Добавить\",\"ago\":\"назад\",\"last_used\":\"Использовалось в последний раз\",\"model_name\":\"Имя модели\",\"modify\":\"Изменить\",\"name\":\"Панель управления\",\"pagename\":\"Управление сайтом\",\"records\":\"Записи\",\"show\":\"Показать\"},\"delete\":{\"confirmation\":\"Да, я уверен\",\"flash_confirmation\":\"%{name} успешно удалено\"},\"history\":{\"name\":\"История\",\"no_activity\":\"Нет активности\",\"page_name\":\"История %{name}\"},\"list\":{\"add_new\":\"Добавить\",\"delete_action\":\"Удалить\",\"delete_selected\":\"Удалить выбранные\",\"edit_action\":\"Редактировать\",\"search\":\"Поиск\",\"select\":\"Для редактирования выберите %{name}\",\"select_action\":\"Выбрать\",\"show_all\":\"Показать все\"},\"new\":{\"basic_info\":\"Основная информация\",\"cancel\":\"Отмена\",\"chosen\":\"Выбрано %{name}\",\"chose_all\":\"Выбрать все\",\"clear_all\":\"Очистить все\",\"one_char\":\"символ.\",\"optional\":\"Необязательно\",\"required\":\"Обязательно\",\"save\":\"Сохранить\",\"save_and_add_another\":\"Сохранить и добавить другое\",\"save_and_edit\":\"Сохранить и продолжить редактирование\",\"select_choice\":\"Выберите и кликните\",\"many_chars\":\"символов или меньше.\"},\"flash\":{\"error\":\"%{name} не удалось %{action}\",\"noaction\":\"Никаких действий не произведено\",\"successful\":\"%{name} было успешно %{action}\"}},\"build\":{\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\"},\"builds\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Дифф\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине, спонсируемой\"},\"name\":\"Билд\",\"started_at\":\"Начало\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} час\",\"few\":\"%{count} часа\",\"many\":\"%{count} часов\",\"other\":\"%{count} часа\"},\"minutes_exact\":{\"one\":\"%{count} минута\",\"few\":\"%{count} минуты\",\"many\":\"%{count} минут\",\"other\":\"%{count} минуты\"},\"seconds_exact\":{\"one\":\"%{count} секунда\",\"few\":\"%{count} секунды\",\"many\":\"%{count} секунд\",\"other\":\"%{count} секунды\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Ваш аккаунт успешно подтвержден. Приветствуем!\",\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для прохождения процедуры подтверждения аккаунта.\"},\"failure\":{\"inactive\":\"Ваш аккаунт еще не активирован.\",\"invalid\":\"Ошибка в адресе почты или пароле.\",\"invalid_token\":\"Неправильный токен аутентификации.\",\"locked\":\"Ваш аккаунт заблокирован.\",\"timeout\":\"Сессия окончена. Для продолжения работы войдите снова.\",\"unauthenticated\":\"Вам нужно войти или зарегистрироваться.\",\"unconfirmed\":\"Вы должны сначала подтвердить свой аккаунт.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Инструкции для подтверждению аккаунта\"},\"reset_password_instructions\":{\"subject\":\"Инструкции для сброса пароля\"},\"unlock_instructions\":{\"subject\":\"Инструкции для разблокирования аккаунта\"}},\"passwords\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для сброса пароля.\",\"updated\":\"Ваш пароль успешно изменен. Приветствуем!\"},\"registrations\":{\"destroyed\":\"Ваш аккаунт был успешно удален. Живите долго и процветайте!\",\"signed_up\":\"Вы успешно прошли регистрацию. Инструкции для подтверждения аккаунта отправлены на ваш электронный адрес.\",\"updated\":\"Аккаунт успешно обновлен.\"},\"sessions\":{\"signed_in\":\"Приветствуем!\",\"signed_out\":\"Удачи!\"},\"unlocks\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциям для разблокировния аккаунта.\",\"unlocked\":\"Ваш аккаунт успешно разблокирован. Приветствуем!\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"уже подтвержден\",\"not_found\":\"не найден\",\"not_locked\":\"не заблокирован\"}},\"home\":{\"name\":\"Главная\"},\"jobs\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине спонсируемой\"},\"started_at\":\"Начало\"},\"layouts\":{\"about\":{\"alpha\":\"Это альфа-версия\",\"join\":\"Присоединяйтесь к нам и помогайте!\",\"mailing_list\":\"Лист рассылки\",\"messages\":{\"alpha\":\"Пожалуйста, не считайте данный сервис стабильным. Мы еще очень далеки от стабильности! Подробности \"},\"repository\":\"Репозиторий\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"my_repositories\":\"Мои репозитории\",\"recent\":\"Недавние\",\"search\":\"Поиск\",\"sponsers\":\"Спонсоры\",\"sponsors_link\":\"Список всех наших замечательных спонсоров →\"},\"mobile\":{\"author\":\"Автор\",\"build\":\"Сборка\",\"build_matrix\":\"Матрица сборок\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\",\"log\":\"Журнал\"},\"top\":{\"admin\":\"Управление\",\"blog\":\"Блог\",\"docs\":\"Документация\",\"github_login\":\"Войти через Github\",\"home\":\"Главная\",\"profile\":\"Профиль\",\"sign_out\":\"Выход\",\"stats\":\"Статистика\"}},\"no_job\":\"Очередь пуста\",\"profiles\":{\"show\":{\"email\":\"Электронная почта\",\"github\":\"Github\",\"message\":{\"config\":\"как настроить специальные опции билда\",\"your_repos\":\"Используйте переключатели, чтобы включить Travis service hook для вашего проекта, а потом отправьте код на GitHub. \\nДля тестирования на нескольких версиях Ruby смотрите\"},\"messages\":{\"notice\":\"Перед началом, пожалуйста, прочтите Руководство для быстрого старта . Это займет всего несколько минут. \"},\"token\":\"Токен\",\"update\":\"Обновить\",\"update_locale\":\"Обновить\",\"your_locale\":\"Ваш язык\",\"your_repos\":\"Ваши репозитории\"}},\"queue\":\"Очередь\",\"repositories\":{\"branch\":\"Ветка\",\"commit\":\"Коммит\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"image_url\":\"URL изображения\",\"markdown\":\"Markdown\",\"message\":\"Комментарий\",\"rdoc\":\"RDOC\",\"started_at\":\"Начало\",\"tabs\":{\"branches\":\"Статус веток\",\"build\":\"Билд\",\"build_history\":\"История\",\"current\":\"Текущий\",\"job\":\"Задача\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Длительность\"},\"statistics\":{\"index\":{\"build_count\":\"Количество билдов\",\"count\":\"Количество\",\"last_month\":\"прошлый месяц\",\"repo_growth\":\"Рост числа репозиториев\",\"total_builds\":\"Всего билдов\",\"total_projects\":\"Всего проектов/репозиториев\"}},\"workers\":\"Машины\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}}};\n\n\n})();\n//@ sourceURL=config/locales");minispade.register('ext/ember/bound_helper', "(function() {// https://gist.github.com/2018185\n// For reference: https://github.com/wagenet/ember.js/blob/ac66dcb8a1cbe91d736074441f853e0da474ee6e/packages/ember-handlebars/lib/views/bound_property_view.js\nvar BoundHelperView = Ember.View.extend(Ember._Metamorph, {\n\n context: null,\n options: null,\n property: null,\n // paths of the property that are also observed\n propertyPaths: [],\n\n value: Ember.K,\n\n valueForRender: function() {\n var value = this.value(Ember.get(this.context, this.property), this.options);\n if (this.options.escaped) { value = Handlebars.Utils.escapeExpression(value); }\n return value;\n },\n\n render: function(buffer) {\n buffer.push(this.valueForRender());\n },\n\n valueDidChange: function() {\n if (this.morph.isRemoved()) { return; }\n this.morph.html(this.valueForRender());\n },\n\n didInsertElement: function() {\n this.valueDidChange();\n },\n\n init: function() {\n this._super();\n Ember.addObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n Ember.addObserver(this.context, this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n },\n\n destroy: function() {\n Ember.removeObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n this.context.removeObserver(this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n this._super();\n }\n\n});\n\nEmber.registerBoundHelper = function(name, func) {\n var propertyPaths = Array.prototype.slice.call(arguments, 2);\n Ember.Handlebars.registerHelper(name, function(property, options) {\n var data = options.data,\n view = data.view,\n ctx = this;\n\n var bindView = view.createChildView(BoundHelperView, {\n property: property,\n propertyPaths: propertyPaths,\n context: ctx,\n options: options.hash,\n value: func\n });\n\n view.appendChild(bindView);\n });\n};\n\n\n})();\n//@ sourceURL=ext/ember/bound_helper");minispade.register('ext/ember/namespace', "(function() {Em.Namespace.reopen = Em.Namespace.reopenClass\n\n\n\n})();\n//@ sourceURL=ext/ember/namespace");
\ No newline at end of file
diff --git a/public/styles/app.css b/public/styles/app.css
index 90aa92dd..261a6cb2 100644
--- a/public/styles/app.css
+++ b/public/styles/app.css
@@ -1,547 +1,547 @@
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/app.sass */
html, body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
@@ -552,206 +552,206 @@ html, body {
color: #666666;
}
-/* line 12, /Users/konstantin/Workspace/travis-web/assets/styles/app.sass */
+/* line 12, /Users/drogus/code/travis/travis-ember/assets/styles/app.sass */
a {
color: #666666;
text-decoration: none;
}
-/* line 16, /Users/konstantin/Workspace/travis-web/assets/styles/app.sass */
+/* line 16, /Users/drogus/code/travis/travis-ember/assets/styles/app.sass */
ul {
padding: 0;
margin: 0;
list-style-type: none;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/app.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/app.sass */
li {
padding: 0;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/auth.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/app/auth.sass */
#auth-frame {
top: 50%;
left: 50%;
@@ -772,189 +772,189 @@ li {
-o-border-radius: 10px;
border-radius: 10px;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/button.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/app/button.sass */
.button {
position: relative;
overflow: visible;
@@ -983,7 +983,7 @@ li {
white-space: nowrap;
}
-/* line 22, /Users/konstantin/Workspace/travis-web/assets/styles/app/button.sass */
+/* line 22, /Users/drogus/code/travis/travis-ember/assets/styles/app/button.sass */
.button:hover,
.button:focus,
.button:active,
@@ -1000,7 +1000,7 @@ li {
color: white;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/app/button.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/app/button.sass */
.button:active,
.button.active {
border-color: #2a65a0;
@@ -1012,194 +1012,194 @@ li {
background: -o-linear-gradient(#4a80f3, #6699fa);
background: linear-gradient(#4a80f3, #6699fa);
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/app/flash.sass */
#flash {
color: gray;
font-weight: bold;
}
-/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
+/* line 7, /Users/drogus/code/travis/travis-ember/assets/styles/app/flash.sass */
#flash li {
position: relative;
margin: -20px -40px 20px -30px;
@@ -1209,23 +1209,23 @@ li {
box-shadow: transparent 0 0 0 0, #cccccc 0 1px 6px 0, transparent 0 0 0 0, transparent 0 0 0 0;
border-bottom: 1px solid #dddddd;
}
-/* line 14, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
+/* line 14, /Users/drogus/code/travis/travis-ember/assets/styles/app/flash.sass */
#flash .success {
background-color: #ebfcc2;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/app/flash.sass */
#flash .notice {
background-color: lightgoldenrodyellow;
}
-/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
+/* line 20, /Users/drogus/code/travis/travis-ember/assets/styles/app/flash.sass */
#flash .error {
background-color: #f5d7d3;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/app/flash.sass */
#flash p {
margin: 0;
}
-/* line 26, /Users/konstantin/Workspace/travis-web/assets/styles/app/flash.sass */
+/* line 26, /Users/drogus/code/travis/travis-ember/assets/styles/app/flash.sass */
#flash .close {
display: block;
position: absolute;
@@ -1237,189 +1237,189 @@ li {
opacity: 0.5;
cursor: pointer;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/github.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/app/github.sass */
#github-wrapper {
position: absolute;
z-index: 1001;
@@ -1431,7 +1431,7 @@ li {
pointer-events: none;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/app/github.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/app/github.sass */
#github {
display: block;
position: absolute;
@@ -1461,592 +1461,592 @@ li {
-moz-box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 10px, rgba(0, 0, 0, 0.07) 0 0 3px 1px inset;
box-shadow: rgba(0, 0, 0, 0.5) 1px 1px 10px, rgba(0, 0, 0, 0.07) 0 0 3px 1px inset;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/loading.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/app/loading.sass */
.loading {
padding: 15px 25px 0 0;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/app/loading.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/app/loading.sass */
.loading span {
padding-right: 25px;
font-size: 12px;
color: #aaaaaa;
background: url('data:image/gif;base64,R0lGODlhEAAIALMPAOvr697e3qCgoLW1tYuLi/X19Wtra3t7e87OzsbGxqGhodfX142NjZaWlqurq////yH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzdGMTE3NDA3MjA2ODExOTJCMEVCMzUyOEYzRkIyNSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowQTRBOUU3MDAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowQTRBOUU2RjAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkY4N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEBQoADwAsAAAAABAACAAABCzQSPmqvc+QbbDX3BOMwQOQBUh0AXCaLpBuq+iWsayyN+zOoYKw8BgKdx5MBAAh+QQFCgAPACwAAAAACgAIAAAEHJCceZ65hohdM8mb0BGfxlkkeHqqiJbhWFKyEQEAIfkECQoADwAsAAAAABAACAAABC9QiSneueeZvcX4jTVlBmEaHigKpEmg3xAeo+bCKs3aZyqvrV5sViudJBQLhveKAAAh+QQJCgAPACwAAAAAEAAIAAAEMPDJKap4Jx8ylB8PMwwMZnFJCoqkWaFqOJbHOaTJOrsCnMut2qvzAdJOE4oFoyFEAAAh+QQJCgAPACwAAAAAEAAIAAAEMvDJSZ+4Qi3E13OK4jzNYApLoCKPwimkOaBqwLoIXJ7p2r4xXu0G3M02nU9oZBRUnpUIACH5BAkKAA8ALAAAAAAQAAgAAAQv8MlJq30oozeUH0UgAk8iJlyigkBLmgE6qAnrlme6Fu6bz7uCsIDRcDyKwWX5iAAAIfkECQoADwAsAAAAABAACAAABCnwyUmrtQvpVYIHj+c9iMgBKBigAWkWqcq63pmGc1kXPP/0hUdmcyk+IgAh+QQFCgAPACwAAAAAEAAIAAAEI/DJSau9FIQN3t6PxgEk6ZFBWK5mgKpseWowWdz3gxf6jmERADs=') no-repeat right 4px;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/app/loading.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/app/loading.sass */
.loading .loading {
display: none;
}
-/* line 14, /Users/konstantin/Workspace/travis-web/assets/styles/app/loading.sass */
+/* line 14, /Users/drogus/code/travis/travis-ember/assets/styles/app/loading.sass */
span.loading {
padding: 0 25px 0 0;
font-size: 12px;
color: #aaaaaa;
background: url('data:image/gif;base64,R0lGODlhEAAIALMPAOvr697e3qCgoLW1tYuLi/X19Wtra3t7e87OzsbGxqGhodfX142NjZaWlqurq////yH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzdGMTE3NDA3MjA2ODExOTJCMEVCMzUyOEYzRkIyNSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowQTRBOUU3MDAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowQTRBOUU2RjAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkY4N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEBQoADwAsAAAAABAACAAABCzQSPmqvc+QbbDX3BOMwQOQBUh0AXCaLpBuq+iWsayyN+zOoYKw8BgKdx5MBAAh+QQFCgAPACwAAAAACgAIAAAEHJCceZ65hohdM8mb0BGfxlkkeHqqiJbhWFKyEQEAIfkECQoADwAsAAAAABAACAAABC9QiSneueeZvcX4jTVlBmEaHigKpEmg3xAeo+bCKs3aZyqvrV5sViudJBQLhveKAAAh+QQJCgAPACwAAAAAEAAIAAAEMPDJKap4Jx8ylB8PMwwMZnFJCoqkWaFqOJbHOaTJOrsCnMut2qvzAdJOE4oFoyFEAAAh+QQJCgAPACwAAAAAEAAIAAAEMvDJSZ+4Qi3E13OK4jzNYApLoCKPwimkOaBqwLoIXJ7p2r4xXu0G3M02nU9oZBRUnpUIACH5BAkKAA8ALAAAAAAQAAgAAAQv8MlJq30oozeUH0UgAk8iJlyigkBLmgE6qAnrlme6Fu6bz7uCsIDRcDyKwWX5iAAAIfkECQoADwAsAAAAABAACAAABCnwyUmrtQvpVYIHj+c9iMgBKBigAWkWqcq63pmGc1kXPP/0hUdmcyk+IgAh+QQFCgAPACwAAAAAEAAIAAAEI/DJSau9FIQN3t6PxgEk6ZFBWK5mgKpseWowWdz3gxf6jmERADs=') no-repeat right 4px;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/misc.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/app/misc.sass */
.display {
display: block !important;
}
-/* line 6, /Users/konstantin/Workspace/travis-web/assets/styles/app/misc.sass */
+/* line 6, /Users/drogus/code/travis/travis-ember/assets/styles/app/misc.sass */
.display-inline {
display: inline-block !important;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/app/misc.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/app/misc.sass */
.emoji {
vertical-align: middle;
width: 20px;
height: 20px;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/app/popup.sass */
.help {
display: inline-block;
height: 19px;
@@ -2057,7 +2057,7 @@ span.loading {
cursor: pointer;
}
-/* line 12, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
+/* line 12, /Users/drogus/code/travis/travis-ember/assets/styles/app/popup.sass */
.popup {
top: 50%;
left: 50%;
@@ -2078,7 +2078,7 @@ span.loading {
-o-border-radius: 10px;
border-radius: 10px;
}
-/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
+/* line 20, /Users/drogus/code/travis/travis-ember/assets/styles/app/popup.sass */
.popup .close {
position: absolute;
display: block;
@@ -2088,18 +2088,18 @@ span.loading {
height: 16px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjVFRDU4MEMwODk3MTFFMjkwNjNBMkQ0RTBDREI5REYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjVFRDU4MEQwODk3MTFFMjkwNjNBMkQ0RTBDREI5REYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCNUVENTgwQTA4OTcxMUUyOTA2M0EyRDRFMENEQjlERiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCNUVENTgwQjA4OTcxMUUyOTA2M0EyRDRFMENEQjlERiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgjNJDMAAABaUExURX9/f4GBgaCgoM7OzsnJycXFxby8vOPj44eHh5+fn9DQ0OLi4tzc3IKCgv39/d/f3+Dg4Ofn597e3ra2toWFheXl5bW1tZqamvj4+JmZmbu7u8bGxre3t////656HTcAAAAedFJOU///////////////////////////////////////AOwYHF4AAAB5SURBVHjaZE9HDgNBCDNM2d57Ev//m5nZnLJYQgILsA1mDCHGMNwtUjUqSBBtfkRdArrvCpR1JooV15aXtwtrQfQVjrN1pGvPA1WPUWSaO3iPbp5ERgQoHW44ahojFtInGfHkgteT+DxP3vapkTXGrHUb7j/+V4ABAB63DW3bAMwKAAAAAElFTkSuQmCC') no-repeat 0 0;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/app/popup.sass */
.popup h4 {
margin-top: 0;
font-size: 18px;
font-weight: bold;
color: #666666;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/app/popup.sass */
.popup p {
font-size: 13px;
}
-/* line 38, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
+/* line 38, /Users/drogus/code/travis/travis-ember/assets/styles/app/popup.sass */
.popup pre {
background-color: #efefef;
margin: 0;
@@ -2111,23 +2111,23 @@ span.loading {
border-radius: 4px;
}
-/* line 44, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
+/* line 44, /Users/drogus/code/travis/travis-ember/assets/styles/app/popup.sass */
#status-images {
display: none;
width: 600px;
height: 190px;
margin: -95px 0 0 -300px;
}
-/* line 50, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
+/* line 50, /Users/drogus/code/travis/travis-ember/assets/styles/app/popup.sass */
#status-images p {
margin: 10px 0;
}
-/* line 52, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
+/* line 52, /Users/drogus/code/travis/travis-ember/assets/styles/app/popup.sass */
#status-images p label {
width: 80px;
display: inline-block;
}
-/* line 55, /Users/konstantin/Workspace/travis-web/assets/styles/app/popup.sass */
+/* line 55, /Users/drogus/code/travis/travis-ember/assets/styles/app/popup.sass */
#status-images p input {
border: 1px solid #dddddd;
width: 505px;
@@ -2138,193 +2138,194 @@ span.loading {
-o-border-radius: 3px;
border-radius: 3px;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 4, /Users/konstantin/Workspace/travis-web/assets/styles/auth.sass */
+/* line 4, /Users/drogus/code/travis/travis-ember/assets/styles/auth.sass */
#auth #page {
display: block;
+ min-height: 500px;
}
-/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/auth.sass */
+/* line 8, /Users/drogus/code/travis/travis-ember/assets/styles/auth.sass */
#auth #main {
top: 200px;
margin: 0 auto 0 auto;
@@ -2338,224 +2339,224 @@ span.loading {
-o-border-radius: 8px;
border-radius: 8px;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/auth.sass */
+/* line 18, /Users/drogus/code/travis/travis-ember/assets/styles/auth.sass */
#auth #main h1 {
margin-bottom: 1em;
color: #333333;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/auth.sass */
+/* line 22, /Users/drogus/code/travis/travis-ember/assets/styles/auth.sass */
#auth #main p {
color: #333333;
}
-/* line 24, /Users/konstantin/Workspace/travis-web/assets/styles/auth.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/auth.sass */
#auth #main a:hover {
text-decoration: underline;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
html, body {
height: 100%;
}
-/* line 8, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+/* line 8, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
.application {
width: 100%;
overflow: hidden;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
.application, .application > div {
width: 100%;
min-height: 100%;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
.application > div {
overflow-x: auto;
}
-/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+/* line 20, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
#top {
position: absolute;
top: 0;
@@ -2565,7 +2566,7 @@ html, body {
z-index: 1000;
}
-/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+/* line 28, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
#page {
position: relative;
display: -webkit-box;
@@ -2585,7 +2586,7 @@ html, body {
margin-top: 40px;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
#left, #right {
-webkit-box-flex: 0;
-moz-box-flex: 0;
@@ -2595,7 +2596,7 @@ html, body {
min-height: 100%;
}
-/* line 42, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+/* line 42, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
#left {
min-width: 250px;
max-width: 380px;
@@ -2609,12 +2610,12 @@ html, body {
}
@media screen and (max-width: 980px) {
- /* line 52, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+ /* line 52, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
#left {
max-width: 300px;
}
}
-/* line 55, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+/* line 55, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
#main {
-webkit-box-flex: 4;
-moz-box-flex: 4;
@@ -2626,7 +2627,7 @@ html, body {
padding: 20px 40px 80px 30px;
}
-/* line 62, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+/* line 62, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
#right {
width: 205px;
padding: 11px 20px 80px 20px;
@@ -2635,7 +2636,7 @@ html, body {
}
@media screen and (max-width: 1400px) {
- /* line 69, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+ /* line 69, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
#left .duration_label {
display: inline-block;
width: 11px;
@@ -2647,200 +2648,200 @@ html, body {
}
}
@media screen and (max-width: 1310px) {
- /* line 79, /Users/konstantin/Workspace/travis-web/assets/styles/layout.sass */
+ /* line 79, /Users/drogus/code/travis/travis-ember/assets/styles/layout.sass */
#left .finished_at_label {
display: none;
}
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 4, /Users/konstantin/Workspace/travis-web/assets/styles/left.sass */
+/* line 4, /Users/drogus/code/travis/travis-ember/assets/styles/left.sass */
#left #search_box {
height: 87px;
padding: 30px 20px 0 20px;
background-color: #e5e8ee;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/left.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/left.sass */
#left #search_box input[type=text] {
height: 28px;
width: 100%;
@@ -2856,15 +2857,15 @@ html, body {
border-radius: 4px;
background: white url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAOCAMAAAD32Kf8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6REM3OTNBODhGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6REM3OTNBODlGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpEQzc5M0E4NkZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpEQzc5M0E4N0ZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pl/Rd+IAAAAwUExURf///729vfz8/P7+/svLy/n5+b+/v/b29vDw8MbGxubm5uHh4e/v79ra2tTU1N7e3hix620AAABqSURBVHjadM/hCoAwCATg3c3NbbZ6/7dtEZQG3R/h4wRN6TdqUsX0gzuu7JEPiG0mODxmgRUWgwStUKasqF4pGGuM2OWEDA7B9Fo67htaxD7XvbMxYtOVQv9C742ZzOEFbn7z5Qff+inAAHofAl4uuqX6AAAAAElFTkSuQmCC') no-repeat right 8px;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/left.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/left.sass */
#left .tabs #tab_owned {
display: none;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/left.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/left.sass */
#left .tabs #tab_owned.display {
display: inline-block;
}
-/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/left.sass */
+/* line 28, /Users/drogus/code/travis/travis-ember/assets/styles/left.sass */
#left .toggle-info {
position: absolute;
right: 20px;
@@ -2875,194 +2876,194 @@ html, body {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAAAolt3jAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTRERjlGNzFGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTRERjlGNzJGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBNERGOUY2RkZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBNERGOUY3MEZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrjShEMAAAAYUExURcXHzOXo7t7h58/S2OHk6tbZ3tLU2sjL0fPgiwUAAABUSURBVHjaXI9REgAxBENJifvfeDX6sW1+4g0jmLeQZGJX5h7LpBUbo+yoolE9Qn03zOAYLEUpa6DMXRs42Hww/5izqoeVhwkigFLQe8Zz5PXCJ8AAgQMBRB2yVWkAAAAASUVORK5CYII=');
cursor: pointer;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts.open li .info,
#repos.open li .info {
display: block;
}
-/* line 8, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 8, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li,
#repos li {
position: relative;
@@ -3071,19 +3072,19 @@ html, body {
border-bottom: 1px solid #dddddd;
background-repeat: no-repeat;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li:nth-child(odd), #accounts li:nth-child(odd) .indicator span,
#repos li:nth-child(odd),
#repos li:nth-child(odd) .indicator span {
background-color: white;
}
-/* line 18, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 18, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li:nth-child(even), #accounts li:nth-child(even) .indicator span,
#repos li:nth-child(even),
#repos li:nth-child(even) .indicator span {
background-color: #f6f6f6;
}
-/* line 22, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 22, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li .slug-and-status,
#repos li .slug-and-status {
white-space: nowrap;
@@ -3091,7 +3092,7 @@ html, body {
text-overflow: ellipsis;
padding-right: 35px;
}
-/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 28, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li .last_build,
#repos li .last_build {
position: absolute;
@@ -3099,7 +3100,7 @@ html, body {
right: 20px;
text-align: right;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li .summary,
#repos li .summary {
margin: 5px 0 0 15px;
@@ -3109,7 +3110,7 @@ html, body {
color: #999999;
font-size: 12px;
}
-/* line 45, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 45, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li .info,
#repos li .info {
overflow: hidden;
@@ -3119,7 +3120,7 @@ html, body {
color: #7f7f75;
display: none;
}
-/* line 52, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 52, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li .info p,
#repos li .info p {
margin: 0 -10px 0 -10px;
@@ -3128,7 +3129,7 @@ html, body {
-moz-box-shadow: #bab9a7 0 1px 8px 0 inset;
box-shadow: #bab9a7 0 1px 8px 0 inset;
}
-/* line 57, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 57, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li .indicator,
#repos li .indicator {
display: none;
@@ -3139,7 +3140,7 @@ html, body {
height: 100%;
overflow: hidden;
}
-/* line 66, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 66, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li .indicator span,
#repos li .indicator span {
position: relative;
@@ -3159,12 +3160,12 @@ html, body {
-moz-box-shadow: #cccccc 0 1px 8px 0;
box-shadow: #cccccc 0 1px 8px 0;
}
-/* line 78, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 78, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li.selected .indicator,
#repos li.selected .indicator {
display: block;
}
-/* line 81, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 81, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts .loading,
#repos .loading {
padding: 15px 25px 15px 30px;
@@ -3172,417 +3173,417 @@ html, body {
background-image: none;
}
-/* line 87, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 87, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li {
margin-left: -4px;
padding-left: 52px;
}
-/* line 90, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 90, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li.user {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAMCAMAAACOacfrAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Rjg2MkE3NjlGREQyMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Rjg2MkE3NkFGREQyMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGODYyQTc2N0ZERDIxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGODYyQTc2OEZERDIxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrJlFK8AAABLUExURX9/f4eHh4WFhZCQkPLy8oiIiNra2vDw8LGxsf7+/sLCwvb29oCAgI+Pj5mZmdXV1ba2toODg52dnfPz87i4uN3d3aGhod/f3////yHAc80AAAAZdFJOU////////////////////////////////wABNAq3AAAAV0lEQVR42lTM2Q6AIAxE0YGCsuMu//+llqREvckkPS9F42pec+0HeJEAUBQZzdJGNP+lWHYXtYV1jC8tsILIT4VVJt91Xwm9tJ0NDm8O9iML0mqk6RFgAMVgBry2iJEPAAAAAElFTkSuQmCC');
background-position: 29px 18px;
}
-/* line 93, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 93, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li.organization {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAMCAMAAAC3DnawAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTQ3QkUxMjJGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTQ3QkUxMjNGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGODYyQTc2QkZERDIxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGODYyQTc2Q0ZERDIxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnNJ4v8AAABgUExURX9/f4eHh5ubm5SUlIuLi/j4+NPT07Ozs9HR0ampqd7e3tnZ2aampsLCwoyMjMrKyuXl5ezs7KKiotzc3IGBgenp6eHh4ZeXl8DAwI+Pj/T09ImJia+vr9TU1P///5GRkUorc5sAAAAfdFJOU////////////////////////////////////////wDNGXYQAAAAjElEQVR42kSNiQ6DIBBEh0tYtJ4ohbb4/3/pKja+hM3yNplBqSxKqOXewc+7qSgAqkzOVzcC0Wh22kRgvFwLiNyz67MA2st5IOXELhm++Jon8SpvdueUNW/bQebHrjGEfWO3UoCwzcxubuwHgVZwLDkbcBK+jrgQMtpB448ebJS14+HuKJ146Ph/CDAAJA8LS8ZE6XkAAAAASUVORK5CYII=');
background-position: 24px 18px;
}
-/* line 96, /Users/konstantin/Workspace/travis-web/assets/styles/left/list.sass */
+/* line 96, /Users/drogus/code/travis/travis-ember/assets/styles/left/list.sass */
#accounts li .summary {
margin-left: 0;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 4, /Users/konstantin/Workspace/travis-web/assets/styles/main.sass */
+/* line 4, /Users/drogus/code/travis/travis-ember/assets/styles/main.sass */
#main h3 {
margin: 15px 60px 0 0;
font-size: 24px;
}
-/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/main.sass */
+/* line 7, /Users/drogus/code/travis/travis-ember/assets/styles/main.sass */
#main h3 a {
text-decoration: underline;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/main.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/main.sass */
#stats #main {
width: 600px;
padding: 20px 0 0 0;
margin-left: auto;
margin-right: auto;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/main/list.sass */
table.list {
width: 100%;
margin: 25px 0 0 12px;
border-spacing: 0;
}
-/* line 8, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
+/* line 8, /Users/drogus/code/travis/travis-ember/assets/styles/main/list.sass */
table.list a {
text-decoration: underline;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/main/list.sass */
table.list caption {
margin-bottom: 8px;
text-align: left;
@@ -3590,36 +3591,36 @@ table.list caption {
font-size: 15px;
font-weight: bold;
}
-/* line 18, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
+/* line 18, /Users/drogus/code/travis/travis-ember/assets/styles/main/list.sass */
table.list td, table.list th {
text-align: left;
font-size: 12px;
padding: 5px 20px 5px 0;
vertical-align: top;
}
-/* line 24, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
+/* line 24, /Users/drogus/code/travis/travis-ember/assets/styles/main/list.sass */
table.list tr {
max-height: 20px;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/main/list.sass */
table.list th {
font-size: 13px;
color: #666666;
white-space: nowrap;
border-bottom: 2px solid white;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/main/list.sass */
table.list td {
white-space: nowrap;
border-bottom: 2px solid white;
}
-/* line 36, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
+/* line 36, /Users/drogus/code/travis/travis-ember/assets/styles/main/list.sass */
table.list td.message {
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/main/list.sass */
table.list td:first-child {
-moz-border-radius-topleft: 4px;
-webkit-border-top-left-radius: 4px;
@@ -3628,7 +3629,7 @@ table.list td:first-child {
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
}
-/* line 44, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
+/* line 44, /Users/drogus/code/travis/travis-ember/assets/styles/main/list.sass */
table.list td:last-child {
-moz-border-radius-topright: 4px;
-webkit-border-top-right-radius: 4px;
@@ -3637,193 +3638,193 @@ table.list td:last-child {
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
-/* line 47, /Users/konstantin/Workspace/travis-web/assets/styles/main/list.sass */
+/* line 47, /Users/drogus/code/travis/travis-ember/assets/styles/main/list.sass */
table.list tr.message, table.list td.message {
width: 100%;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
pre#log {
position: relative;
clear: left;
@@ -3846,71 +3847,71 @@ pre#log {
border-radius: 4px;
overflow-x: scroll;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
pre#log p {
position: relative;
padding: 0 15px 0 50px;
margin: 0;
min-height: 16px;
}
-/* line 26, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 26, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
pre#log p:hover {
background-color: rgba(255, 255, 255, 0.05);
}
-/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 28, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
pre#log p.highlight {
background-color: rgba(255, 255, 255, 0.05);
}
-/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 30, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
pre#log p a {
position: absolute;
margin-left: -40px;
cursor: pointer;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
pre#log .fold {
height: 16px;
overflow: hidden;
background: #444444 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAMAAAC67D+PAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTRERjlGNkRGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTRERjlGNkVGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBNERGOUY2QkZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBNERGOUY2Q0ZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmdgXcEAAAAeUExURWxsbFNTU0xMTGNjY2lpaWFhYVhYWGZmZltbW////wp5o+oAAAAKdFJOU////////////wCyzCzPAAAANUlEQVR42mLghAMGCMXEDGNyMDBAmIwsDBAmEzMDA5QJFoMpYEMwOZlY4UygTnY4EwQAAgwAibsCe7OiFncAAAAASUVORK5CYII=') no-repeat 99.5% 2px;
cursor: pointer;
}
-/* line 40, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 40, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
pre#log .fold.open {
height: auto;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAMAAAC67D+PAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTQ3QkUxMkFGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTQ3QkUxMkJGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5NDdCRTEyOEZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5NDdCRTEyOUZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PiaL71AAAAAeUExURWxsbFNTU0xMTGNjY2lpaWFhYVhYWGZmZltbW////wp5o+oAAAAKdFJOU////////////wCyzCzPAAAANklEQVR42mLghAMGZCYzAxiwA5lMECYjSAEHiMUKUcsCZDJBmIwMDGwwE5hZ4IYxMaKZCxBgAILZAnvfiU1fAAAAAElFTkSuQmCC');
}
-/* line 44, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 44, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#log.loading {
padding: 25px 0 0 10px;
}
-/* line 47, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 47, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#log::-webkit-scrollbar {
height: 10px;
width: 10px;
}
-/* line 51, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 51, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#log::-webkit-scrollbar-button:start:decrement,
#log::-webkit-scrollbar-button:end:increment {
display: none;
}
-/* line 55, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 55, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#log::-webkit-scrollbar-track-piece {
background: #444444;
-webkit-border-radius: 4px;
}
-/* line 59, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 59, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#log::-webkit-scrollbar-thumb:horizontal {
background: -webkit-gradient(linear, left top, left bottom, from(#85888e), to(#55585e));
-webkit-border-radius: 4px;
width: 25px;
}
-/* line 64, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 64, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#log #tail {
z-index: 99;
position: absolute;
@@ -3940,20 +3941,20 @@ pre#log .fold.open {
background: -o-linear-gradient(#ffffff, #e0e0e0);
background: linear-gradient(#ffffff, #e0e0e0);
}
-/* line 85, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 85, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#log #tail label {
display: none;
cursor: pointer;
}
-/* line 89, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 89, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#log #tail:hover {
padding: 1px 4px 1px 6px;
}
-/* line 91, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 91, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#log #tail:hover label {
display: inline;
}
-/* line 94, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 94, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#log #tail .status {
display: inline-block;
margin-right: 1px;
@@ -3969,18 +3970,18 @@ pre#log .fold.open {
-moz-box-shadow: white 1px 1px 2px;
box-shadow: white 1px 1px 2px;
}
-/* line 103, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 103, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#log #tail.active .status {
background-color: #66bb00;
}
-/* line 107, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 107, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#main .sponsor {
float: left;
margin-top: 0;
color: #999999;
}
-/* line 111, /Users/konstantin/Workspace/travis-web/assets/styles/main/log.sass */
+/* line 111, /Users/drogus/code/travis/travis-ember/assets/styles/main/log.sass */
#main .to-top {
float: right;
margin-right: 2px;
@@ -3988,216 +3989,216 @@ pre#log .fold.open {
color: #999999;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAMAAABLuo1aAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzQ5OUVDMzFGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzQ5OUVDMzJGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDNDk5RUMyRkZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDNDk5RUMzMEZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pn1VcZAAAAAGUExURcLCwv///7ZovVQAAAACdFJOU/8A5bcwSgAAACBJREFUeNpiYAQCBgYwCWaB2QwQFojNAGUxIBhAABBgAAM5ABUYaN+yAAAAAElFTkSuQmCC') no-repeat right 6px;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/main/repository.sass */
#repo {
position: relative;
width: 100%;
overflow-x: hidden;
padding-right: 10px;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/main/repository.sass */
#repo .description, #repo .language {
font-weight: normal;
color: #999999;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/main/repository.sass */
#repo .language {
display: none;
padding-right: 5px;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/main/repository.sass */
#repo .github-stats {
position: absolute;
top: 15px;
right: 10px;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/main/repository.sass */
#repo .github-stats > * {
float: left;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/main/repository.sass */
#repo .github-stats a {
height: 16px;
display: block;
@@ -4209,228 +4210,228 @@ pre#log .fold.open {
background: no-repeat 0px 2px;
color: #999999;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/main/repository.sass */
#repo .github-stats a.watchers {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzAyMjQzMTJGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzAyMjQzMTNGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDMDIyNDMxMEZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDMDIyNDMxMUZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Piet84cAAAAwUExURZycnLq6utDQ0JCQkK2trezs7MvLy/b29tTU1PDw8Pz8/KSkpPPz8+Hh4cXFxf///4r68HYAAAAQdFJOU////////////////////wDgI10ZAAAAWUlEQVR42qTO0Q6AIAgFUOQiimL9/9+G1Vzrse4TOxtcaH+FvoKpiNqCkkDMhFQuGITezFoHjQkVQDXAziGAb/AJvFbc10p0xFHVOOqrNm8iW/73+iOHAAMAVlIL9c8yrmkAAAAASUVORK5CYII=');
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/main/repository.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/main/repository.sass */
#repo .github-stats a.forks {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzAyMjQzMTZGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0U1QTlDREFGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDMDIyNDMxNEZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDMDIyNDMxNUZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PopAyIgAAAAwUExURebm5vj4+Kurq7u7u9ra2v39/fLy8tXV1ZCQkMTExM3NzZqamtDQ0MrKypOTk////1zRGooAAAAQdFJOU////////////////////wDgI10ZAAAAYUlEQVR42pSPQRLAIAjEwKqsivr/3xash7Y3czMOGaD5g45E0uTiMsSfUoFsoo0B6OQAxwQz5wBNoVBD2g371h3c0WX4EWSEbqbGsUY8NcorGkUk+pR0gD+LsRzfsrgFGABEEAvG8TNu0wAAAABJRU5ErkJggg==');
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/main/summary.sass */
#summary {
margin: 0 0 0 12px;
overflow: hidden;
*zoom: 1;
}
-/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
+/* line 7, /Users/drogus/code/travis/travis-ember/assets/styles/main/summary.sass */
#summary .left,
#summary .right {
float: left;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/main/summary.sass */
#summary a {
text-decoration: underline;
}
-/* line 14, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
+/* line 14, /Users/drogus/code/travis/travis-ember/assets/styles/main/summary.sass */
#summary dt, #summary dd {
float: left;
min-height: 25px;
margin: 0;
}
-/* line 18, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
+/* line 18, /Users/drogus/code/travis/travis-ember/assets/styles/main/summary.sass */
#summary dt {
clear: left;
width: 90px;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/main/summary.sass */
#summary dd {
width: 150px;
white-space: nowrap;
}
-/* line 24, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
+/* line 24, /Users/drogus/code/travis/travis-ember/assets/styles/main/summary.sass */
#summary > dd {
width: 80%;
min-width: 315px;
@@ -4438,200 +4439,200 @@ pre#log .fold.open {
text-overflow: ellipsis;
white-space: nowrap;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/main/summary.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/main/summary.sass */
#summary .message {
white-space: normal;
min-width: 0;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/main/tools.sass */
#tools {
position: relative;
float: right;
top: 2px;
}
-/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
+/* line 7, /Users/drogus/code/travis/travis-ember/assets/styles/main/tools.sass */
#tools > a {
display: block;
width: 39px;
@@ -4640,7 +4641,7 @@ pre#log .fold.open {
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAVCAMAAADyzwehAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzQ5OUVDMkRGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzQ5OUVDMkVGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCMDg5Q0VBMEZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDNDk5RUMyQ0ZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqCj7TcAAADAUExURfHx8fr6+vPz8/b29rS0tHR0dI2Njejo6G1tbe3t7WZmZufo59ra2pKSkuDg4Pz8/OTk5N7e3v///6+vr+Li4ru7u/j4+O7u7vX19erq6fr6+e/v7/z8++bm5uvr6+Pk5IWFheHh4efn5pWVlePk493d3dfX1729vd/f3/39/Xt7e+jn6ICAgPT09K6uruXl5ebn5qWlpVpaWuXm5ZCPkKysrNLS0sXFxc3Nzbm5uYmJiWJiYvf49vf3+Ojo5+zs6+qxzm8AAAFZSURBVHjahJLrcoIwEEYXUYjcFAuEFBGFCoKI93tb3/+tuiFOnXEcOTtJdr89PwOyYUz675kYhgz9gzdowjv0IZMGee89+UDKwO0NsR0iInzZ9VxwJc4nIjmbjSO6R3bv0PNkjwNaCtcrpBrwSWSPDj1frqtDNJMQUyMdWZb950Kv5dcFZaemhMWCz4v7EYUe1MyCdrEGWBftYFYHrfsRoEcDXoQUJQ/KgpAAZ00QiC1Fb0R5jRHu8beL863WblRsR+gxxkaMAVSXhNLkUgFgwm4/qPldJrYMPXWuM1UHW1HGhIwVxdZ1XZ3/qj/a91zVxVZHL4zDeBmHyi7Z73b7ZKdst2EYr8KwtQrxFlv0vvoR/okIKkpNk9IKoiiqsyV/7lv0HAEFsJPEBqDOC9Cz/ukCdK0Jx3oGvZndzMyFLHWsJpw0g+nxNG3QpqfjFHL7/NHE2c7/BBgA41Q9vbXvgN4AAAAASUVORK5CYII=') no-repeat;
cursor: pointer;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/main/tools.sass */
#tools .menu {
display: none;
position: absolute;
@@ -4659,16 +4660,16 @@ pre#log .fold.open {
-moz-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/main/tools.sass */
#tools .menu a {
display: block;
padding: 5px 25px 5px 25px;
}
-/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
+/* line 28, /Users/drogus/code/travis/travis-ember/assets/styles/main/tools.sass */
#tools .menu a:hover {
background-color: #f6f6f6;
}
-/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/main/tools.sass */
+/* line 30, /Users/drogus/code/travis/travis-ember/assets/styles/main/tools.sass */
#tools .menu a:last-child {
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;
@@ -4677,198 +4678,198 @@ pre#log .fold.open {
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 4, /Users/konstantin/Workspace/travis-web/assets/styles/maximize.sass */
+/* line 4, /Users/drogus/code/travis/travis-ember/assets/styles/maximize.sass */
.maximized #right {
width: 0;
padding: 0;
}
-/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/maximize.sass */
+/* line 7, /Users/drogus/code/travis/travis-ember/assets/styles/maximize.sass */
.maximized #right *:not(#slider):not(.icon):not(.ember-view) {
display: none;
}
-/* line 10, /Users/konstantin/Workspace/travis-web/assets/styles/maximize.sass */
+/* line 10, /Users/drogus/code/travis/travis-ember/assets/styles/maximize.sass */
.maximized #slider {
left: -20px;
width: 20px;
@@ -4880,198 +4881,198 @@ pre#log .fold.open {
border-bottom-left-radius: 4px;
}
-/* line 18, /Users/konstantin/Workspace/travis-web/assets/styles/maximize.sass */
+/* line 18, /Users/drogus/code/travis/travis-ember/assets/styles/maximize.sass */
#top .profile {
margin-right: 140px;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/maximize.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/maximize.sass */
.maximized #top .profile {
margin-right: 40px;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/profile.sass */
#profile #main img {
float: left;
width: 48px;
@@ -5084,33 +5085,33 @@ pre#log .fold.open {
border-radius: 4px;
background-color: #dddddd;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/profile.sass */
#profile #main dl {
float: left;
margin: 0 0 20px 0;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/profile.sass */
#profile #main dt {
display: block;
clear: left;
float: left;
width: 50px;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/profile.sass */
#profile #main dd {
float: left;
margin-left: 0;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/profile.sass */
#profile #main form {
clear: left;
}
-/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
+/* line 30, /Users/drogus/code/travis/travis-ember/assets/styles/profile.sass */
#profile #main .tip {
margin-top: -5px;
color: #999999;
}
-/* line 34, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
+/* line 34, /Users/drogus/code/travis/travis-ember/assets/styles/profile.sass */
#profile #main .message {
margin-top: 20px;
padding: 10px 10px;
@@ -5122,198 +5123,198 @@ pre#log .fold.open {
-o-border-radius: 4px;
border-radius: 4px;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/profile.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/profile.sass */
#profile #main .message .sync_now {
float: right;
margin-top: -3px;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks {
margin-top: 10px;
}
-/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 7, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li {
position: relative;
height: 19px;
@@ -5322,33 +5323,33 @@ pre#log .fold.open {
overflow: hidden;
border-bottom: 1px solid #dddddd;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li:nth-child(3) {
border-top: 1px solid #dddddd;
}
-/* line 18, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 18, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li:nth-child(odd) {
background-color: #fafbfc;
}
-/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 20, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li:nth-child(odd) .controls {
background: #fafbfc;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li:nth-child(even) {
background-color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li:nth-child(even) .controls {
background: white;
}
-/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 28, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li > a {
float: left;
font-size: 15px;
text-decoration: none;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li .description {
display: none;
margin-left: 10px;
@@ -5359,19 +5360,19 @@ pre#log .fold.open {
text-overflow: ellipsis;
color: #999999;
}
-/* line 43, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 43, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li .controls {
position: absolute;
top: 10px;
right: 0;
white-space: nowrap;
}
-/* line 48, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 48, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li .controls a {
float: left;
display: block;
}
-/* line 52, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 52, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li .github-admin {
position: relative;
height: 20px;
@@ -5379,7 +5380,7 @@ pre#log .fold.open {
padding-right: 0;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0U1QTlDRERGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0U1QTlDREVGREQzMTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDRTVBOUNEQkZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDRTVBOUNEQ0ZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PugPDoAAAAAwUExURaampre3t7S0tLm5udra2tLS0tzc3ODg4MfHx7+/v+bm5urq6s7Ozv///6ioqNbW1njQEeIAAAAOdFJOU/////////////////8ARcDcyAAAAF1JREFUeNp8j0sSgCAMQ0M/FkH0/rcVXBTqjHaX109StFfhBwhbAAKNEwm1NVsAIRelCRSjNgdDJxa/sXd9uO3F1LV5DhnLp81gpCUjLUl7rwbweEgAxtv3t7cAAwC4EAqg5decxgAAAABJRU5ErkJggg==') no-repeat 3px 4px;
}
-/* line 61, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 61, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li .switch {
position: relative;
display: block;
@@ -5407,7 +5408,7 @@ pre#log .fold.open {
cursor: pointer;
text-align: right;
}
-/* line 77, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 77, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li .switch:before {
content: "";
position: absolute;
@@ -5430,7 +5431,7 @@ pre#log .fold.open {
-o-border-radius: 4px;
border-radius: 4px;
}
-/* line 89, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 89, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li.active .switch {
width: 56px;
padding: 0 0 0 14px;
@@ -5446,214 +5447,214 @@ pre#log .fold.open {
color: white;
text-align: left;
}
-/* line 97, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 97, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li.active .switch:before {
left: auto;
right: -1px;
}
-/* line 103, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 103, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li:hover > a {
color: #c7371a;
}
-/* line 106, /Users/konstantin/Workspace/travis-web/assets/styles/profile/hooks.sass */
+/* line 106, /Users/drogus/code/travis/travis-ember/assets/styles/profile/hooks.sass */
#hooks li:hover .description {
display: inline;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/right.sass */
#right {
padding-bottom: 80px;
}
-/* line 6, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
+/* line 6, /Users/drogus/code/travis/travis-ember/assets/styles/right.sass */
#right h4 {
margin: 24px 0 0 0;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/right.sass */
#right ul {
margin-top: 10px;
}
-/* line 12, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
+/* line 12, /Users/drogus/code/travis/travis-ember/assets/styles/right.sass */
#right .box {
margin-top: 25px;
padding: 15px;
@@ -5665,21 +5666,21 @@ pre#log .fold.open {
-o-border-radius: 4px;
border-radius: 4px;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/right.sass */
#right .box h4 {
margin: 0;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/right.sass */
#right .box a {
text-decoration: underline;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/right.sass */
#right .box li {
list-style-type: square;
margin-left: 15px;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/right.sass */
#slider {
position: absolute;
height: 100%;
@@ -5690,197 +5691,197 @@ pre#log .fold.open {
cursor: pointer;
background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAKCAMAAABL52QCAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6REM3OTNBODRGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6REM3OTNBODVGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpEQzc5M0E4MkZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpEQzc5M0E4M0ZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PhC9j6AAAAAGUExURZmZmf///4PuMxkAAAACdFJOU/8A5bcwSgAAACBJREFUeNpiYGAEAgYGBgjJACEZICQyQMiCVYJ0AQQYAAKAABX7Qf3pAAAAAElFTkSuQmCC') no-repeat 3px 10px;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/right.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/right.sass */
#slider:hover {
background-color: #e1e2e6;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 4, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 4, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #queues {
margin-top: 0;
}
-/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 7, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #toggle-workers {
display: inline-block;
float: right;
@@ -5889,15 +5890,15 @@ pre#log .fold.open {
cursor: pointer;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAMAAABLuo1aAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjA4OUNFOTZGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjA4OUNFOTdGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDRTVBOUNFM0ZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDRTVBOUNFNEZERDMxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk+wkAkAAAAGUExURcLCwv///7ZovVQAAAACdFJOU/8A5bcwSgAAAB5JREFUeNpiYEAARgSDEcpmBDEZISwwkxHMYgQIMAABgQAVaDDWjAAAAABJRU5ErkJggg==') no-repeat left 5px;
}
-/* line 14, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 14, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #toggle-workers.open {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAMAAABLuo1aAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QjA4OUNFOUFGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QjA4OUNFOUJGREQ0MTFFMUFDNEREQzAwMkZFNkVGNjQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCMDg5Q0U5OEZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCMDg5Q0U5OUZERDQxMUUxQUM0RERDMDAyRkU2RUY2NCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvT/PYIAAAAGUExURcLCwv///7ZovVQAAAACdFJOU/8A5bcwSgAAACBJREFUeNpiYAQCBgYwCWaB2QwQFojNAGUxIBhAABBgAAM5ABUYaN+yAAAAAElFTkSuQmCC');
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #workers li ul {
display: none;
}
-/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 20, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #workers li,
#right #queues ul li {
overflow: hidden;
@@ -5905,7 +5906,7 @@ pre#log .fold.open {
margin: 0;
list-style-type: none;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #workers li h5,
#right #queues ul li h5 {
font-size: 12px;
@@ -5913,14 +5914,14 @@ pre#log .fold.open {
margin: 0px;
cursor: pointer;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #workers li ul,
#right #queues ul li ul {
margin-top: 8px;
margin-bottom: 5px;
padding-left: 1px;
}
-/* line 38, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 38, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #workers li .name,
#right #workers li .slug,
#right #queues ul li .name,
@@ -5930,22 +5931,22 @@ pre#log .fold.open {
white-space: nowrap;
text-overflow: ellipsis;
}
-/* line 45, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 45, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #workers li .name,
#right #queues ul li .name {
max-width: 140px;
}
-/* line 48, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 48, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #workers li .slug,
#right #queues ul li .slug {
max-width: 150px;
}
-/* line 51, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 51, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #workers li.open ul,
#right #queues ul li.open ul {
display: block;
}
-/* line 54, /Users/konstantin/Workspace/travis-web/assets/styles/right/lists.sass */
+/* line 54, /Users/drogus/code/travis/travis-ember/assets/styles/right/lists.sass */
#right #workers li .status,
#right #queues ul li .status {
display: inline-block;
@@ -5958,193 +5959,193 @@ pre#log .fold.open {
-o-border-radius: 4px;
border-radius: 4px;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .sponsors.top {
height: 140px;
}
-/* line 8, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 8, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .sponsors.top li {
overflow: hidden;
width: 205px;
@@ -6157,11 +6158,11 @@ pre#log .fold.open {
border-radius: 8px;
list-style-type: none;
}
-/* line 16, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 16, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .sponsors.top a {
overflow: hidden;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .sponsors.top img {
z-index: 200;
overflow: hidden;
@@ -6172,424 +6173,424 @@ pre#log .fold.open {
-o-border-radius: 8px;
border-radius: 8px;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .sponsors .platinum {
height: 130px;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .sponsors .platinum img {
height: 130px;
}
-/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 30, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .sponsors .gold {
height: 60px;
}
-/* line 32, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 32, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .sponsors .gold img {
height: 60px;
}
-/* line 36, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 36, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .sponsors .silver h5 {
margin: 0;
}
-/* line 38, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 38, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .sponsors .silver p {
margin: 0;
}
-/* line 42, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 42, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .box .sponsors li {
list-style-type: none;
margin-left: 0;
padding-bottom: 12px;
}
-/* line 46, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 46, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .box .sponsors a {
color: #575c7c;
font-weight: bold;
text-decoration: none;
}
-/* line 51, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 51, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .hint {
margin: 0 0 0 2px;
font-size: 11px;
text-align: left;
}
-/* line 55, /Users/konstantin/Workspace/travis-web/assets/styles/right/sponsors.sass */
+/* line 55, /Users/drogus/code/travis/travis-ember/assets/styles/right/sponsors.sass */
#right .hint a {
color: #999999;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/stats.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/stats.sass */
#repo_count_container,
#build_count_container {
width: 100%;
height: 300px;
margin: 30px 0;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
.status {
display: inline-block;
width: 10px;
@@ -6602,281 +6603,281 @@ pre#log .fold.open {
border-radius: 5px;
}
-/* line 12, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 12, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
#repos .status,
.number .status {
background-color: #e7d100;
}
-/* line 14, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 14, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
#repos a,
.number a {
color: #666666;
}
-/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 20, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
#repos .green .status,
.green #summary .number .status,
.list .green .number .status {
background-color: #368c2a;
}
-/* line 22, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 22, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
#repos .green a,
.green #summary .number a,
.list .green .number a {
color: #038035;
}
-/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 28, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
#repos .red .status,
.red #summary .number .status,
.list .red .number .status {
background-color: #cc3d3d;
}
-/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 30, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
#repos .red a,
.red #summary .number a,
.list .red .number a {
color: #cc0000;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
table.list tbody td {
cursor: pointer;
background-color: #fffcf4;
}
-/* line 38, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 38, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
table.list tbody tr:hover td {
background-color: #ffffe1;
}
-/* line 42, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 42, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
table.list .green td {
background-color: #fafffa;
}
-/* line 44, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 44, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
table.list .green:hover td {
background-color: #dcffdc;
}
-/* line 46, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 46, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
table.list .green .number a {
color: #038035;
}
-/* line 50, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 50, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
table.list .red td {
background-color: snow;
}
-/* line 52, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 52, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
table.list .red:hover td {
background-color: #ffdcdc;
}
-/* line 54, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 54, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
table.list .red .number a {
color: #cc0000;
}
-/* line 58, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 58, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
#workers .status {
background-color: #368c2a;
}
-/* line 61, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 61, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
#workers .waiting .status {
background-color: #368c2a;
}
-/* line 64, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 64, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
#workers .errored .status {
background-color: #cc3d3d;
}
-/* line 67, /Users/konstantin/Workspace/travis-web/assets/styles/status.sass */
+/* line 67, /Users/drogus/code/travis/travis-ember/assets/styles/status.sass */
#workers .stopped .status {
background-color: #999999;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
.tabs {
height: 29px;
border-bottom: 1px solid #cccccc;
}
-/* line 7, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 7, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
.tabs li {
display: inline-block;
height: 28px;
@@ -6892,246 +6893,246 @@ table.list .red .number a {
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
.tabs li:hover {
background-color: white;
}
-/* line 20, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 20, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
.tabs .active {
background-color: white;
border-bottom-color: white;
}
-/* line 24, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 24, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
.tabs h5 {
margin: 0;
font-size: 12px;
font-weight: normal;
line-height: 30px;
}
-/* line 30, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 30, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
.tabs h5 a {
display: block;
padding: 0 10px;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
#left .tabs {
margin-top: -29px;
}
-/* line 38, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 38, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
#left .tabs li:first-child {
margin-left: 20px;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
#left #tab_search:not(.active) {
display: none;
}
-/* line 45, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 45, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
#main .tabs {
margin-top: 35px;
}
-/* line 47, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 47, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
#main .tabs a {
text-decoration: none;
}
-/* line 50, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 50, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
#main .tab {
margin-top: 20px;
}
-/* line 53, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 53, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
#main #tab_build,
#main #tab_job {
display: none;
}
-/* line 59, /Users/konstantin/Workspace/travis-web/assets/styles/tabs.sass */
+/* line 59, /Users/drogus/code/travis/travis-ember/assets/styles/tabs.sass */
#profile #main .tab {
margin: 30px 0 0 12px;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bold {
font-weight: bold;
}
-/* line 5, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 5, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .italic {
font-style: italic;
}
-/* line 9, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 9, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black {
color: black;
}
-/* line 11, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 11, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .red {
color: red;
}
-/* line 13, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 13, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .green {
color: lime;
}
-/* line 15, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 15, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .yellow {
color: yellow;
}
-/* line 17, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 17, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .blue {
color: blue;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .magenta {
color: magenta;
}
-/* line 21, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 21, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .cyan {
color: cyan;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .white {
color: white;
}
-/* line 25, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 25, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .black.bright {
color: #999999;
}
-/* line 27, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 27, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-black {
background-color: black;
}
-/* line 29, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 29, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-red {
background-color: red;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-green {
background-color: lime;
}
-/* line 33, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 33, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-yellow {
background-color: yellow;
}
-/* line 35, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 35, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-blue {
background-color: blue;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-magenta {
background-color: magenta;
}
-/* line 39, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 39, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-cyan {
background-color: cyan;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/ansi.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/ansi.sass */
.ansi .bg-white {
background-color: white;
}
-/* line 108, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 108, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .black {
background-color: black;
}
-/* line 110, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 110, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .white {
background-color: white;
}
-/* line 113, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 113, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green {
background-color: #038035;
}
-/* line 115, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 115, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-1 {
background-color: #dcffdc;
}
-/* line 117, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 117, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .green-light-3 {
background-color: #fafffa;
}
-/* line 119, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 119, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red {
background-color: #cc0000;
}
-/* line 121, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 121, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-medium-1 {
background-color: #c7371a;
}
-/* line 123, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 123, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-1 {
background-color: #ffdcdc;
}
-/* line 125, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 125, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .red-light-3 {
background-color: snow;
}
-/* line 127, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 127, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-1 {
background-color: #ffffe1;
}
-/* line 129, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 129, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .yellow-light-2 {
background-color: #fffcf4;
}
-/* line 132, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 132, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-1 {
background-color: #333333;
}
-/* line 134, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 134, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-2 {
background-color: #444444;
}
-/* line 136, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 136, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-dark-3 {
background-color: #666666;
}
-/* line 138, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 138, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-1 {
background-color: #999999;
}
-/* line 140, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 140, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-2 {
background-color: #aaaaaa;
}
-/* line 142, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 142, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-medium-3 {
background-color: #cccccc;
}
-/* line 144, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 144, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-1 {
background-color: #dddddd;
}
-/* line 146, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 146, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-2 {
background-color: #efefef;
}
-/* line 148, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 148, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .gray-light-3 {
background-color: #f6f6f6;
}
-/* line 151, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 151, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-1 {
background-color: #e1e2e6;
}
-/* line 153, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 153, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-2 {
background-color: #e5e8ee;
}
-/* line 155, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 155, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-3 {
background-color: #f2f4f9;
}
-/* line 157, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 157, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-blue-4 {
background-color: #fafbfc;
}
-/* line 159, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 159, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-1 {
background-color: #7f7f75;
}
-/* line 161, /Users/konstantin/Workspace/travis-web/assets/styles/_mixins/colors.sass */
+/* line 161, /Users/drogus/code/travis/travis-ember/assets/styles/_mixins/colors.sass */
#colors .slate-yellow-2 {
background-color: #bab9a7;
}
-/* line 3, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 3, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top {
line-height: 40px;
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #444444), color-stop(100%, #111111));
@@ -7141,7 +7142,7 @@ table.list .red .number a {
background: linear-gradient(#444444, #111111);
font-size: 13px;
}
-/* line 8, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 8, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top h1 {
float: left;
width: 73px;
@@ -7150,71 +7151,71 @@ table.list .red .number a {
text-indent: -9999px;
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEkAAAAeCAMAAABXJsOhAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUZGRkVGNjVGQTE0MTFFMUEzNzhDNjZGM0QyMzVGNUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUZGRkVGNjZGQTE0MTFFMUEzNzhDNjZGM0QyMzVGNUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5RkZGRUY2M0ZBMTQxMUUxQTM3OEM2NkYzRDIzNUY1QiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5RkZGRUY2NEZBMTQxMUUxQTM3OEM2NkYzRDIzNUY1QiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqH5DXgAAAMAUExURSQkJOrq6qqqqrs7OXJycnx8fM/Pz6Ojo8NCPLIYF7s3NPLy8oY1LiwsLM7Ozvjy8r80LkJCQtJfVbskHFQdH8k5K785MrlNPeOvrME4MbouLMA0LrwyLuWzsrMnKslmZfT09M5zcoGBgWJiYrIoK/r6+vf392VlZbYqK7YuLc5OPTExMcdjZO7OzcExKN3d3fXm5cAmG8E2MLUoK8U1KfDMybgtLOXl5bgnI7swLsbGxv39/ZKSksA+OtJzb5iYmPHg4F5eXsU6MJSUlFhYWMEtItTU1DU1NcM4MO/v725ubnkkJElJSfDRz81vb7otKcLCwu7IxcIwJVJSUtiGg+m+vbW1tUo6Nfj4+GhoaIk7MsEtLTk5OcQxL+Li4tuJhPnv796TjtCBg/78/DAeHL4tLLsmK5ycnMRDNb8yLvTj49JgVcI9M8o/Mrm5ucdIQLYhHrQiIcc8Ms5WTNWDgn0rKKysrIyMjHUjI+Dg4MU2K89NPLovLdF+fr0oIa4bHszMzNJBM7YwLoqKivbo6L4qLNaEgrgnJlZWVrIgIOvDwtE+M74xK9BNPOGrqbgrK8g/M8ErILIsLLEeILQqK+/JxjspJj4sKbosLMo+MsAzLdFwa85uak5OTtBgWHsoJ889M8o+MDgmJDYjIbwxLs07Mco2MLo1L1YdH70zLr0nK7MkJ0IwLck9MoEvK8IuJEAuK7wqJDMgH/////7+/rcsK+3t7fv4+dfX174zLr6+voWFhbUpK7snLD8/P/Tb2P7///rx8DkxLh0dHbYwMd6PicMyKNlCNO3Dv7syLnlCOdWEhM9va/z6+sA5M8g2L8+BgslhXee+veOtq+SurK0NDMlGPcs4Mfjp5/fu7u/Pzb4xLtycnPXg3q4oKtB1c9d7dbCwsMpra8trbLtAQc1rabclI9jY2MI0Kr8oLMtJPLIjJ8xvcOvOzu/LyPjx8fr29sRRUcJZWc9bUvDU0/PY1kI4NLkoI9eIiLwvKr4tJrgzL/jr6tRzbsg8Mf///5ksZz8AAAEAdFJOU////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wBT9wclAAAEF0lEQVR42pTWC1xTVRwH8IswRIjYENdgQ+bGYDYEHZbx0liTyVwmoOSSh0IxQ4YOK4oyIynEUrClFcZ6YbGslv6Hgg6iLHoZWdHL3mWlvd/vPP3PuRtCLz73d++5957/Z/f72Tm757PLEfLThf8VIiQcee7MLVePzqneljMESU+sarTbp/xL7rHbn75IiPTQKrvdvm41TTTdov2Xqz+ztzUKk2ruaJvyTBb8PZU7Z7c1niZMeriuoWAg/hXZ8LBsWCajJ5ls6w+wc3bdTYKkR2tO1jVs35/jmb8NMzjooafCWU8Jl26rOWlAaU3DOpfL9X2dYY0r2uV6zbMSDg8a7h5H6kgeI0kNhuMoeQpwcprC5pfTSZo7i0m7xpGugJKx0oLjBfvDPGdVbv3jTSq9XDAwd/JK752phl2P/L+UnWcaJe1AKXU7vPNY5dfir6LCtpXDS+/DGz+ugMOFC8aTxs7TDqlenzpc3dRU/WXO0aica8sHPv6zembTzOqEwtjXqZSrJjqrmRCTaJ5N1U/IphD2RXTmTaTIHEk4Tp1t22ihUrher4+VDg1JY28+H6Ul8N5vQ1IMlpkU+ml/PhQTaxJoloEyl4hgI5XMXhXOk4noMiFLCZBNuHsf0Mv18nZ5e3t7QNqD11iRy+9nUllPqMiiS4owEs7sPUB0mjwqFWt0TFKBLZJI8kCCklzMp5dKk5fAtD3+gvjFy6kEBzhCjHPq6f1lZWiAhJBIZS0hE1CaCLlYNxYbqdTbK+7F5v6VSjeixPdHpKLApParvHMISabDs4KVl9SQX9/BZvy+3y9VuBVut1uhQCmYSj/TvkLhFpdS6XQv+1zJvNAk2KdEiQvC4X2Qz1FJR7iQIABlrZFKb3UqOnFXdF5wNCp4LUrn8H3Fs7yUTyWLMuI8tYTrQYnYcFKUE4lfOkQ6Di72QghKnRkYPMS1UukymPZJhj+ld1FpH2E3GenpKipZoF7NhkylIjZ2NYRye6/PuIYlo3ntDCZ9OCnOXxolLQb6FBmBSiSvZ0Ia8Uu1+BviiDXXcXunx/Fp/iX+8RXhKM2I/7aZL5UuHJGyIdNqtSmDltFFq4Kk+oCUDGmiXHMmqKh0NotjM7xwbrhz/TcACQ6+tPyUxBV7AdKKRBBBn2+NtyQgHQopwyUfdJBwF99yezeLY2nWd8ema8OD34YUB19iUiA6SSQeTZH/XHEmC3VRatW2dmND6clJLQ7nq8+j1KrVdndrl18pZAVTiaVlqXf9R4u+WJQQDyktfOkSgZLPp/Vpb/U5N4/8GyQ4fSw3CJMSfbjhvjulouJIBc2RY7uRSU8XKr2bPpUl0bkhkM8T+dIJQRJZeKKKT19V1airvr6qB6cKey8gMTExXV2sdbGwPusIesP4S4ABALuzx/Q14rYaAAAAAElFTkSuQmCC') no-repeat;
}
-/* line 16, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 16, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top ul {
list-style-type: none;
}
-/* line 19, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 19, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top a, #top span {
color: #cccccc;
text-decoration: none;
}
-/* line 23, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 23, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top li {
display: inline-block;
}
-/* line 26, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 26, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top li.active {
background-color: black;
}
-/* line 28, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 28, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top li.active a {
color: white;
}
-/* line 31, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 31, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top li a, #top li span {
display: block;
padding: 0 15px;
}
-/* line 34, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 34, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top li a:hover, #top li span:hover {
color: white;
}
-/* line 37, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 37, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile {
position: relative;
float: right;
}
-/* line 41, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 41, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile .handle {
margin: 0;
}
-/* line 44, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 44, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile .signed-out, #top .profile .signing-in, #top .profile .signed-in {
display: none;
padding: 0 15px 0 45px;
}
-/* line 47, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 47, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile .signed-out, #top .profile .signing-in {
min-width: 110px;
}
-/* line 49, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 49, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile.signed-out .signed-out {
display: block;
}
-/* line 51, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 51, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile.signing-in .signing-in {
display: inline-block;
}
-/* line 53, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 53, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile.signed-in .signed-in {
display: block;
}
-/* line 56, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 56, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile .signing-in {
background: url('data:image/gif;base64,R0lGODlhEAAIALMPAOvr697e3qCgoLW1tYuLi/X19Wtra3t7e87OzsbGxqGhodfX142NjZaWlqurq////yH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGNzdGMTE3NDA3MjA2ODExOTJCMEVCMzUyOEYzRkIyNSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDowQTRBOUU3MDAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDowQTRBOUU2RjAxNzUxMUUyODZFREY0REREQTAzNDk4QSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IE1hY2ludG9zaCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkY4N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkY3N0YxMTc0MDcyMDY4MTE5MkIwRUIzNTI4RjNGQjI1Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEBQoADwAsAAAAABAACAAABCzQSPmqvc+QbbDX3BOMwQOQBUh0AXCaLpBuq+iWsayyN+zOoYKw8BgKdx5MBAAh+QQFCgAPACwAAAAACgAIAAAEHJCceZ65hohdM8mb0BGfxlkkeHqqiJbhWFKyEQEAIfkECQoADwAsAAAAABAACAAABC9QiSneueeZvcX4jTVlBmEaHigKpEmg3xAeo+bCKs3aZyqvrV5sViudJBQLhveKAAAh+QQJCgAPACwAAAAAEAAIAAAEMPDJKap4Jx8ylB8PMwwMZnFJCoqkWaFqOJbHOaTJOrsCnMut2qvzAdJOE4oFoyFEAAAh+QQJCgAPACwAAAAAEAAIAAAEMvDJSZ+4Qi3E13OK4jzNYApLoCKPwimkOaBqwLoIXJ7p2r4xXu0G3M02nU9oZBRUnpUIACH5BAkKAA8ALAAAAAAQAAgAAAQv8MlJq30oozeUH0UgAk8iJlyigkBLmgE6qAnrlme6Fu6bz7uCsIDRcDyKwWX5iAAAIfkECQoADwAsAAAAABAACAAABCnwyUmrtQvpVYIHj+c9iMgBKBigAWkWqcq63pmGc1kXPP/0hUdmcyk+IgAh+QQFCgAPACwAAAAAEAAIAAAEI/DJSau9FIQN3t6PxgEk6ZFBWK5mgKpseWowWdz3gxf6jmERADs=') no-repeat 110px 16px;
}
-/* line 59, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 59, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile img {
position: absolute;
top: 7px;
@@ -7227,11 +7228,11 @@ table.list .red .number a {
-o-border-radius: 3px;
border-radius: 3px;
}
-/* line 67, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 67, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile.signed-in:hover > ul {
display: block;
}
-/* line 70, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 70, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile ul {
display: none;
position: absolute;
@@ -7249,11 +7250,11 @@ table.list .red .number a {
-moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
-/* line 80, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 80, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile ul li {
display: block;
}
-/* line 82, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 82, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile ul li:last-child a:hover {
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;
@@ -7262,14 +7263,14 @@ table.list .red .number a {
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
-/* line 85, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 85, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile ul a {
display: block;
padding: 5px 25px 5px 45px;
line-height: 24px;
white-space: nowrap;
}
-/* line 90, /Users/konstantin/Workspace/travis-web/assets/styles/top.sass */
+/* line 90, /Users/drogus/code/travis/travis-ember/assets/styles/top.sass */
#top .profile ul a:hover {
background-color: #666666;
}
diff --git a/public/version b/public/version
index 9a3c5ee1..acd842c0 100644
--- a/public/version
+++ b/public/version
@@ -1 +1 @@
-d437e819
\ No newline at end of file
+92c2db04
\ No newline at end of file
From 82163346b9422e68b81ad4846af9473e671d8061 Mon Sep 17 00:00:00 2001
From: Piotr Sarnacki
Date: Thu, 18 Oct 2012 03:38:45 +0200
Subject: [PATCH 3/3] We don't have to transitionTo('root') here
---
assets/scripts/app/routes.coffee | 1 -
public/scripts/app.js | 2 +-
public/scripts/min/app.js | 2 +-
public/version | 2 +-
4 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/assets/scripts/app/routes.coffee b/assets/scripts/app/routes.coffee
index 85a06039..234da0d1 100644
--- a/assets/scripts/app/routes.coffee
+++ b/assets/scripts/app/routes.coffee
@@ -181,7 +181,6 @@ Travis.Router = Ember.Router.extend
afterSignIn: (router) ->
path = sessionStorage.getItem('travis.after_signin_path')
sessionStorage.removeItem('travis.after_signin_path')
- router.transitionTo('root')
router.route(path || '/')
stats: Ember.Route.extend
diff --git a/public/scripts/app.js b/public/scripts/app.js
index 32a1a15e..32d51138 100644
--- a/public/scripts/app.js
+++ b/public/scripts/app.js
@@ -29619,4 +29619,4 @@ var _require=function(){function c(a,c){document.addEventListener?a.addEventList
++g&&setTimeout(c,0)})}}();
(function(){!window.WebSocket&&window.MozWebSocket&&(window.WebSocket=window.MozWebSocket);if(window.WebSocket)Pusher.Transport=window.WebSocket,Pusher.TransportType="native";var c=(document.location.protocol=="http:"?Pusher.cdn_http:Pusher.cdn_https)+Pusher.VERSION,a=[];window.JSON||a.push(c+"/json2"+Pusher.dependency_suffix+".js");if(!window.WebSocket)window.WEB_SOCKET_DISABLE_AUTO_INITIALIZATION=!0,a.push(c+"/flashfallback"+Pusher.dependency_suffix+".js");var b=function(){return window.WebSocket?function(){Pusher.ready()}:
function(){window.WebSocket?(Pusher.Transport=window.WebSocket,Pusher.TransportType="flash",window.WEB_SOCKET_SWF_LOCATION=c+"/WebSocketMain.swf",WebSocket.__addTask(function(){Pusher.ready()}),WebSocket.__initialize()):(Pusher.Transport=null,Pusher.TransportType="none",Pusher.ready())}}(),e=function(a){var b=function(){document.body?a():setTimeout(b,0)};b()},g=function(){e(b)};a.length>0?_require(a,g):g()})();
-;minispade.register('app', "(function() {(function() {\nminispade.require('auth');\nminispade.require('controllers');\nminispade.require('helpers');\nminispade.require('models');\nminispade.require('pusher');\nminispade.require('routes');\nminispade.require('slider');\nminispade.require('store');\nminispade.require('tailing');\nminispade.require('templates');\nminispade.require('views');\nminispade.require('config/locales');\nminispade.require('data/sponsors');\n\n Travis.reopen({\n App: Em.Application.extend({\n autoinit: false,\n currentUserBinding: 'auth.user',\n authStateBinding: 'auth.state',\n init: function() {\n this._super.apply(this, arguments);\n this.store = Travis.Store.create();\n this.store.loadMany(Travis.Sponsor, Travis.SPONSORS);\n this.set('auth', Travis.Auth.create({\n app: this,\n endpoint: Travis.config.api_endpoint\n }));\n this.slider = new Travis.Slider();\n this.pusher = new Travis.Pusher(Travis.config.pusher_key);\n return this.tailing = new Travis.Tailing();\n },\n signIn: function() {\n return this.get('auth').signIn();\n },\n autoSignIn: function() {\n return this.get('auth').autoSignIn();\n },\n signOut: function() {\n this.get('auth').signOut();\n return this.get('router').send('afterSignOut');\n },\n receive: function() {\n return this.store.receive.apply(this.store, arguments);\n },\n toggleSidebar: function() {\n var element;\n $('body').toggleClass('maximized');\n element = $(' ');\n $('#top .profile').append(element);\n Em.run.later((function() {\n return element.remove();\n }), 10);\n element = $(' ');\n $('#repo').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=app");minispade.register('auth', "(function() {(function() {\n\n this.Travis.Auth = Ember.Object.extend({\n iframe: $('').hide(),\n timeout: 5000,\n state: 'signed-out',\n receivingEnd: \"\" + location.protocol + \"//\" + location.host,\n init: function() {\n var _this = this;\n this.iframe.appendTo('body');\n window.addEventListener('message', function(e) {\n return _this.receiveMessage(e);\n });\n return this.loadUser();\n },\n accessToken: (function() {\n return sessionStorage.getItem('travis.token');\n }).property(),\n loadUser: function() {\n var user;\n if (user = sessionStorage.getItem('travis.user')) {\n return this.setData({\n user: JSON.parse(user)\n });\n } else {\n return this.autoSignIn();\n }\n },\n signIn: function() {\n this.set('state', 'signing-in');\n this.trySignIn();\n return Ember.run.later(this, this.checkSignIn.bind(this), this.timeout);\n },\n autoSignIn: function() {\n if (localStorage.getItem('travis.auto_signin')) {\n return this.signIn();\n }\n },\n signOut: function() {\n localStorage.clear();\n sessionStorage.clear();\n return this.setData();\n },\n trySignIn: function() {\n return this.iframe.attr('src', \"\" + this.endpoint + \"/auth/post_message?origin=\" + this.receivingEnd);\n },\n checkSignIn: function() {\n if (this.get('state') === 'signing-in') {\n return this.forceSignIn();\n }\n },\n forceSignIn: function() {\n localStorage.setItem('travis.auto_signin', 'true');\n return window.location = \"\" + this.endpoint + \"/auth/handshake?redirect_uri=\" + location;\n },\n setData: function(data) {\n var router, user, _ref;\n if (typeof data === 'string') {\n data = JSON.parse(data);\n }\n if (data != null ? data.token : void 0) {\n this.storeToken(data.token);\n }\n if (data != null ? data.user : void 0) {\n user = this.storeUser(data.user);\n }\n this.set('state', user ? 'signed-in' : 'signed-out');\n this.set('user', user ? user : void 0);\n if (router = (_ref = Travis.app) != null ? _ref.get('router') : void 0) {\n return router.send('afterSignIn');\n }\n },\n storeToken: function(token) {\n sessionStorage.setItem('travis.token', token);\n return this.notifyPropertyChange('accessToken');\n },\n storeUser: function(user) {\n localStorage.setItem('travis.auto_signin', 'true');\n sessionStorage.setItem('travis.user', JSON.stringify(user));\n this.app.store.load(Travis.User, user);\n user = this.app.store.find(Travis.User, user.id);\n user.get('permissions');\n return user;\n },\n receiveMessage: function(event) {\n if (event.origin === this.expectedOrigin()) {\n if (event.data.token) {\n event.data.user.token = event.data.token;\n }\n this.setData(event.data);\n return console.log(\"signed in as \" + event.data.user.login);\n } else {\n return console.log(\"unexpected message \" + event.origin + \": \" + event.data);\n }\n },\n expectedOrigin: function() {\n if (this.endpoint[0] === '/') {\n return this.receivingEnd;\n } else {\n return this.endpoint;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=auth");minispade.register('controllers', "(function() {(function() {\nminispade.require('helpers');\nminispade.require('travis/ticker');\n\n Travis.reopen({\n Controller: Em.Controller.extend({\n connectOutlet: function() {\n var view, _connectedOutletViews;\n view = this._super.apply(this, arguments);\n if (view) {\n _connectedOutletViews = Travis.app.get('_connectedOutletViews');\n if (!_connectedOutletViews) {\n _connectedOutletViews = [];\n }\n _connectedOutletViews.pushObject(view);\n Travis.app.set('_connectedOutletViews', _connectedOutletViews);\n }\n return view;\n }\n }),\n TopController: Em.Controller.extend({\n userBinding: 'Travis.app.currentUser'\n }),\n ApplicationController: Em.Controller.extend(),\n MainController: Em.Controller.extend(),\n StatsLayoutController: Em.Controller.extend(),\n ProfileLayoutController: Em.Controller.extend(),\n AuthLayoutController: Em.Controller.extend()\n });\nminispade.require('controllers/accounts');\nminispade.require('controllers/builds');\nminispade.require('controllers/flash');\nminispade.require('controllers/home');\nminispade.require('controllers/profile');\nminispade.require('controllers/repos');\nminispade.require('controllers/repo');\nminispade.require('controllers/sidebar');\nminispade.require('controllers/stats');\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers");minispade.register('controllers/accounts', "(function() {(function() {\n\n Travis.AccountsController = Ember.ArrayController.extend({\n tab: 'accounts',\n init: function() {\n return this._super();\n },\n findByLogin: function(login) {\n return this.find(function(account) {\n return account.get('login') === login;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/accounts");minispade.register('controllers/builds', "(function() {(function() {\n\n Travis.BuildsController = Em.ArrayController.extend({\n repo: 'parent.repo',\n contentBinding: 'parent.builds'\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/builds");minispade.register('controllers/flash', "(function() {(function() {\n\n Travis.FlashController = Ember.ArrayController.extend({\n init: function() {\n this._super.apply(this, arguments);\n return this.set('content', Ember.A());\n },\n pushObjects: function(objects) {\n Ember.run.later(this, (function() {\n return this.removeObjects(objects);\n }), 10000);\n return this._super(objects);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/flash");minispade.register('controllers/home', "(function() {(function() {\n\n Travis.HomeLayoutController = Travis.Controller.extend();\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/home");minispade.register('controllers/profile', "(function() {(function() {\n\n Travis.ProfileController = Travis.Controller.extend({\n name: 'profile',\n userBinding: 'Travis.app.currentUser',\n accountsBinding: 'Travis.app.router.accountsController',\n account: (function() {\n var account, login;\n login = this.get('params.login') || Travis.app.get('currentUser.login');\n account = this.get('accounts').filter(function(account) {\n if (account.get('login') === login) {\n return account;\n }\n })[0];\n if (account) {\n account.select();\n }\n return account;\n }).property('accounts.length', 'params.login'),\n activate: function(action, params) {\n this.setParams(params || this.get('params'));\n return this[\"view\" + ($.camelize(action))]();\n },\n viewHooks: function() {\n this.connectTab('hooks');\n return this.set('hooks', Travis.Hook.find({\n owner_name: this.get('params.login') || Travis.app.get('currentUser.login')\n }));\n },\n viewUser: function() {\n return this.connectTab('user');\n },\n connectTab: function(tab) {\n var viewClass;\n viewClass = Travis[\"\" + ($.camelize(tab)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n setParams: function(params) {\n var key, value, _results;\n this.set('params', {});\n _results = [];\n for (key in params) {\n value = params[key];\n _results.push(this.set(\"params.\" + key, params[key]));\n }\n return _results;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/profile");minispade.register('controllers/repo', "(function() {(function() {\n\n Travis.RepoController = Travis.Controller.extend({\n bindings: [],\n init: function() {\n this._super.apply(this, arguments);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var build, builds, jobs;\n if (builds = this.get('builds')) {\n builds.forEach(function(b) {\n return b.updateTimes();\n });\n }\n if (build = this.get('build')) {\n build.updateTimes();\n }\n if (build && (jobs = build.get('jobs'))) {\n jobs.forEach(function(j) {\n return j.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(action) {\n this._unbind();\n return this[\"view\" + ($.camelize(action))]();\n },\n viewIndex: function() {\n this._bind('repo', 'controllers.reposController.firstObject');\n this._bind('build', 'repo.lastBuild');\n return this.connectTab('current');\n },\n viewCurrent: function() {\n this.connectTab('current');\n return this._bind('build', 'repo.lastBuild');\n },\n viewBuilds: function() {\n this.connectTab('builds');\n return this._bind('builds', 'repo.builds');\n },\n viewPullRequests: function() {\n this.connectTab('pull_requests');\n return this._bind('builds', 'repo.pullRequests');\n },\n viewBranches: function() {\n this.connectTab('branches');\n return this._bind('builds', 'repo.branches');\n },\n viewEvents: function() {\n this.connectTab('events');\n return this._bind('events', 'repo.events');\n },\n viewBuild: function() {\n return this.connectTab('build');\n },\n viewJob: function() {\n this._bind('build', 'job.build');\n return this.connectTab('job');\n },\n repoObserver: (function() {\n var repo;\n repo = this.get('repo');\n if (repo) {\n return repo.select();\n }\n }).observes('repo.id'),\n connectTab: function(tab) {\n var name, viewClass;\n name = tab === 'current' ? 'build' : tab;\n viewClass = name === 'builds' || name === 'branches' || name === 'pull_requests' ? Travis.BuildsView : Travis[\"\" + ($.camelize(name)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n _bind: function(to, from) {\n return this.bindings.push(Ember.oneWay(this, to, from));\n },\n _unbind: function() {\n var binding, _i, _len, _ref;\n _ref = this.bindings;\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n binding = _ref[_i];\n binding.disconnect(this);\n }\n return this.bindings.length = 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repo");minispade.register('controllers/repos', "(function() {(function() {\nminispade.require('travis/limited_array');\n\n Travis.ReposController = Ember.ArrayController.extend({\n defaultTab: 'recent',\n sortProperties: ['sortOrder'],\n init: function() {\n this.activate(this.defaultTab);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var content;\n if (content = this.get('content')) {\n content.forEach(function(r) {\n return r.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(tab, params) {\n this.set('tab', tab);\n return this[\"view\" + ($.camelize(tab))](params);\n },\n viewRecent: function() {\n var content;\n content = Travis.LimitedArray.create({\n content: Travis.Repo.find(),\n limit: 30\n });\n return this.set('content', content);\n },\n viewOwned: function() {\n return this.set('content', Travis.Repo.accessibleBy(Travis.app.get('currentUser.login')));\n },\n viewSearch: function(params) {\n return this.set('content', Travis.Repo.search(params.search));\n },\n searchObserver: (function() {\n var search;\n search = this.get('search');\n if (search) {\n return this.searchFor(search);\n } else {\n this.activate('recent');\n return 'recent';\n }\n }).observes('search'),\n searchFor: function(phrase) {\n if (this.searchLater) {\n Ember.run.cancel(this.searchLater);\n }\n return this.searchLater = Ember.run.later(this, (function() {\n return this.activate('search', {\n search: phrase\n });\n }), 500);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repos");minispade.register('controllers/sidebar', "(function() {(function() {\n\n Travis.reopen({\n SidebarController: Em.ArrayController.extend({\n init: function() {\n this.tickables = [];\n return Travis.Ticker.create({\n target: this,\n interval: Travis.INTERVALS.sponsors\n });\n },\n tick: function() {\n var tickable, _i, _len, _ref, _results;\n _ref = this.tickables;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n tickable = _ref[_i];\n _results.push(tickable.tick());\n }\n return _results;\n }\n }),\n QueuesController: Em.ArrayController.extend(),\n WorkersController: Em.ArrayController.extend({\n groups: (function() {\n var content, groups, host, worker, _i, _len, _ref;\n if (content = this.get('arrangedContent')) {\n groups = {};\n _ref = content.toArray();\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n worker = _ref[_i];\n host = worker.get('host');\n if (!groups[host]) {\n groups[host] = Em.ArrayProxy.create(Em.SortableMixin, {\n content: [],\n sortProperties: ['nameForSort']\n });\n }\n groups[host].addObject(worker);\n }\n return $.values(groups);\n }\n }).property('length')\n }),\n SponsorsController: Em.ArrayController.extend({\n page: 0,\n arrangedContent: (function() {\n return this.get('shuffled').slice(this.start(), this.end());\n }).property('shuffled.length', 'page'),\n shuffled: (function() {\n var content;\n if (content = this.get('content')) {\n return $.shuffle(content);\n } else {\n return [];\n }\n }).property('content.length'),\n tick: function() {\n return this.set('page', this.isLast() ? 0 : this.get('page') + 1);\n },\n pages: (function() {\n var length;\n length = this.get('content.length');\n if (length) {\n return parseInt(length / this.get('perPage') + 1);\n } else {\n return 1;\n }\n }).property('length'),\n isLast: function() {\n return this.get('page') === this.get('pages') - 1;\n },\n start: function() {\n return this.get('page') * this.get('perPage');\n },\n end: function() {\n return this.start() + this.get('perPage');\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/sidebar");minispade.register('controllers/stats', "(function() {(function() {\n\n Travis.StatsController = Travis.Controller.extend({\n name: 'stats',\n init: function() {\n return this._super('top');\n },\n activate: function(action, params) {}\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/stats");minispade.register('helpers', "(function() {(function() {\nminispade.require('helpers/handlebars');\nminispade.require('helpers/helpers');\nminispade.require('helpers/urls');\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers");minispade.register('helpers/handlebars', "(function() {(function() {\n var safe;\nminispade.require('ext/ember/bound_helper');\n\n safe = function(string) {\n return new Handlebars.SafeString(string);\n };\n\n Handlebars.registerHelper('tipsy', function(text, tip) {\n return safe('' + text + ' ');\n });\n\n Handlebars.registerHelper('t', function(key) {\n return safe(I18n.t(key));\n });\n\n Ember.registerBoundHelper('formatTime', function(value, options) {\n return safe(Travis.Helpers.timeAgoInWords(value) || '-');\n });\n\n Ember.registerBoundHelper('formatDuration', function(duration, options) {\n return safe(Travis.Helpers.timeInWords(duration));\n });\n\n Ember.registerBoundHelper('formatCommit', function(commit, options) {\n if (commit) {\n return safe(Travis.Helpers.formatCommit(commit.get('sha'), commit.get('branch')));\n }\n });\n\n Ember.registerBoundHelper('formatSha', function(sha, options) {\n return safe(Travis.Helpers.formatSha(sha));\n });\n\n Ember.registerBoundHelper('pathFrom', function(url, options) {\n return safe(Travis.Helpers.pathFrom(url));\n });\n\n Ember.registerBoundHelper('formatMessage', function(message, options) {\n return safe(Travis.Helpers.formatMessage(message, options));\n });\n\n Ember.registerBoundHelper('formatConfig', function(config, options) {\n return safe(Travis.Helpers.formatConfig(config));\n });\n\n Ember.registerBoundHelper('formatLog', function(log, options) {\n var item, parentView, repo;\n parentView = this.get('parentView');\n repo = parentView.get(options.repo);\n item = parentView.get(options.item);\n return Travis.Helpers.formatLog(log, repo, item) || '';\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/handlebars");minispade.register('helpers/helpers', "(function() {(function() {\nminispade.require('travis/log');\nminispade.require('config/emoij');\n\n this.Travis.Helpers = {\n compact: function(object) {\n var key, result, value, _ref;\n result = {};\n _ref = object || {};\n for (key in _ref) {\n value = _ref[key];\n if (!$.isEmpty(value)) {\n result[key] = value;\n }\n }\n return result;\n },\n safe: function(string) {\n return new Handlebars.SafeString(string);\n },\n colorForResult: function(result) {\n if (result === 0) {\n return 'green';\n } else {\n if (result === 1) {\n return 'red';\n } else {\n return null;\n }\n }\n },\n formatCommit: function(sha, branch) {\n return Travis.Helpers.formatSha(sha) + (branch ? \" (\" + branch + \")\" : '');\n },\n formatSha: function(sha) {\n return (sha || '').substr(0, 7);\n },\n formatConfig: function(config) {\n var values;\n config = $.only(config, 'rvm', 'gemfile', 'env', 'otp_release', 'php', 'node_js', 'scala', 'jdk', 'python', 'perl');\n values = $.map(config, function(value, key) {\n value = (value && value.join ? value.join(', ') : value) || '';\n return '%@: %@'.fmt($.camelize(key), value);\n });\n if (values.length === 0) {\n return '-';\n } else {\n return values.join(', ');\n }\n },\n formatMessage: function(message, options) {\n message = message || '';\n if (options.short) {\n message = message.split(/\\n/)[0];\n }\n return this._emojize(this._escape(message)).replace(/\\n/g, ' ');\n },\n formatLog: function(log, repo, item) {\n var event, url;\n event = item.constructor === Travis.Build ? 'showBuild' : 'showJob';\n url = Travis.app.get('router').urlForEvent(event, repo, item);\n return Travis.Log.filter(log, url);\n },\n pathFrom: function(url) {\n return (url || '').split('/').pop();\n },\n timeAgoInWords: function(date) {\n return $.timeago.distanceInWords(date);\n },\n durationFrom: function(started, finished) {\n started = started && this._toUtc(new Date(this._normalizeDateString(started)));\n finished = finished ? this._toUtc(new Date(this._normalizeDateString(finished))) : this._nowUtc();\n if (started && finished) {\n return Math.round((finished - started) / 1000);\n } else {\n return 0;\n }\n },\n timeInWords: function(duration) {\n var days, hours, minutes, result, seconds;\n days = Math.floor(duration / 86400);\n hours = Math.floor(duration % 86400 / 3600);\n minutes = Math.floor(duration % 3600 / 60);\n seconds = duration % 60;\n if (days > 0) {\n return 'more than 24 hrs';\n } else {\n result = [];\n if (hours === 1) {\n result.push(hours + ' hr');\n }\n if (hours > 1) {\n result.push(hours + ' hrs');\n }\n if (minutes > 0) {\n result.push(minutes + ' min');\n }\n if (seconds > 0) {\n result.push(seconds + ' sec');\n }\n if (result.length > 0) {\n return result.join(' ');\n } else {\n return '-';\n }\n }\n },\n _normalizeDateString: function(string) {\n if (window.JHW) {\n string = string.replace('T', ' ').replace(/-/g, '/');\n string = string.replace('Z', '').replace(/\\..*$/, '');\n }\n return string;\n },\n _nowUtc: function() {\n return this._toUtc(new Date());\n },\n _toUtc: function(date) {\n return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds());\n },\n _emojize: function(text) {\n var emojis;\n emojis = text.match(/:\\S+?:/g);\n if (emojis !== null) {\n $.each(emojis.uniq(), function(ix, emoji) {\n var image, strippedEmoji;\n strippedEmoji = emoji.substring(1, emoji.length - 1);\n if (EmojiDictionary.indexOf(strippedEmoji) !== -1) {\n image = ' ';\n return text = text.replace(new RegExp(emoji, 'g'), image);\n }\n });\n }\n return text;\n },\n _escape: function(text) {\n return text.replace(/&/g, '&').replace(//g, '>');\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/helpers");minispade.register('helpers/urls', "(function() {(function() {\n\n this.Travis.Urls = {\n repo: function(slug) {\n return \"/\" + slug;\n },\n builds: function(slug) {\n return \"/\" + slug + \"/builds\";\n },\n pullRequests: function(slug) {\n return \"/\" + slug + \"/pull_requests\";\n },\n branches: function(slug) {\n return \"/\" + slug + \"/branches\";\n },\n build: function(slug, id) {\n return \"/\" + slug + \"/builds/\" + id;\n },\n job: function(slug, id) {\n return \"/\" + slug + \"/jobs/\" + id;\n },\n githubCommit: function(slug, sha) {\n return \"http://github.com/\" + slug + \"/commit/\" + sha;\n },\n githubRepo: function(slug) {\n return \"http://github.com/\" + slug;\n },\n githubWatchers: function(slug) {\n return \"http://github.com/\" + slug + \"/watchers\";\n },\n githubNetwork: function(slug) {\n return \"http://github.com/\" + slug + \"/network\";\n },\n githubAdmin: function(slug) {\n return \"http://github.com/\" + slug + \"/admin/hooks#travis_minibucket\";\n },\n statusImage: function(slug, branch) {\n return (\"https://secure.travis-ci.org/\" + slug + \".png\") + (branch ? \"?branch=\" + branch : '');\n },\n email: function(email) {\n return \"mailto:\" + email;\n },\n account: function(login) {\n return \"/profile/\" + login;\n },\n user: function(login) {\n return \"/profile/\" + login + \"/me\";\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/urls");minispade.register('models', "(function() {(function() {\nminispade.require('models/extensions');\nminispade.require('models/account');\nminispade.require('models/artifact');\nminispade.require('models/branch');\nminispade.require('models/build');\nminispade.require('models/commit');\nminispade.require('models/event');\nminispade.require('models/hook');\nminispade.require('models/job');\nminispade.require('models/repo');\nminispade.require('models/sponsor');\nminispade.require('models/user');\nminispade.require('models/worker');\n\n}).call(this);\n\n})();\n//@ sourceURL=models");minispade.register('models/account', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Account = Travis.Model.extend({\n primaryKey: 'login',\n login: DS.attr('string'),\n name: DS.attr('string'),\n type: DS.attr('string'),\n reposCount: DS.attr('number'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('login'));\n }).property()\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/account");minispade.register('models/artifact', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Artifact = Travis.Model.extend({\n body: DS.attr('string'),\n init: function() {\n this._super.apply(this, arguments);\n this.set('queue', Ember.A([]));\n this.addObserver('body', this.fetchWorker);\n return this.fetchWorker();\n },\n append: function(body) {\n if (this.get('isLoaded')) {\n return this.set('body', this.get('body') + body);\n } else {\n return this.get('queue').pushObject(body);\n }\n },\n recordDidLoad: (function() {\n var queue;\n if (this.get('isLoaded')) {\n queue = this.get('queue');\n if (queue.get('length') > 0) {\n return this.append(queue.toArray().join(''));\n }\n }\n }).observes('isLoaded'),\n fetchWorker: function() {\n var body, line, match, worker;\n if (body = this.get('body')) {\n line = body.split(\"\\n\")[0];\n if (line && (match = line.match(/Using worker: (.*)/))) {\n if (worker = match[1]) {\n worker = worker.trim().split(':')[0];\n this.set('workerName', worker);\n return this.removeObserver('body', this.fetchWorker);\n }\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/artifact");minispade.register('models/branch', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Branch = Travis.Model.extend(Travis.Helpers, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n duration: DS.attr('number'),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n commit: DS.belongsTo('Travis.Commit'),\n repo: (function() {\n if (this.get('repoId')) {\n return Travis.Repo.find(this.get('repoId'));\n }\n }).property('repoId'),\n updateTimes: function() {\n this.notifyPropertyChange('started_at');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n this.Travis.Branch.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/branch");minispade.register('models/build', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Build = Travis.Model.extend(Travis.DurationCalculations, {\n eventType: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n state: DS.attr('string'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string', {\n key: 'started_at'\n }),\n finishedAt: DS.attr('string', {\n key: 'finished_at'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n commit: DS.belongsTo('Travis.Commit'),\n jobs: DS.hasMany('Travis.Job', {\n key: 'job_ids'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n isMatrix: (function() {\n return this.get('data.job_ids.length') > 1;\n }).property('data.job_ids.length'),\n isFinished: (function() {\n return this.get('state') === 'finished';\n }).property('state'),\n requiredJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return !data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n allowedFailureJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n configKeys: (function() {\n var config, headers, key, keys;\n if (!(config = this.get('config'))) {\n return [];\n }\n keys = $.intersect($.keys(config), Travis.CONFIG_KEYS);\n headers = (function() {\n var _i, _len, _ref, _results;\n _ref = ['build.job', 'build.duration', 'build.finished_at'];\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n key = _ref[_i];\n _results.push(I18n.t(key));\n }\n return _results;\n })();\n return $.map(headers.concat(keys), function(key) {\n return $.camelize(key);\n });\n }).property('config'),\n requeue: (function() {\n return Travis.ajax.post('/requests', {\n build_id: this.get('id')\n });\n })\n });\n\n this.Travis.Build.reopenClass({\n byRepoId: function(id, parameters) {\n return this.find($.extend(parameters || {}, {\n repository_id: id\n }));\n },\n olderThanNumber: function(id, build_number) {\n return this.find({\n url: \"/builds\",\n repository_id: id,\n after_number: build_number\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/build");minispade.register('models/commit', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Commit = Travis.Model.extend({\n buildId: DS.attr('number'),\n sha: DS.attr('string'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n compareUrl: DS.attr('string'),\n authorName: DS.attr('string'),\n authorEmail: DS.attr('string'),\n committerName: DS.attr('string'),\n committerEmail: DS.attr('string'),\n build: DS.belongsTo('Travis.Build', {\n key: 'buildId'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/commit");minispade.register('models/event', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Event = Travis.Model.extend({\n event: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n sourceId: DS.attr('number', {\n key: 'source_id'\n }),\n sourceType: DS.attr('string', {\n key: 'source_type'\n }),\n createdAt: DS.attr('string', {\n key: 'created_at'\n }),\n event_: (function() {\n return this.get('event');\n }).property('event'),\n result: (function() {\n return this.get('data.data.result');\n }).property('data.data.result'),\n message: (function() {\n return this.get('data.data.message');\n }).property('data.data.message'),\n source: (function() {\n var type;\n if (type = this.get('sourceType')) {\n return Travis[type].find(this.get('sourceId'));\n }\n }).property('sourceType', 'sourceId')\n });\n\n this.Travis.Event.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/event");minispade.register('models/extensions', "(function() {(function() {\n\n Travis.DurationCalculations = Ember.Mixin.create({\n duration: (function() {\n var duration;\n if (duration = this.get('_duration')) {\n return duration;\n } else {\n return Travis.Helpers.durationFrom(this.get('startedAt'), this.get('finishedAt'));\n }\n }).property('_duration', 'finishedAt', 'startedAt'),\n updateTimes: function() {\n this.notifyPropertyChange('_duration');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/extensions");minispade.register('models/hook', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Hook = Travis.Model.extend({\n name: DS.attr('string'),\n ownerName: DS.attr('string'),\n description: DS.attr('string'),\n active: DS.attr('boolean'),\n account: (function() {\n return this.get('slug').split('/')[0];\n }).property('slug'),\n slug: (function() {\n return \"\" + (this.get('ownerName')) + \"/\" + (this.get('name'));\n }).property('ownerName', 'name'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('slug'));\n }).property(),\n urlGithubAdmin: (function() {\n return \"http://github.com/\" + (this.get('slug')) + \"/admin/hooks#travis_minibucket\";\n }).property(),\n toggle: function() {\n var transaction;\n transaction = this.get('store').transaction();\n transaction.add(this);\n this.set('active', !this.get('active'));\n return transaction.commit();\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/hook");minispade.register('models/job', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Job = Travis.Model.extend(Travis.DurationCalculations, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n buildId: DS.attr('number'),\n commitId: DS.attr('number'),\n logId: DS.attr('number'),\n queue: DS.attr('string'),\n state: DS.attr('string'),\n number: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n allowFailure: DS.attr('boolean', {\n key: 'allow_failure'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n build: DS.belongsTo('Travis.Build', {\n key: 'build_id'\n }),\n commit: DS.belongsTo('Travis.Commit', {\n key: 'commit_id'\n }),\n log: DS.belongsTo('Travis.Artifact', {\n key: 'log_id'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n sponsor: (function() {\n var worker;\n worker = this.get('log.workerName');\n if (worker && worker.length) {\n return Travis.WORKERS[worker] || {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n };\n }\n }).property('log.workerName'),\n configValues: (function() {\n var config;\n if (config = this.get('config')) {\n return $.values($.only.apply(config, Travis.CONFIG_KEYS));\n } else {\n return [];\n }\n }).property('config'),\n appendLog: function(text) {\n var log;\n if (log = this.get('log')) {\n return log.append(text);\n }\n },\n subscribe: function() {\n var id;\n if (id = this.get('id')) {\n return Travis.app.pusher.subscribe(\"job-\" + id);\n }\n },\n onStateChange: (function() {\n if (this.get('state') === 'finished') {\n return Travis.app.pusher.unsubscribe(\"job-\" + (this.get('id')));\n }\n }).observes('state')\n });\n\n this.Travis.Job.reopenClass({\n queued: function(queue) {\n this.find();\n return Travis.app.store.filter(this, function(job) {\n var queued;\n queued = ['created', 'queued'].indexOf(job.get('state')) !== -1;\n return queued && (!queue || job.get('queue') === (\"builds.\" + queue));\n });\n },\n findMany: function(ids) {\n return Travis.app.store.findMany(this, ids);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/job");minispade.register('models/repo', "(function() {(function() {\nminispade.require('travis/expandable_record_array');\nminispade.require('travis/model');\n\n this.Travis.Repo = Travis.Model.extend({\n slug: DS.attr('string'),\n description: DS.attr('string'),\n lastBuildId: DS.attr('number'),\n lastBuildNumber: DS.attr('string'),\n lastBuildResult: DS.attr('number'),\n lastBuildStartedAt: DS.attr('string'),\n lastBuildFinishedAt: DS.attr('string'),\n lastBuild: DS.belongsTo('Travis.Build'),\n builds: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'push'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n pullRequests: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'pull_request'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n branches: (function() {\n return Travis.Branch.byRepoId(this.get('id'));\n }).property(),\n events: (function() {\n return Travis.Event.byRepoId(this.get('id'));\n }).property(),\n owner: (function() {\n return (this.get('slug') || '').split('/')[0];\n }).property('slug'),\n name: (function() {\n return (this.get('slug') || '').split('/')[1];\n }).property('slug'),\n lastBuildDuration: (function() {\n var duration;\n duration = this.get('data.last_build_duration');\n if (!duration) {\n duration = Travis.Helpers.durationFrom(this.get('lastBuildStartedAt'), this.get('lastBuildFinishedAt'));\n }\n return duration;\n }).property('data.last_build_duration', 'lastBuildStartedAt', 'lastBuildFinishedAt'),\n sortOrder: (function() {\n var lastBuildFinishedAt;\n if (lastBuildFinishedAt = this.get('lastBuildFinishedAt')) {\n return -new Date(lastBuildFinishedAt).getTime();\n } else {\n return -new Date('9999').getTime() - parseInt(this.get('lastBuildId'));\n }\n }).property('lastBuildFinishedAt', 'lastBuildId'),\n stats: (function() {\n var _this = this;\n return this.get('_stats') || $.get(\"https://api.github.com/repos/\" + (this.get('slug')), function(data) {\n _this.set('_stats', data);\n return _this.notifyPropertyChange('stats');\n }) && {};\n }).property(),\n updateTimes: function() {\n return this.notifyPropertyChange('lastBuildDuration');\n }\n });\n\n this.Travis.Repo.reopenClass({\n recent: function() {\n return this.find();\n },\n ownedBy: function(login) {\n return this.find({\n owner_name: login,\n orderBy: 'name'\n });\n },\n accessibleBy: function(login) {\n return this.find({\n member: login,\n orderBy: 'name'\n });\n },\n search: function(query) {\n return this.find({\n search: query,\n orderBy: 'name'\n });\n },\n bySlug: function(slug) {\n var repo;\n repo = $.select(this.find().toArray(), function(repo) {\n return repo.get('slug') === slug;\n });\n if (repo.length > 0) {\n return repo;\n } else {\n return this.find({\n slug: slug\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/repo");minispade.register('models/sponsor', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Sponsor = Travis.Model.extend({\n type: DS.attr('string'),\n url: DS.attr('string'),\n link: DS.attr('string'),\n image: (function() {\n return \"/images/sponsors/\" + (this.get('data.image'));\n }).property('data.image')\n });\n\n Travis.Sponsor.reopenClass({\n decks: function() {\n return this.platinum().concat(this.gold());\n },\n platinum: function() {\n var platinum, sponsor, _i, _len, _results;\n platinum = this.byType('platinum').toArray();\n _results = [];\n for (_i = 0, _len = platinum.length; _i < _len; _i++) {\n sponsor = platinum[_i];\n _results.push([sponsor]);\n }\n return _results;\n },\n gold: function() {\n var gold, _results;\n gold = this.byType('gold').toArray();\n _results = [];\n while (gold.length > 0) {\n _results.push(gold.splice(0, 2));\n }\n return _results;\n },\n links: function() {\n return this.byType('silver');\n },\n byType: function() {\n var types;\n types = Array.prototype.slice.apply(arguments);\n return Travis.Sponsor.filter(function(sponsor) {\n return types.indexOf(sponsor.get('type')) !== -1;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/sponsor");minispade.register('models/user', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('travis/model');\n\n this.Travis.User = Travis.Model.extend({\n name: DS.attr('string'),\n email: DS.attr('string'),\n login: DS.attr('string'),\n token: DS.attr('string'),\n locale: DS.attr('string'),\n gravatarId: DS.attr('string'),\n isSyncing: DS.attr('boolean'),\n syncedAt: DS.attr('string'),\n repoCount: DS.attr('number'),\n init: function() {\n if (this.get('isSyncing')) {\n this.poll();\n }\n this._super();\n return Ember.run.next(this, function() {\n var transaction;\n transaction = this.get('store').transaction();\n return transaction.add(this);\n });\n },\n urlGithub: (function() {\n return \"https://github.com/\" + (this.get('login'));\n }).property(),\n permissions: (function() {\n var _this = this;\n if (!this.permissions) {\n this.permissions = Ember.ArrayProxy.create({\n content: []\n });\n Travis.ajax.get('/users/permissions', function(data) {\n return _this.permissions.set('content', data.permissions);\n });\n }\n return this.permissions;\n }).property(),\n updateLocale: function(locale) {\n var observer, self, transaction;\n this.setWithSession('locale', locale);\n transaction = this.get('transaction');\n transaction.commit();\n self = this;\n observer = function() {\n if (!self.get('isSaving')) {\n self.removeObserver('isSaving', observer);\n transaction = self.get('store').transaction();\n return transaction.add(self);\n }\n };\n return this.addObserver('isSaving', observer);\n },\n type: (function() {\n return 'user';\n }).property(),\n sync: function() {\n Travis.ajax.post('/users/sync');\n this.setWithSession('isSyncing', true);\n return this.poll();\n },\n poll: function() {\n var _this = this;\n return Travis.ajax.get('/users', function(data) {\n if (data.user.is_syncing) {\n return Ember.run.later(_this, _this.poll.bind(_this), 3000);\n } else {\n _this.set('isSyncing', false);\n return _this.setWithSession('syncedAt', data.user.synced_at);\n }\n });\n },\n setWithSession: function(name, value) {\n var user;\n this.set(name, value);\n user = JSON.parse(typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.getItem('travis.user') : void 0);\n user[$.underscore(name)] = this.get(name);\n return typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.setItem('travis.user', JSON.stringify(user)) : void 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/user");minispade.register('models/worker', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Worker = Travis.Model.extend({\n state: DS.attr('string'),\n name: DS.attr('string'),\n host: DS.attr('string'),\n lastSeenAt: DS.attr('string'),\n payload: (function() {\n return this.get('data.payload');\n }).property('data.payload'),\n number: (function() {\n return this.get('name').match(/\\d+$/)[0];\n }).property('name'),\n isWorking: (function() {\n return this.get('state') === 'working';\n }).property('state'),\n repo: (function() {\n return Travis.Repo.find(this.get('payload.repository.id') || this.get('payload.repo.id'));\n }).property('payload.repository.id', 'payload.repo.id'),\n job_id: (function() {\n return this.get('payload.job.id');\n }).property('payload.job.id'),\n job: (function() {\n return Travis.Job.find(this.get('job_id'));\n }).property('job_id'),\n nameForSort: (function() {\n var id, match, name;\n if (name = this.get('name')) {\n match = name.match(/(.*?)-(\\d+)/);\n if (match) {\n name = match[1];\n id = match[2].toString();\n if (id.length < 2) {\n id = \"00\" + id;\n } else if (id.length < 3) {\n id = \"0\" + id;\n }\n return \"\" + name + \"-\" + id;\n }\n }\n }).property('name')\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/worker");minispade.register('pusher', "(function() {(function() {\n\n Travis.Pusher = function(key) {\n if (key) {\n this.init(key);\n }\n return this;\n };\n\n $.extend(Travis.Pusher, {\n CHANNELS: ['common'],\n CHANNEL_PREFIX: ''\n });\n\n $.extend(Travis.Pusher.prototype, {\n active_channels: [],\n init: function(key) {\n var channel, _i, _len, _ref, _results;\n Pusher.warn = this.warn.bind(this);\n this.pusher = new Pusher(key);\n _ref = Travis.Pusher.CHANNELS;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n channel = _ref[_i];\n _results.push(this.subscribe(channel));\n }\n return _results;\n },\n subscribe: function(channel) {\n var _this = this;\n if (this.pusher && this.active_channels.indexOf(channel) === -1) {\n this.active_channels.push(channel);\n return this.pusher.subscribe(this.prefix(channel)).bind_all(function(event, data) {\n return _this.receive(event, data);\n });\n }\n },\n unsubscribe: function(channel) {\n var ix;\n ix = this.active_channels.indexOf(channel);\n if (this.pusher && ix === -1) {\n this.active_channels.splice(ix, 1);\n return this.pusher.unsubscribe(this.prefix(channel));\n }\n },\n prefix: function(channel) {\n return \"\" + Travis.Pusher.CHANNEL_PREFIX + channel;\n },\n receive: function(event, data) {\n if (event.substr(0, 6) === 'pusher') {\n return;\n }\n if (data.id) {\n data = this.normalize(event, data);\n }\n return Ember.run.next(function() {\n return Travis.app.store.receive(event, data);\n });\n },\n normalize: function(event, data) {\n switch (event) {\n case 'build:started':\n case 'build:finished':\n return data;\n case 'job:created':\n case 'job:started':\n case 'job:finished':\n case 'job:log':\n if (data.queue) {\n data.queue = data.queue.replace('builds.', '');\n }\n return {\n job: data\n };\n case 'worker:added':\n case 'worker:updated':\n case 'worker:removed':\n return {\n worker: data\n };\n }\n },\n warn: function(type, warning) {\n if (!this.ignoreWarning(warning)) {\n return console.warn(warning);\n }\n },\n ignoreWarning: function(warning) {\n var message, _ref;\n if (message = (_ref = warning.data) != null ? _ref.message : void 0) {\n return message.indexOf('Existing subscription') === 0 || message.indexOf('No current subscription') === 0;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=pusher");minispade.register('routes', "(function() {(function() {\n var defaultRoute, lineNumberRoute, nonHashRouteMatcher, resolvePath;\nminispade.require('travis/location');\n\n defaultRoute = Ember.Route.extend({\n route: '/',\n index: 1000\n });\n\n lineNumberRoute = Ember.Route.extend({\n route: '#L:number',\n index: 1,\n connectOutlets: function(router) {\n return router.saveLineNumberHash();\n },\n routeMatcher: Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([0-9]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(regex);\n }\n });\n }\n }).cacheable()\n });\n\n nonHashRouteMatcher = Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([^/#]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(\"^/?\" + regex);\n }\n });\n }\n }).cacheable();\n\n resolvePath = function(manager, path) {\n var childStates, match, resolvedState, state, states;\n if (this.get('isLeafRoute')) {\n return Ember.A();\n }\n childStates = this.get('childStates');\n childStates = Ember.A(childStates.filterProperty('isRoutable'));\n childStates = childStates.sort(function(a, b) {\n var aDynamicSegments, aIndex, aRoute, bDynamicSegments, bIndex, bRoute;\n aDynamicSegments = a.get('routeMatcher.identifiers.length');\n bDynamicSegments = b.get('routeMatcher.identifiers.length');\n aRoute = a.get('route');\n bRoute = b.get('route');\n aIndex = a.get('index');\n bIndex = b.get('index');\n if (aIndex && bIndex) {\n return aIndex - bIndex;\n }\n if (aRoute.indexOf(bRoute) === 0) {\n return -1;\n } else if (bRoute.indexOf(aRoute) === 0) {\n return 1;\n }\n if (aDynamicSegments !== bDynamicSegments) {\n return aDynamicSegments - bDynamicSegments;\n }\n return b.get('route.length') - a.get('route.length');\n });\n match = null;\n state = childStates.find(function(state) {\n var matcher;\n matcher = state.get('routeMatcher');\n if (match = matcher.match(path)) {\n return match;\n }\n });\n Ember.assert(\"Could not find state for path \" + path, !!state);\n resolvedState = Ember._ResolvedState.create({\n manager: manager,\n state: state,\n match: match\n });\n states = state.resolvePath(manager, match.remaining);\n return Ember.A([resolvedState]).pushObjects(states);\n };\n\n Travis.Router = Ember.Router.extend({\n location: 'travis',\n enableLogging: true,\n initialState: 'loading',\n showRoot: Ember.Route.transitionTo('root.home.show'),\n showStats: Ember.Route.transitionTo('root.stats'),\n showRepo: Ember.Route.transitionTo('root.home.repo.show'),\n showBuilds: Ember.Route.transitionTo('root.home.repo.builds.index'),\n showBuild: Ember.Route.transitionTo('root.home.repo.builds.show'),\n showPullRequests: Ember.Route.transitionTo('root.home.repo.pullRequests'),\n showBranches: Ember.Route.transitionTo('root.home.repo.branches'),\n showEvents: Ember.Route.transitionTo('root.home.repo.events'),\n showJob: Ember.Route.transitionTo('root.home.repo.job'),\n showProfile: Ember.Route.transitionTo('root.profile'),\n showAccount: Ember.Route.transitionTo('root.profile.account'),\n showUserProfile: Ember.Route.transitionTo('root.profile.account.profile'),\n saveLineNumberHash: function(path) {\n return Ember.run.next(this, function() {\n var match;\n path = path || this.get('location').getURL();\n if (match = path.match(/#L\\d+$/)) {\n return this.set('repoController.lineNumberHash', match[0]);\n }\n });\n },\n reload: function() {\n var url;\n url = this.get('location').getURL();\n this.transitionTo('loading');\n return this.route(url);\n },\n signedIn: function() {\n return !!Travis.app.get('auth.user');\n },\n needsAuth: function(path) {\n return path.indexOf('/profile') === 0;\n },\n afterSignOut: function() {\n return this.authorize('/');\n },\n authorize: function(path) {\n if (!this.signedIn() && this.needsAuth(path)) {\n sessionStorage.setItem('travis.after_signin_path', path);\n this.transitionTo('root.auth');\n return Travis.app.autoSignIn();\n } else {\n this.transitionTo('root');\n return this.route(path);\n }\n },\n loading: Ember.Route.extend({\n routePath: function(router, path) {\n router.saveLineNumberHash(path);\n return router.authorize(path);\n }\n }),\n root: Ember.Route.extend({\n route: '/',\n loading: Ember.State.extend(),\n afterSignIn: (function() {}),\n auth: Ember.Route.extend({\n route: '/auth',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('authLayout');\n $('body').attr('id', 'auth');\n router.get('authLayoutController').connectOutlet('top', 'top');\n return router.get('authLayoutController').connectOutlet('main', 'signin');\n },\n afterSignIn: function(router) {\n var path;\n path = sessionStorage.getItem('travis.after_signin_path');\n sessionStorage.removeItem('travis.after_signin_path');\n router.transitionTo('root');\n return router.route(path || '/');\n }\n }),\n stats: Ember.Route.extend({\n route: '/stats',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('statsLayout');\n $('body').attr('id', 'stats');\n router.get('statsLayoutController').connectOutlet('top', 'top');\n return router.get('statsLayoutController').connectOutlet('main', 'stats');\n }\n }),\n profile: Ember.Route.extend({\n initialState: 'index',\n route: '/profile',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('profileLayout');\n $('body').attr('id', 'profile');\n router.get('accountsController').set('content', Travis.Account.find());\n router.get('profileLayoutController').connectOutlet('top', 'top');\n return router.get('profileLayoutController').connectOutlet('left', 'accounts');\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('profileLayoutController').connectOutlet('main', 'profile');\n return router.get('profileController').activate('hooks');\n }\n }),\n account: Ember.Route.extend({\n initialState: 'index',\n route: '/:login',\n connectOutlets: function(router, account) {\n var params;\n if (account) {\n params = {\n login: account.get('login')\n };\n return router.get('profileController').setParams(params);\n } else {\n return router.send('showProfile');\n }\n },\n deserialize: function(router, params) {\n var account, controller, deferred, observer;\n controller = router.get('accountsController');\n if (!controller.get('content')) {\n controller.set('content', Travis.Account.find());\n }\n account = controller.findByLogin(params.login);\n if (account) {\n return account;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (account = controller.findByLogin(params.login)) {\n controller.removeObserver('content.length', observer);\n return deferred.resolve(account);\n }\n };\n controller.addObserver('content.length', observer);\n return deferred.promise();\n }\n },\n serialize: function(router, account) {\n if (account) {\n return {\n login: account.get('login')\n };\n } else {\n return {};\n }\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('profileController').activate('hooks');\n }\n }),\n profile: Ember.Route.extend({\n route: '/profile',\n connectOutlets: function(router) {\n return router.get('profileController').activate('user');\n }\n })\n })\n }),\n home: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('homeLayout');\n $('body').attr('id', 'home');\n router.get('homeLayoutController').connectOutlet('left', 'repos');\n router.get('homeLayoutController').connectOutlet('right', 'sidebar');\n router.get('homeLayoutController').connectOutlet('top', 'top');\n router.get('homeLayoutController').connectOutlet('main', 'repo');\n router.get('homeLayoutController').connectOutlet('flash', 'flash');\n return router.get('repoController').set('repos', router.get('reposController'));\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n showWithLineNumber: Ember.Route.extend({\n route: '/#/L:number',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n }\n }),\n repo: Ember.Route.extend({\n route: '/:owner/:name',\n routeMatcher: nonHashRouteMatcher,\n connectOutlets: function(router, repo) {\n return router.get('repoController').set('repo', repo);\n },\n deserialize: function(router, params) {\n var deferred, observer, repos, slug;\n slug = \"\" + params.owner + \"/\" + params.name;\n repos = Travis.Repo.bySlug(slug);\n deferred = $.Deferred();\n observer = function() {\n if (repos.get('isLoaded')) {\n repos.removeObserver('isLoaded', observer);\n return deferred.resolve(repos.objectAt(0));\n }\n };\n if (repos.length) {\n deferred.resolve(repos[0]);\n } else {\n repos.addObserver('isLoaded', observer);\n }\n return deferred.promise();\n },\n serialize: function(router, repo) {\n if (repo) {\n return {\n owner: repo.get('owner'),\n name: repo.get('name')\n };\n } else {\n return {};\n }\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('current');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n builds: Ember.Route.extend({\n route: '/builds',\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('builds');\n }\n }),\n show: Ember.Route.extend({\n route: '/:build_id',\n connectOutlets: function(router, build) {\n if (!build.get) {\n build = Travis.Build.find(build);\n }\n router.get('repoController').set('build', build);\n return router.get('repoController').activate('build');\n },\n serialize: function(router, build) {\n if (build.get) {\n return {\n build_id: build.get('id')\n };\n } else {\n return {\n build_id: build\n };\n }\n },\n deserialize: function(router, params) {\n var build, deferred, observer;\n build = Travis.Build.find(params.build_id);\n if (build.get('id')) {\n return build;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (build.get('id')) {\n build.removeObserver('id', observer);\n return deferred.resolve(build);\n }\n };\n build.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n }),\n pullRequests: Ember.Route.extend({\n route: '/pull_requests',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('pull_requests');\n }\n }),\n branches: Ember.Route.extend({\n route: '/branches',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('branches');\n }\n }),\n events: Ember.Route.extend({\n route: '/events',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('events');\n }\n }),\n job: Ember.Route.extend({\n route: '/jobs/:job_id',\n connectOutlets: function(router, job) {\n if (!job.get) {\n job = Travis.Job.find(job);\n }\n router.get('repoController').set('job', job);\n return router.get('repoController').activate('job');\n },\n serialize: function(router, job) {\n if (job.get) {\n return {\n job_id: job.get('id')\n };\n } else {\n return {\n job_id: job\n };\n }\n },\n deserialize: function(router, params) {\n var deferred, job, observer;\n job = Travis.Job.find(params.job_id);\n if (job.get('id')) {\n return job;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (job.get('id')) {\n job.removeObserver('id', observer);\n return deferred.resolve(job);\n }\n };\n job.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n })\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=routes");minispade.register('slider', "(function() {(function() {\n\n this.Travis.Slider = function() {\n if ((typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.getItem('travis.maximized') : void 0) === 'true') {\n this.minimize();\n }\n return this;\n };\n\n $.extend(Travis.Slider.prototype, {\n persist: function() {\n return typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.setItem('travis.maximized', this.isMinimized()) : void 0;\n },\n isMinimized: function() {\n return $('body').hasClass('maximized');\n },\n minimize: function() {\n return $('body').addClass('maximized');\n },\n toggle: function() {\n var element;\n $('body').toggleClass('maximized');\n this.persist();\n element = $(' ');\n $('#top .profile').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=slider");minispade.register('store', "(function() {(function() {\n var DATA_PROXY,\n __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };\nminispade.require('store/rest_adapter');\n\n DATA_PROXY = {\n get: function(name) {\n return this.savedData[name];\n }\n };\n\n Travis.Store = DS.Store.extend({\n revision: 4,\n adapter: Travis.RestAdapter.create(),\n load: function(type, id, hash) {\n var record, result;\n result = this._super.apply(this, arguments);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n record.set('incomplete', false);\n record.set('complete', true);\n }\n return result;\n },\n merge: function(type, id, hash) {\n var clientId, data, dataCache, primaryKey, record, recordCache, typeMap;\n if (hash === void 0) {\n hash = id;\n primaryKey = type.proto().primaryKey;\n Ember.assert(\"A data hash was loaded for a record of type \" + type.toString() + \" but no primary key '\" + primaryKey + \"' was provided.\", hash[primaryKey]);\n id = hash[primaryKey];\n }\n typeMap = this.typeMapFor(type);\n dataCache = typeMap.cidToHash;\n clientId = typeMap.idToCid[id];\n recordCache = this.get('recordCache');\n if (clientId !== void 0) {\n if (data = dataCache[clientId]) {\n $.extend(data, hash);\n } else {\n dataCache[clientId] = hash;\n }\n if (record = recordCache[clientId]) {\n record.send('didChangeData');\n }\n } else {\n clientId = this.pushHash(hash, id, type);\n }\n if (clientId) {\n DATA_PROXY.savedData = hash;\n this.updateRecordArrays(type, clientId, DATA_PROXY);\n return {\n id: id,\n clientId: clientId\n };\n }\n },\n receive: function(event, data) {\n var job, mappings, name, type, _ref;\n _ref = event.split(':'), name = _ref[0], type = _ref[1];\n mappings = this.adapter.get('mappings');\n type = mappings[name];\n if (event === 'job:log') {\n if (job = this.find(Travis.Job, data['job']['id'])) {\n return job.appendLog(data['job']['_log']);\n }\n } else if (data[type.singularName()]) {\n return this._loadOne(this, type, data);\n } else if (data[type.pluralName()]) {\n return this._loadMany(this, type, data);\n } else {\n if (!type) {\n throw \"can't load data for \" + name;\n }\n }\n },\n _loadOne: function(store, type, json) {\n var result, root;\n root = type.singularName();\n if (type === Travis.Build && json.repository) {\n result = this.loadIncomplete(Travis.Repo, json.repository);\n }\n return this.loadIncomplete(type, json[root]);\n },\n loadIncomplete: function(type, hash) {\n var record, result;\n result = this.merge(type, hash);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n if (!record.get('complete')) {\n record.set('incomplete', true);\n record.loadedAttributes = Object.keys(hash);\n }\n this._updateAssociations(type, type.singularName(), hash);\n return record;\n }\n },\n _loadMany: function(store, type, json) {\n var root;\n root = type.pluralName();\n this.adapter.sideload(store, type, json, root);\n return this.loadMany(type, json[root]);\n },\n _updateAssociations: function(type, name, data) {\n var _this = this;\n return Em.get(type, 'associationsByName').forEach(function(key, meta) {\n var clientId, dataProxy, id, ids, parent, _ref;\n if (meta.kind === 'belongsTo') {\n id = data[\"\" + key + \"_id\"];\n if (clientId = _this.typeMapFor(meta.type).idToCid[id]) {\n if (parent = _this.findByClientId(meta.type, clientId, id)) {\n dataProxy = parent.get('data');\n if (ids = dataProxy.get(\"\" + name + \"_ids\")) {\n if (_ref = data.id, __indexOf.call(ids, _ref) < 0) {\n ids.pushObject(data.id);\n }\n return parent.send('didChangeData');\n }\n }\n }\n }\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store");minispade.register('store/fixture_adapter', "(function() {(function() {\n\n this.Travis.FixtureAdapter = DS.Adapter.extend({\n find: function(store, type, id) {\n var fixtures;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n if (fixtures.hasLoaded) {\n return;\n }\n return setTimeout((function() {\n store.loadMany(type, fixtures);\n return fixtures.hasLoaded = true;\n }), 300);\n },\n findMany: function() {\n return this.find.apply(this, arguments);\n },\n findAll: function(store, type) {\n var fixtures, ids;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n ids = fixtures.map(function(item, index, self) {\n return item.id;\n });\n return store.loadMany(type, ids, fixtures);\n },\n findQuery: function(store, type, params, array) {\n var fixture, fixtures, hashes, key, matches, value;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n hashes = (function() {\n var _i, _len, _results;\n _results = [];\n for (_i = 0, _len = fixtures.length; _i < _len; _i++) {\n fixture = fixtures[_i];\n matches = (function() {\n var _results1;\n _results1 = [];\n for (key in params) {\n value = params[key];\n _results1.push(key === 'orderBy' || fixture[key] === value);\n }\n return _results1;\n })();\n if (matches.reduce(function(a, b) {\n return a && b;\n })) {\n _results.push(fixture);\n } else {\n _results.push(null);\n }\n }\n return _results;\n })();\n return array.load(hashes.compact());\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/fixture_adapter");minispade.register('store/rest_adapter', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('models');\n\n this.Travis.RestAdapter = DS.RESTAdapter.extend({\n mappings: {\n repositories: Travis.Repo,\n repository: Travis.Repo,\n repos: Travis.Repo,\n repo: Travis.Repo,\n builds: Travis.Build,\n build: Travis.Build,\n commits: Travis.Commit,\n commit: Travis.Commit,\n jobs: Travis.Job,\n job: Travis.Job,\n account: Travis.Account,\n accounts: Travis.Account,\n worker: Travis.Worker,\n workers: Travis.Worker\n },\n plurals: {\n repositories: 'repositories',\n repository: 'repositories',\n repo: 'repos',\n repos: 'repos',\n build: 'builds',\n branch: 'branches',\n job: 'jobs',\n worker: 'workers',\n profile: 'profile'\n },\n ajax: function() {\n return Travis.ajax.ajax.apply(this, arguments);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/rest_adapter");minispade.register('tailing', "(function() {(function() {\n\n this.Travis.Tailing = function() {\n this.position = $(window).scrollTop();\n $(window).scroll(this.onScroll.bind(this));\n return this;\n };\n\n $.extend(Travis.Tailing.prototype, {\n options: {\n timeout: 200\n },\n run: function() {\n this.autoScroll();\n this.positionButton();\n if (this.active()) {\n return Ember.run.later(this.run.bind(this), this.options.timeout);\n }\n },\n toggle: function(event) {\n if (this.active()) {\n return this.stop();\n } else {\n return this.start();\n }\n },\n active: function() {\n return $('#tail').hasClass('active');\n },\n start: function() {\n $('#tail').addClass('active');\n return this.run();\n },\n stop: function() {\n return $('#tail').removeClass('active');\n },\n autoScroll: function() {\n var log, logBottom, win, winBottom;\n if (!this.active()) {\n return;\n }\n win = $(window);\n log = $('#log');\n logBottom = log.offset().top + log.outerHeight() + 40;\n winBottom = win.scrollTop() + win.height();\n if (logBottom - winBottom > 0) {\n return win.scrollTop(logBottom - win.height());\n }\n },\n onScroll: function() {\n var position;\n this.positionButton();\n position = $(window).scrollTop();\n if (position < this.position) {\n this.stop();\n }\n return this.position = position;\n },\n positionButton: function() {\n var max, offset, tail;\n tail = $('#tail');\n if (tail.length === 0) {\n return;\n }\n offset = $(window).scrollTop() - $('#log').offset().top;\n max = $('#log').height() - $('#tail').height() + 5;\n if (offset > max) {\n offset = max;\n }\n if (offset > 0) {\n return tail.css({\n top: offset - 2\n });\n } else {\n return tail.css({\n top: 0\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=tailing");minispade.register('views', "(function() {(function() {\nminispade.require('ext/ember/namespace');\n\n this.Travis.reopen({\n View: Em.View.extend({\n popup: function(event) {\n this.popupCloseAll();\n return $(\"#\" + event.target.name).toggleClass('display');\n },\n popupClose: function(event) {\n return $(event.target).closest('.popup').removeClass('display');\n },\n popupCloseAll: function() {\n return $('.popup').removeClass('display');\n }\n })\n });\n\n this.Travis.reopen({\n HomeLayoutView: Travis.View.extend({\n templateName: 'layouts/home'\n }),\n AuthLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n }),\n ProfileLayoutView: Travis.View.extend({\n templateName: 'layouts/profile'\n }),\n StatsLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n })\n });\nminispade.require('views/accounts');\nminispade.require('views/application');\nminispade.require('views/build');\nminispade.require('views/events');\nminispade.require('views/flash');\nminispade.require('views/job');\nminispade.require('views/repo');\nminispade.require('views/profile');\nminispade.require('views/sidebar');\nminispade.require('views/stats');\nminispade.require('views/signin');\nminispade.require('views/top');\n\n}).call(this);\n\n})();\n//@ sourceURL=views");minispade.register('views/accounts', "(function() {(function() {\n\n this.Travis.reopen({\n AccountsView: Travis.View.extend({\n tabBinding: 'controller.tab',\n templateName: 'profile/accounts',\n classAccounts: (function() {\n if (this.get('tab') === 'accounts') {\n return 'active';\n }\n }).property('tab')\n }),\n AccountsListView: Em.CollectionView.extend({\n elementId: 'accounts',\n accountBinding: 'content',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n accountBinding: 'content',\n typeBinding: 'content.type',\n selectedBinding: 'account.selected',\n classNames: ['account'],\n classNameBindings: ['type', 'selected'],\n name: (function() {\n return this.get('content.name') || this.get('content.login');\n }).property('content.login', 'content.name'),\n urlAccount: (function() {\n return Travis.Urls.account(this.get('account.login'));\n }).property('account.login')\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/accounts");minispade.register('views/application', "(function() {(function() {\n\n this.Travis.reopen({\n ApplicationView: Travis.View.extend({\n templateName: 'application',\n classNames: ['application'],\n popup: function(event) {\n return console.log(event);\n },\n localeDidChange: (function() {\n var locale;\n if (locale = Travis.app.get('auth.user.locale')) {\n Travis.setLocale(locale);\n return Travis.app.get('router').reload();\n }\n }).observes('Travis.app.auth.user.locale'),\n click: function(event) {\n var targetAndParents;\n targetAndParents = $(event.target).parents().andSelf();\n if (!(targetAndParents.hasClass('open-popup') || targetAndParents.hasClass('popup'))) {\n this.popupCloseAll();\n }\n if (!targetAndParents.hasClass('menu')) {\n return $('.menu').removeClass('display');\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/application");minispade.register('views/build', "(function() {(function() {\n\n this.Travis.reopen({\n BuildsView: Travis.View.extend({\n templateName: 'builds/list',\n buildsBinding: 'controller.builds',\n showMore: function() {\n var id, number;\n id = this.get('controller.repo.id');\n number = this.get('builds.lastObject.number');\n return this.get('builds').load(Travis.Build.olderThanNumber(id, number));\n },\n ShowMoreButton: Em.View.extend({\n tagName: 'button',\n classNameBindings: ['isLoading'],\n attributeBindings: ['disabled'],\n isLoadingBinding: 'controller.builds.isLoading',\n template: Em.Handlebars.compile('{{view.label}}'),\n disabledBinding: 'isLoading',\n label: (function() {\n if (this.get('isLoading')) {\n return 'Loading';\n } else {\n return 'Show more';\n }\n }).property('isLoading'),\n click: function() {\n return this.get('parentView').showMore();\n }\n })\n }),\n BuildsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'controller.repo',\n buildBinding: 'context',\n commitBinding: 'build.commit',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha')\n }),\n BuildView: Travis.View.extend({\n templateName: 'builds/show',\n elementId: 'build',\n classNameBindings: ['color', 'loading'],\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n commitBinding: 'build.commit',\n currentItemBinding: 'build',\n loading: (function() {\n return !this.get('build.isComplete');\n }).property('build.isComplete'),\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/build");minispade.register('views/events', "(function() {(function() {\n\n this.Travis.reopen({\n EventsView: Travis.View.extend({\n templateName: 'events/list',\n eventsBinding: 'controller.events'\n }),\n EventsItemView: Travis.View.extend({\n tagName: 'tr'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/events");minispade.register('views/flash', "(function() {(function() {\n\n this.Travis.reopen({\n FlashView: Travis.View.extend({\n elementId: 'flash',\n tagName: 'ul',\n templateName: 'layouts/flash'\n }),\n FlashItemView: Travis.View.extend({\n tagName: 'li',\n classNameBindings: ['type'],\n type: (function() {\n return this.get('flash') && Ember.keys(this.get('flash'))[0];\n }).property('flash'),\n message: (function() {\n return this.get('flash') && this.get('flash')[this.get('type')];\n }).property('flash'),\n close: function(event) {\n return this.get('controller').removeObject(this.get('flash'));\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/flash");minispade.register('views/job', "(function() {(function() {\n\n this.Travis.reopen({\n JobsView: Travis.View.extend({\n templateName: 'jobs/list',\n buildBinding: 'controller.build'\n }),\n JobsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'context.repo',\n jobBinding: 'context',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id')\n }),\n JobView: Travis.View.extend({\n templateName: 'jobs/show',\n repoBinding: 'controller.repo',\n jobBinding: 'controller.job',\n commitBinding: 'job.commit',\n currentItemBinding: 'job',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n }),\n LogView: Travis.View.extend({\n templateName: 'jobs/log',\n logBinding: 'job.log',\n scrollTo: function(hash) {\n $('#main').scrollTop(0);\n $('html,body').scrollTop($(hash).offset().top);\n return this.set('controller.lineNumberHash', null);\n },\n lineNumberHashDidChange: (function() {\n return this.tryScrollingToHashLineNumber();\n }).observes('controller.lineNumberHash'),\n tryScrollingToHashLineNumber: function() {\n var checker, hash, self;\n if (hash = this.get('controller.lineNumberHash')) {\n self = this;\n checker = function() {\n if (self.get('isDestroyed')) {\n return;\n }\n if ($(hash).length) {\n return self.scrollTo(hash);\n } else {\n return setTimeout(checker, 100);\n }\n };\n return checker();\n }\n },\n didInsertElement: function() {\n this._super.apply(this, arguments);\n return this.tryScrollingToHashLineNumber();\n },\n click: function(event) {\n var path, target;\n target = $(event.target);\n target.closest('.fold').toggleClass('open');\n if (target.is('.log-line-number')) {\n path = target.attr('href');\n Travis.app.get('router').route(path);\n event.stopPropagation();\n return false;\n }\n },\n toTop: function() {\n return $(window).scrollTop(0);\n },\n jobBinding: 'context',\n toggleTailing: function(event) {\n Travis.app.tailing.toggle();\n return event.preventDefault();\n },\n logSubscriber: (function() {\n var job, state;\n job = this.get('job');\n state = this.get('job.state');\n if (job && state !== 'finished') {\n job.subscribe();\n }\n return null;\n }).property('job', 'job.state')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/job");minispade.register('views/left', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n tabBinding: 'controller.tab',\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/left");minispade.register('views/profile', "(function() {(function() {\n\n this.Travis.reopen({\n ProfileView: Travis.View.extend({\n templateName: 'profile/show',\n accountBinding: 'controller.account',\n name: (function() {\n return this.get('account.name') || this.get('account.login');\n }).property('account.name', 'account.login')\n }),\n ProfileTabsView: Travis.View.extend({\n templateName: 'profile/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classHooks: (function() {\n if (this.get('tab') === 'hooks') {\n return 'active';\n }\n }).property('tab'),\n classUser: (function() {\n if (this.get('tab') === 'user') {\n return 'active';\n }\n }).property('tab'),\n accountBinding: 'controller.account',\n displayUser: (function() {\n return this.get('controller.account.login') === this.get('controller.user.login');\n }).property('controller.account.login', 'controller.user.login')\n }),\n HooksView: Travis.View.extend({\n templateName: 'profile/tabs/hooks',\n userBinding: 'controller.user',\n urlGithubAdmin: (function() {\n return Travis.Urls.githubAdmin(this.get('hook.slug'));\n }).property('hook.slug')\n }),\n UserView: Travis.View.extend({\n templateName: 'profile/tabs/user',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=48&d=mm\";\n }).property('user.gravatarId'),\n locales: (function() {\n return [\n {\n key: null,\n name: ''\n }, {\n key: 'en',\n name: 'English'\n }, {\n key: 'ca',\n name: 'Catalan'\n }, {\n key: 'cs',\n name: 'Čeština'\n }, {\n key: 'es',\n name: 'Español'\n }, {\n key: 'fr',\n name: 'Français'\n }, {\n key: 'ja',\n name: '日本語'\n }, {\n key: 'nl',\n name: 'Nederlands'\n }, {\n key: 'nb',\n name: 'Norsk Bokmål'\n }, {\n key: 'pl',\n name: 'Polski'\n }, {\n key: {\n 'pt-BR': {\n name: 'Português brasileiro'\n }\n }\n }, {\n key: 'ru',\n name: 'Русский'\n }\n ];\n }).property(),\n saveLocale: function(event) {\n return this.get('user').updateLocale($('#locale').val());\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/profile");minispade.register('views/repo', "(function() {(function() {\nminispade.require('views/repo/list');\nminispade.require('views/repo/show');\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo");minispade.register('views/repo/list', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n toggleInfo: function(event) {\n return $('#repos').toggleClass('open');\n }\n }),\n ReposListView: Em.CollectionView.extend({\n elementId: 'repos',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n repoBinding: 'content',\n classNames: ['repo'],\n classNameBindings: ['color', 'selected'],\n selectedBinding: 'repo.selected',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('repo.lastBuildResult'));\n }).property('repo.lastBuildResult'),\n urlRepo: (function() {\n return Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlLastBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('repo.lastBuildId'));\n }).property('repo.slug', 'repo.lastBuildId')\n })\n }),\n ReposListTabsView: Travis.View.extend({\n templateName: 'repos/list/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.app.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/list");minispade.register('views/repo/show', "(function() {(function() {\n\n this.Travis.reopen({\n RepoView: Travis.View.extend({\n templateName: 'repos/show',\n reposBinding: 'controller.repos',\n repoBinding: 'controller.repo',\n \"class\": (function() {\n if (!this.get('repo.isComplete') && !this.get('isEmpty')) {\n return 'loading';\n }\n }).property('repo.isComplete'),\n isEmpty: (function() {\n return this.get('repos.length') === 0;\n }).property('repos.length'),\n urlGithub: (function() {\n return Travis.Urls.githubRepo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubWatchers: (function() {\n return Travis.Urls.githubWatchers(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubNetwork: (function() {\n return Travis.Urls.githubNetwork(this.get('repo.slug'));\n }).property('repo.slug')\n }),\n ReposEmptyView: Travis.View.extend({\n template: ''\n }),\n RepoShowTabsView: Travis.View.extend({\n templateName: 'repos/show/tabs',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n classCurrent: (function() {\n if (this.get('tab') === 'current') {\n return 'active';\n }\n }).property('tab'),\n classBuilds: (function() {\n if (this.get('tab') === 'builds') {\n return 'active';\n }\n }).property('tab'),\n classPullRequests: (function() {\n if (this.get('tab') === 'pull_requests') {\n return 'active';\n }\n }).property('tab'),\n classBranches: (function() {\n if (this.get('tab') === 'branches') {\n return 'active';\n }\n }).property('tab'),\n classEvents: (function() {\n if (this.get('tab') === 'events') {\n return 'active';\n }\n }).property('tab'),\n classBuild: (function() {\n var classes, tab;\n tab = this.get('tab');\n classes = [];\n if (tab === 'build') {\n classes.push('active');\n }\n if (tab === 'build' || tab === 'job') {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab'),\n classJob: (function() {\n if (this.get('tab') === 'job') {\n return 'active display-inline';\n }\n }).property('tab')\n }),\n RepoShowToolsView: Travis.View.extend({\n templateName: 'repos/show/tools',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n closeMenu: function() {\n return $('.menu').removeClass('display');\n },\n menu: function(event) {\n var element;\n this.popupCloseAll();\n element = $('#tools .menu').toggleClass('display');\n return event.stopPropagation();\n },\n requeue: function() {\n this.closeMenu();\n return this.get('build').requeue();\n },\n statusImages: function(event) {\n this.set('active', true);\n this.closeMenu();\n this.popup(event);\n return event.stopPropagation();\n },\n canPush: (function() {\n return this.get('isBuildTab') && this.get('build.isFinished') && this.get('hasPushPermissions');\n }).property('build.isFinished', 'hasPushPermissions', 'isBuildTab'),\n isBuildTab: (function() {\n return ['current', 'build', 'job'].indexOf(this.get('tab')) > -1;\n }).property('tab'),\n hasPushPermissions: (function() {\n var permissions;\n if (permissions = Travis.app.get('currentUser.permissions')) {\n return permissions.indexOf(this.get('repo.id')) > -1;\n }\n }).property('Travis.app.currentUser.permissions.length', 'repo.id'),\n branches: (function() {\n if (this.get('active')) {\n return this.get('repo.branches');\n }\n }).property('active', 'repo.branches'),\n urlRepo: (function() {\n return 'https://' + location.host + Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlStatusImage: (function() {\n return Travis.Urls.statusImage(this.get('repo.slug'), this.get('branch.commit.branch'));\n }).property('repo.slug', 'branch'),\n markdownStatusImage: (function() {\n return \"[) + \")](\" + (this.get('urlRepo')) + \")\";\n }).property('urlStatusImage'),\n textileStatusImage: (function() {\n return \"!\" + (this.get('urlStatusImage')) + \"!:\" + (this.get('urlRepo'));\n }).property('urlStatusImage'),\n rdocStatusImage: (function() {\n return \"{ }[\" + (this.get('urlRepo')) + \"]\";\n }).property('urlStatusImage')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/show");minispade.register('views/sidebar', "(function() {(function() {\n\n this.Travis.reopen({\n SidebarView: Travis.View.extend({\n templateName: 'layouts/sidebar',\n DecksView: Em.View.extend({\n templateName: \"sponsors/decks\",\n controller: Travis.SponsorsController.create({\n perPage: 1\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n Travis.app.get('router.sidebarController').tickables.push(controller);\n controller.set('content', Travis.Sponsor.decks());\n }\n return this._super.apply(this, arguments);\n }\n }),\n LinksView: Em.View.extend({\n templateName: \"sponsors/links\",\n controller: Travis.SponsorsController.create({\n perPage: 6\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n controller.set('content', Travis.Sponsor.links());\n Travis.app.get('router.sidebarController').tickables.push(controller);\n }\n return this._super.apply(this, arguments);\n }\n }),\n WorkersView: Em.View.extend({\n templateName: 'workers/list',\n controller: Travis.WorkersController.create(),\n didInsertElement: function() {\n this.set('controller.content', Travis.Worker.find());\n return this._super.apply(this, arguments);\n }\n }),\n QueuesView: Em.View.extend({\n templateName: 'queues/list',\n controller: Em.ArrayController.create(),\n didInsertElement: function() {\n var queue, queues;\n queues = (function() {\n var _i, _len, _ref, _results;\n _ref = Travis.QUEUES;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n queue = _ref[_i];\n _results.push(Em.ArrayController.create({\n content: Travis.Job.queued(queue.name),\n id: \"queue_\" + queue.name,\n name: queue.display\n }));\n }\n return _results;\n })();\n this.set('controller.content', queues);\n return this._super.apply(this, arguments);\n }\n })\n }),\n WorkersView: Travis.View.extend({\n toggleWorkers: function(event) {\n var handle;\n handle = $(event.target).toggleClass('open');\n if (handle.hasClass('open')) {\n return $('#workers li').addClass('open');\n } else {\n return $('#workers li').removeClass('open');\n }\n }\n }),\n WorkersListView: Travis.View.extend({\n toggle: function(event) {\n return $(event.target).closest('li').toggleClass('open');\n }\n }),\n WorkersItemView: Travis.View.extend({\n display: (function() {\n var name, number, payload, repo, state;\n name = (this.get('worker.name') || '').replace('travis-', '');\n state = this.get('worker.state');\n payload = this.get('worker.payload');\n if (state === 'working' && (payload != null ? payload.repository : void 0) && (payload != null ? payload.build : void 0)) {\n repo = payload.repository.slug;\n number = ' #' + payload.build.number;\n return (\"\" + name + \": \" + repo + \" \" + number).htmlSafe();\n } else {\n return \"\" + name + \": \" + state;\n }\n }).property('worker.state')\n }),\n QueueItemView: Travis.View.extend({\n tagName: 'li'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/sidebar");minispade.register('views/signin', "(function() {(function() {\n\n this.Travis.reopen({\n SigninView: Travis.View.extend({\n templateName: 'auth/signin',\n signingIn: (function() {\n return Travis.app.get('authState') === 'signing-in';\n }).property('Travis.app.authState')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/signin");minispade.register('views/stats', "(function() {(function() {\n\n this.Travis.reopen({\n StatsView: Travis.View.extend({\n templateName: 'stats/show',\n didInsertElement: function() {},\n renderChart: function(config) {\n var chart;\n chart = new Highcharts.Chart(config);\n return this.fetch(config.source, function(data) {\n var stats;\n stats = (function() {\n var _i, _len, _ref, _results;\n _ref = data.stats;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n stats = _ref[_i];\n _results.push(config.map(stats));\n }\n return _results;\n })();\n return chart.series[0].setData(stats);\n });\n },\n fetch: function(url, callback) {\n return $.ajax({\n type: 'GET',\n url: url,\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n },\n success: callback\n });\n },\n CHARTS: {\n repos: {\n source: '/api/stats/repos',\n total: 0,\n map: function(data) {\n return [Date.parse(data.date), this.total += parseInt(data.count)];\n },\n chart: {\n renderTo: \"repos_stats\"\n },\n title: {\n text: \"Total Projects/Repositories\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" repos\";\n }\n },\n series: [\n {\n name: \"Repository Growth\",\n data: []\n }\n ]\n },\n builds: {\n source: '/api/stats/tests',\n map: function(data) {\n return [Date.parse(data.date), parseInt(data.count)];\n },\n chart: {\n renderTo: \"tests_stats\",\n type: \"column\"\n },\n title: {\n text: \"Build Count\"\n },\n subtitle: {\n text: \"last month\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" builds\";\n }\n },\n series: [\n {\n name: \"Total Builds\",\n data: []\n }\n ]\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/stats");minispade.register('views/top', "(function() {(function() {\n\n this.Travis.reopen({\n TopView: Travis.View.extend({\n templateName: 'layouts/top',\n tabBinding: 'controller.tab',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=24&d=mm\";\n }).property('user.gravatarId'),\n classHome: (function() {\n if (this.get('tab') === 'home') {\n return 'active';\n }\n }).property('tab'),\n classStats: (function() {\n if (this.get('tab') === 'stats') {\n return 'active';\n }\n }).property('tab'),\n classProfile: (function() {\n var classes;\n classes = ['profile'];\n if (this.get('tab') === 'profile') {\n classes.push('active');\n }\n classes.push(Travis.app.get('authState'));\n return classes.join(' ');\n }).property('tab', 'Travis.app.authState'),\n showProfile: function() {\n return $('#top .profile ul').show();\n },\n hideProfile: function() {\n return $('#top .profile ul').hide();\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/top");minispade.register('config/emoij', "(function() {(function() {\n\n this.EmojiDictionary = ['-1', '0', '1', '109', '2', '3', '4', '5', '6', '7', '8', '8ball', '9', 'a', 'ab', 'airplane', 'alien', 'ambulance', 'angel', 'anger', 'angry', 'apple', 'aquarius', 'aries', 'arrow_backward', 'arrow_down', 'arrow_forward', 'arrow_left', 'arrow_lower_left', 'arrow_lower_right', 'arrow_right', 'arrow_up', 'arrow_upper_left', 'arrow_upper_right', 'art', 'astonished', 'atm', 'b', 'baby', 'baby_chick', 'baby_symbol', 'balloon', 'bamboo', 'bank', 'barber', 'baseball', 'basketball', 'bath', 'bear', 'beer', 'beers', 'beginner', 'bell', 'bento', 'bike', 'bikini', 'bird', 'birthday', 'black_square', 'blue_car', 'blue_heart', 'blush', 'boar', 'boat', 'bomb', 'book', 'boot', 'bouquet', 'bow', 'bowtie', 'boy', 'bread', 'briefcase', 'broken_heart', 'bug', 'bulb', 'bullettrain_front', 'bullettrain_side', 'bus', 'busstop', 'cactus', 'cake', 'calling', 'camel', 'camera', 'cancer', 'capricorn', 'car', 'cat', 'cd', 'chart', 'checkered_flag', 'cherry_blossom', 'chicken', 'christmas_tree', 'church', 'cinema', 'city_sunrise', 'city_sunset', 'clap', 'clapper', 'clock1', 'clock10', 'clock11', 'clock12', 'clock2', 'clock3', 'clock4', 'clock5', 'clock6', 'clock7', 'clock8', 'clock9', 'closed_umbrella', 'cloud', 'clubs', 'cn', 'cocktail', 'coffee', 'cold_sweat', 'computer', 'confounded', 'congratulations', 'construction', 'construction_worker', 'convenience_store', 'cool', 'cop', 'copyright', 'couple', 'couple_with_heart', 'couplekiss', 'cow', 'crossed_flags', 'crown', 'cry', 'cupid', 'currency_exchange', 'curry', 'cyclone', 'dancer', 'dancers', 'dango', 'dart', 'dash', 'de', 'department_store', 'diamonds', 'disappointed', 'dog', 'dolls', 'dolphin', 'dress', 'dvd', 'ear', 'ear_of_rice', 'egg', 'eggplant', 'egplant', 'eight_pointed_black_star', 'eight_spoked_asterisk', 'elephant', 'email', 'es', 'european_castle', 'exclamation', 'eyes', 'factory', 'fallen_leaf', 'fast_forward', 'fax', 'fearful', 'feelsgood', 'feet', 'ferris_wheel', 'finnadie', 'fire', 'fire_engine', 'fireworks', 'fish', 'fist', 'flags', 'flushed', 'football', 'fork_and_knife', 'fountain', 'four_leaf_clover', 'fr', 'fries', 'frog', 'fuelpump', 'gb', 'gem', 'gemini', 'ghost', 'gift', 'gift_heart', 'girl', 'goberserk', 'godmode', 'golf', 'green_heart', 'grey_exclamation', 'grey_question', 'grin', 'guardsman', 'guitar', 'gun', 'haircut', 'hamburger', 'hammer', 'hamster', 'hand', 'handbag', 'hankey', 'hash', 'headphones', 'heart', 'heart_decoration', 'heart_eyes', 'heartbeat', 'heartpulse', 'hearts', 'hibiscus', 'high_heel', 'horse', 'hospital', 'hotel', 'hotsprings', 'house', 'hurtrealbad', 'icecream', 'id', 'ideograph_advantage', 'imp', 'information_desk_person', 'iphone', 'it', 'jack_o_lantern', 'japanese_castle', 'joy', 'jp', 'key', 'kimono', 'kiss', 'kissing_face', 'kissing_heart', 'koala', 'koko', 'kr', 'leaves', 'leo', 'libra', 'lips', 'lipstick', 'lock', 'loop', 'loudspeaker', 'love_hotel', 'mag', 'mahjong', 'mailbox', 'man', 'man_with_gua_pi_mao', 'man_with_turban', 'maple_leaf', 'mask', 'massage', 'mega', 'memo', 'mens', 'metal', 'metro', 'microphone', 'minidisc', 'mobile_phone_off', 'moneybag', 'monkey', 'monkey_face', 'moon', 'mortar_board', 'mount_fuji', 'mouse', 'movie_camera', 'muscle', 'musical_note', 'nail_care', 'necktie', 'new', 'no_good', 'no_smoking', 'nose', 'notes', 'o', 'o2', 'ocean', 'octocat', 'octopus', 'oden', 'office', 'ok', 'ok_hand', 'ok_woman', 'older_man', 'older_woman', 'open_hands', 'ophiuchus', 'palm_tree', 'parking', 'part_alternation_mark', 'pencil', 'penguin', 'pensive', 'persevere', 'person_with_blond_hair', 'phone', 'pig', 'pill', 'pisces', 'plus1', 'point_down', 'point_left', 'point_right', 'point_up', 'point_up_2', 'police_car', 'poop', 'post_office', 'postbox', 'pray', 'princess', 'punch', 'purple_heart', 'question', 'rabbit', 'racehorse', 'radio', 'rage', 'rage1', 'rage2', 'rage3', 'rage4', 'rainbow', 'raised_hands', 'ramen', 'red_car', 'red_circle', 'registered', 'relaxed', 'relieved', 'restroom', 'rewind', 'ribbon', 'rice', 'rice_ball', 'rice_cracker', 'rice_scene', 'ring', 'rocket', 'roller_coaster', 'rose', 'ru', 'runner', 'sa', 'sagittarius', 'sailboat', 'sake', 'sandal', 'santa', 'satellite', 'satisfied', 'saxophone', 'school', 'school_satchel', 'scissors', 'scorpius', 'scream', 'seat', 'secret', 'shaved_ice', 'sheep', 'shell', 'ship', 'shipit', 'shirt', 'shit', 'shoe', 'signal_strength', 'six_pointed_star', 'ski', 'skull', 'sleepy', 'slot_machine', 'smile', 'smiley', 'smirk', 'smoking', 'snake', 'snowman', 'sob', 'soccer', 'space_invader', 'spades', 'spaghetti', 'sparkler', 'sparkles', 'speaker', 'speedboat', 'squirrel', 'star', 'star2', 'stars', 'station', 'statue_of_liberty', 'stew', 'strawberry', 'sunflower', 'sunny', 'sunrise', 'sunrise_over_mountains', 'surfer', 'sushi', 'suspect', 'sweat', 'sweat_drops', 'swimmer', 'syringe', 'tada', 'tangerine', 'taurus', 'taxi', 'tea', 'telephone', 'tennis', 'tent', 'thumbsdown', 'thumbsup', 'ticket', 'tiger', 'tm', 'toilet', 'tokyo_tower', 'tomato', 'tongue', 'top', 'tophat', 'traffic_light', 'train', 'trident', 'trophy', 'tropical_fish', 'truck', 'trumpet', 'tshirt', 'tulip', 'tv', 'u5272', 'u55b6', 'u6307', 'u6708', 'u6709', 'u6e80', 'u7121', 'u7533', 'u7a7a', 'umbrella', 'unamused', 'underage', 'unlock', 'up', 'us', 'v', 'vhs', 'vibration_mode', 'virgo', 'vs', 'walking', 'warning', 'watermelon', 'wave', 'wc', 'wedding', 'whale', 'wheelchair', 'white_square', 'wind_chime', 'wink', 'wink2', 'wolf', 'woman', 'womans_hat', 'womens', 'x', 'yellow_heart', 'zap', 'zzz'];\n\n}).call(this);\n\n})();\n//@ sourceURL=config/emoij");minispade.register('data/sponsors', "(function() {(function() {\n\n this.Travis.SPONSORS = [\n {\n type: 'platinum',\n url: \"http://www.wooga.com\",\n image: \"wooga-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://bendyworks.com\",\n image: \"bendyworks-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://cloudcontrol.com\",\n image: \"cloudcontrol-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://xing.de\",\n image: \"xing-205x130.png\"\n }, {\n type: 'gold',\n url: \"http://heroku.com\",\n image: \"heroku-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://soundcloud.com\",\n image: \"soundcloud-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://nedap.com\",\n image: \"nedap-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://mongohq.com\",\n image: \"mongohq-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://zweitag.de\",\n image: \"zweitag-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://kanbanery.com\",\n image: \"kanbanery-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://ticketevolution.com\",\n image: \"ticketevolution-205x60.jpg\"\n }, {\n type: 'gold',\n url: \"http://plan.io/travis\",\n image: \"planio-205x60.png\"\n }, {\n type: 'silver',\n link: \"Cobot : The one tool to run your coworking space \"\n }, {\n type: 'silver',\n link: \"JumpstartLab : We build developers \"\n }, {\n type: 'silver',\n link: \"Evil Martians : Agile Ruby on Rails development \"\n }, {\n type: 'silver',\n link: \"Zendesk : Love your helpdesk \"\n }, {\n type: 'silver',\n link: \"Stripe : Payments for developers \"\n }, {\n type: 'silver',\n link: \"Basho : We make Riak! \"\n }, {\n type: 'silver',\n link: \"Relevance : We deliver software solutions \"\n }, {\n type: 'silver',\n link: \"Mindmatters : Software für Menschen \"\n }, {\n type: 'silver',\n link: \"Amen : The best and worst of everything \"\n }, {\n type: 'silver',\n link: \"Site5 : Premium Web Hosting Solutions \"\n }, {\n type: 'silver',\n link: \"Crowd Interactive : Leading Rails consultancy in Mexico \"\n }, {\n type: 'silver',\n link: \"Atomic Object : Work with really smart people \"\n }, {\n type: 'silver',\n link: \"Codeminer : smart services for your startup \"\n }, {\n type: 'silver',\n link: \"Cloudant : grow into your data layer, not out of it \"\n }, {\n type: 'silver',\n link: \"Gidsy : Explore, organize & book unique things to do! \"\n }, {\n type: 'silver',\n link: \"5apps : Package & deploy HTML5 apps automatically \"\n }, {\n type: 'silver',\n link: \"Meltmedia : We are Interactive Superheroes \"\n }, {\n type: 'silver',\n link: \"Fingertips offers design and development services \"\n }, {\n type: 'silver',\n link: \"Engine Yard : Build epic apps, let us handle the rest \"\n }, {\n type: 'silver',\n link: \"Malwarebytes : Defeat Malware once and for all. \"\n }, {\n type: 'silver',\n link: \"Readmill : The best reading app on the iPad. \"\n }, {\n type: 'silver',\n link: \"Medidata : clinical tech improving quality of life \"\n }, {\n type: 'silver',\n link: \"ESM : Japan's best agile Ruby/Rails consultancy \"\n }, {\n type: 'silver',\n link: \"Twitter : instantly connects people everywhere \"\n }, {\n type: 'silver',\n link: \"AGiLE ANiMAL : we <3 Travis CI. \"\n }, {\n type: 'silver',\n link: \"Tupalo : Discover, review & share local businesses. \"\n }\n ];\n\n this.Travis.WORKERS = {\n \"jvm-otp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n },\n \"jvm-otp2.worker.travis-ci.org\": {\n name: \"Transloadit\",\n url: \"http://transloadit.com\"\n },\n \"ppp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://beta.travis-ci.com\"\n },\n \"ppp2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ppp3.worker.travis-ci.org\": {\n name: \"Alchemy CMS\",\n url: \"http://alchemy-cms.com/\"\n },\n \"rails1.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby1.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"ruby2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby3.worker.travis-ci.org\": {\n name: \"Railslove\",\n url: \"http://railslove.de\"\n },\n \"ruby4.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"spree.worker.travis-ci.org\": {\n name: \"Spree\",\n url: \"http://spreecommerce.com\"\n },\n \"staging.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=data/sponsors");minispade.register('ext/jquery', "(function() {(function() {\n\n $.fn.extend({\n outerHtml: function() {\n return $(this).wrap('
').parent().html();\n },\n outerElement: function() {\n return $($(this).outerHtml()).empty();\n },\n flash: function() {\n return Utils.flash(this);\n },\n unflash: function() {\n return Utils.unflash(this);\n },\n filterLog: function() {\n this.deansi();\n return this.foldLog();\n },\n deansi: function() {\n return this.html(Utils.deansi(this.html()));\n },\n foldLog: function() {\n return this.html(Utils.foldLog(this.html()));\n },\n unfoldLog: function() {\n return this.html(Utils.unfoldLog(this.html()));\n },\n updateTimes: function() {\n return Utils.updateTimes(this);\n },\n activateTab: function(tab) {\n return Utils.activateTab(this, tab);\n },\n timeInWords: function() {\n return $(this).each(function() {\n return $(this).text(Utils.timeInWords(parseInt($(this).attr('title'))));\n });\n },\n updateGithubStats: function(repo) {\n return Utils.updateGithubStats(repo, $(this));\n }\n });\n\n $.extend({\n isEmpty: function(obj) {\n if ($.isArray(obj)) {\n return !obj.length;\n } else if ($.isObject(obj)) {\n return !$.keys(obj).length;\n } else {\n return !obj;\n }\n },\n isObject: function(obj) {\n return Object.prototype.toString.call(obj) === '[object Object]';\n },\n keys: function(obj) {\n var keys;\n keys = [];\n $.each(obj, function(key) {\n return keys.push(key);\n });\n return keys;\n },\n values: function(obj) {\n var values;\n values = [];\n $.each(obj, function(key, value) {\n return values.push(value);\n });\n return values;\n },\n underscore: function(string) {\n return string[0].toLowerCase() + string.substring(1).replace(/([A-Z])?/g, function(match, chr) {\n if (chr) {\n return \"_\" + (chr.toUpperCase());\n } else {\n return '';\n }\n });\n },\n camelize: function(string, uppercase) {\n string = uppercase === false ? $.underscore(string) : $.capitalize(string);\n return string.replace(/_(.)?/g, function(match, chr) {\n if (chr) {\n return chr.toUpperCase();\n } else {\n return '';\n }\n });\n },\n capitalize: function(string) {\n return string[0].toUpperCase() + string.substring(1);\n },\n compact: function(object) {\n return $.grep(object, function(value) {\n return !!value;\n });\n },\n all: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return false;\n }\n i++;\n }\n return true;\n },\n detect: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return array[i];\n }\n i++;\n }\n },\n select: function(array, callback) {\n var args, i, result;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n result = [];\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n result.push(array[i]);\n }\n i++;\n }\n return result;\n },\n slice: function(object, key) {\n var keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) > -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n only: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) !== -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n except: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) === -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n intersect: function(array, other) {\n return array.filter(function(element) {\n return other.indexOf(element) !== -1;\n });\n },\n map: function(elems, callback, arg) {\n var i, isArray, key, length, ret, value;\n value = void 0;\n key = void 0;\n ret = [];\n i = 0;\n length = elems.length;\n isArray = elems instanceof jQuery || length !== void 0 && typeof length === 'number' && (length > 0 && elems[0] && elems[length - 1]) || length === 0 || jQuery.isArray(elems);\n if (isArray) {\n while (i < length) {\n value = callback(elems[i], i, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n i++;\n }\n } else {\n for (key in elems) {\n value = callback(elems[key], key, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n }\n }\n return ret.concat.apply([], ret);\n },\n shuffle: function(array) {\n var current, tmp, top;\n array = array.slice();\n top = array.length;\n while (top && --top) {\n current = Math.floor(Math.random() * (top + 1));\n tmp = array[current];\n array[current] = array[top];\n array[top] = tmp;\n }\n return array;\n },\n truncate: function(string, length) {\n if (string.length > length) {\n return string.trim().substring(0, length) + '...';\n } else {\n return string;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=ext/jquery");minispade.register('travis/ajax', "(function() {(function() {\n\n jQuery.support.cors = true;\n\n this.Travis.ajax = Em.Object.create({\n DEFAULT_OPTIONS: {\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n }\n },\n get: function(url, callback) {\n return this.ajax(url, 'get', {\n success: callback\n });\n },\n post: function(url, data, callback) {\n return this.ajax(url, 'post', {\n data: data,\n success: callback\n });\n },\n ajax: function(url, method, options) {\n var endpoint, success, token, _base,\n _this = this;\n endpoint = Travis.config.api_endpoint || '';\n options = options || {};\n if (token = sessionStorage.getItem('travis.token')) {\n options.headers || (options.headers = {});\n (_base = options.headers)['Authorization'] || (_base['Authorization'] = \"token \" + token);\n }\n options.url = \"\" + endpoint + url;\n options.type = method;\n options.dataType = 'json';\n options.contentType = 'application/json; charset=utf-8';\n options.context = this;\n if (options.data && method !== 'GET' && method !== 'get') {\n options.data = JSON.stringify(options.data);\n }\n success = options.success || (function() {});\n options.success = function(data) {\n var _ref;\n if (((_ref = Travis.app) != null ? _ref.router : void 0) && data.flash) {\n Travis.app.router.flashController.pushObjects(data.flash);\n }\n delete data.flash;\n return success.call(_this, data);\n };\n options.error = function(data) {\n if (data.flash) {\n return Travis.app.router.flashController.pushObject(data.flash);\n }\n };\n return $.ajax($.extend(options, Travis.ajax.DEFAULT_OPTIONS));\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ajax");minispade.register('travis/expandable_record_array', "(function() {(function() {\n\n Travis.ExpandableRecordArray = DS.RecordArray.extend({\n isLoaded: false,\n isLoading: false,\n load: function(array) {\n var observer, self;\n this.set('isLoading', true);\n self = this;\n observer = function() {\n var content;\n if (this.get('isLoaded')) {\n content = self.get('content');\n array.removeObserver('isLoaded', observer);\n array.forEach(function(record) {\n return self.pushObject(record);\n });\n self.set('isLoading', false);\n return self.set('isLoaded', true);\n }\n };\n return array.addObserver('isLoaded', observer);\n },\n pushObject: function(record) {\n var clientId, id, ids;\n ids = this.get('content');\n id = record.get('id');\n clientId = record.get('clientId');\n if (ids.contains(clientId)) {\n return;\n }\n return ids.pushObject(clientId);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/expandable_record_array");minispade.register('travis/limited_array', "(function() {(function() {\n\n Travis.LimitedArray = Em.ArrayProxy.extend({\n limit: 10,\n init: function() {\n return this._super.apply(this, arguments);\n },\n arrangedContent: (function() {\n var content;\n if (content = this.get('content')) {\n return content.slice(0, this.get('limit'));\n }\n }).property('content'),\n contentArrayDidChange: function(array, index, removedCount, addedCount) {\n var addedObjects, arrangedContent, length, limit, object, _i, _len;\n this._super.apply(this, arguments);\n if (addedCount > 0) {\n addedObjects = array.slice(index, index + addedCount);\n arrangedContent = this.get('arrangedContent');\n for (_i = 0, _len = addedObjects.length; _i < _len; _i++) {\n object = addedObjects[_i];\n arrangedContent.unshiftObject(object);\n }\n limit = this.get('limit');\n length = arrangedContent.get('length');\n if (length > limit) {\n return arrangedContent.replace(limit, length - limit);\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/limited_array");minispade.register('travis/location', "(function() {(function() {\n\n Travis.Location = Ember.HistoryLocation.extend({\n onUpdateURL: function(callback) {\n var guid;\n guid = Ember.guidFor(this);\n return Ember.$(window).bind('popstate.ember-location-' + guid, function(e) {\n return callback(location.pathname + location.hash);\n });\n },\n getURL: function() {\n var location;\n location = this.get('location');\n return location.pathname + location.hash;\n }\n });\n\n Ember.Location.implementations['travis'] = Travis.Location;\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/location");minispade.register('travis/log', "(function() {(function() {\n\n this.Travis.Log = {\n FOLDS: {\n schema: /(\\$ (?:bundle exec )?rake( db:create)? db:schema:load[\\s\\S]*?-- assume_migrated_upto_version[\\s\\S]*?<\\/p>\\n.*<\\/p>)/g,\n migrate: /(\\$ (?:bundle exec )?rake( db:create)? db:migrate[\\s\\S]*== +\\w+: migrated \\(.*\\) =+)/g,\n bundle: /(\\$ bundle install.*<\\/p>\\n((Updating|Using|Installing|Fetching|remote:|Receiving|Resolving).*?<\\/p>\\n|<\\/p>\\n)*)/g,\n exec: /([\\/\\w]*.rvm\\/rubies\\/[\\S]*?\\/(ruby|rbx|jruby) .*?<\\/p>)/g\n },\n filter: function(log, path) {\n log = this.escape(log);\n log = this.deansi(log);\n log = log.replace(/\\r/g, '');\n log = this.number(log, path);\n log = this.fold(log);\n log = log.replace(/\\n/g, '');\n return log;\n },\n stripPaths: function(log) {\n return log.replace(/\\/home\\/vagrant\\/builds(\\/[^\\/\\n]+){2}\\//g, '');\n },\n escape: function(log) {\n return Handlebars.Utils.escapeExpression(log);\n },\n escapeRuby: function(log) {\n return log.replace(/#<(\\w+.*?)>/, '#<$1>');\n },\n number: function(log, path) {\n var result;\n path = \"\" + path + \"/\";\n result = '';\n $.each(log.trim().split('\\n'), function(ix, line) {\n var number, pathWithNumber;\n number = ix + 1;\n pathWithNumber = \"\" + path + \"#L\" + number;\n return result += '%@ %@
\\n'.fmt(pathWithNumber, number, number, number, line);\n });\n return result.trim();\n },\n deansi: function(log) {\n var ansi, text;\n log = log.replace(/\\r\\r/g, '\\r').replace(/\\033\\[K\\r/g, '\\r').replace(/^.*\\r(?!$)/gm, '').replace(/\u001b\\[2K/g, '').replace(/\\033\\(B/g, \"\");\n ansi = ansiparse(log);\n text = '';\n ansi.forEach(function(part) {\n var classes;\n classes = [];\n part.foreground && classes.push(part.foreground);\n part.background && classes.push('bg-' + part.background);\n part.bold && classes.push('bold');\n part.italic && classes.push('italic');\n return text += (classes.length ? '' + part.text + ' ' : part.text);\n });\n return text.replace(/\\033/g, '');\n },\n fold: function(log) {\n log = this.unfold(log);\n $.each(Travis.Log.FOLDS, function(name, pattern) {\n return log = log.replace(pattern, function() {\n return '' + arguments[1].trim() + '
';\n });\n });\n return log;\n },\n unfold: function(log) {\n return log.replace(/([\\s\\S]*?)<\\/div>/g, '$1\\n');\n },\n location: function() {\n return window.location.hash;\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/log");minispade.register('travis/model', "(function() {(function() {\n\n this.Travis.Model = DS.Model.extend({\n primaryKey: 'id',\n id: DS.attr('number'),\n init: function() {\n this.loadedAttributes = [];\n return this._super.apply(this, arguments);\n },\n get: function(name) {\n if (this.constructor.isAttribute(name) && this.get('incomplete') && !this.isAttributeLoaded(name)) {\n this.loadTheRest();\n }\n return this._super.apply(this, arguments);\n },\n refresh: function() {\n var id, store;\n if (id = this.get('id')) {\n store = this.get('store');\n return store.adapter.find(store, this.constructor, id);\n }\n },\n update: function(attrs) {\n var _this = this;\n $.each(attrs, function(key, value) {\n if (key !== 'id') {\n return _this.set(key, value);\n }\n });\n return this;\n },\n isAttributeLoaded: function(name) {\n return this.loadedAttributes.contains(name);\n },\n isComplete: (function() {\n if (this.get('incomplete')) {\n this.loadTheRest();\n return false;\n } else {\n this.set('isCompleting', false);\n return this.get('isLoaded');\n }\n }).property('incomplete', 'isLoaded'),\n loadTheRest: function() {\n if (this.get('isCompleting')) {\n return;\n }\n this.set('isCompleting', true);\n return this.refresh();\n },\n select: function() {\n return this.constructor.select(this.get('id'));\n }\n });\n\n this.Travis.Model.reopenClass({\n find: function() {\n if (arguments.length === 0) {\n return Travis.app.store.findAll(this);\n } else {\n return this._super.apply(this, arguments);\n }\n },\n filter: function(callback) {\n return Travis.app.store.filter(this, callback);\n },\n load: function(attrs) {\n return Travis.app.store.load(this, attrs);\n },\n select: function(id) {\n return this.find().forEach(function(record) {\n return record.set('selected', record.get('id') === id);\n });\n },\n buildURL: function(suffix) {\n var base, url;\n base = this.url || this.pluralName();\n Ember.assert('Base URL (' + base + ') must not start with slash', !base || base.toString().charAt(0) !== '/');\n Ember.assert('URL suffix (' + suffix + ') must not start with slash', !suffix || suffix.toString().charAt(0) !== '/');\n url = [base];\n if (suffix !== void 0) {\n url.push(suffix);\n }\n return url.join('/');\n },\n singularName: function() {\n var name, parts;\n parts = this.toString().split('.');\n name = parts[parts.length - 1];\n return name.replace(/([A-Z])/g, '_$1').toLowerCase().slice(1);\n },\n pluralName: function() {\n return Travis.app.store.adapter.pluralize(this.singularName());\n },\n isAttribute: function(name) {\n if (!this.attributesSaved) {\n this._saveAttributes();\n }\n return this.cachedAttributes.contains(name);\n },\n _saveAttributes: function() {\n var cachedAttributes;\n this.attributesSaved = true;\n cachedAttributes = [];\n this.eachComputedProperty(function(name, meta) {\n if (meta.isAttribute) {\n return cachedAttributes.pushObject(name);\n }\n });\n return this.cachedAttributes = cachedAttributes;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/model");minispade.register('travis/ticker', "(function() {(function() {\n\n this.Travis.Ticker = Ember.Object.extend({\n init: function() {\n if (this.get('interval') !== -1) {\n return this.schedule();\n }\n },\n tick: function() {\n var context, target, targets, _i, _len;\n context = this.get('context');\n targets = this.get('targets') || [this.get('target')];\n for (_i = 0, _len = targets.length; _i < _len; _i++) {\n target = targets[_i];\n if (context) {\n target = context.get(target);\n }\n if (target) {\n target.tick();\n }\n }\n return this.schedule();\n },\n schedule: function() {\n var _this = this;\n return Ember.run.later((function() {\n return _this.tick();\n }), this.get('interval') || Travis.app.TICK_INTERVAL);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ticker");minispade.register('travis', "(function() {(function() {\nminispade.require('ext/jquery');\nminispade.require('ext/ember/namespace');\n\n this.Travis = Em.Namespace.create({\n config: {\n api_endpoint: $('meta[rel=\"travis.api_endpoint\"]').attr('href'),\n pusher_key: $('meta[name=\"travis.pusher_key\"]').attr('value')\n },\n CONFIG_KEYS: ['rvm', 'gemfile', 'env', 'jdk', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala'],\n ROUTES: {\n 'profile/:login/me': ['profile', 'user'],\n 'profile/:login': ['profile', 'hooks'],\n 'profile': ['profile', 'hooks'],\n 'stats': ['stats', 'show'],\n ':owner/:name/jobs/:id/:line': ['home', 'job'],\n ':owner/:name/jobs/:id': ['home', 'job'],\n ':owner/:name/builds/:id': ['home', 'build'],\n ':owner/:name/builds': ['home', 'builds'],\n ':owner/:name/pull_requests': ['home', 'pullRequests'],\n ':owner/:name/branches': ['home', 'branches'],\n ':owner/:name': ['home', 'current'],\n '': ['home', 'index'],\n '#': ['home', 'index']\n },\n QUEUES: [\n {\n name: 'common',\n display: 'Common'\n }, {\n name: 'php',\n display: 'PHP, Perl and Python'\n }, {\n name: 'node_js',\n display: 'Node.js'\n }, {\n name: 'jvmotp',\n display: 'JVM and Erlang'\n }, {\n name: 'rails',\n display: 'Rails'\n }, {\n name: 'spree',\n display: 'Spree'\n }\n ],\n INTERVALS: {\n sponsors: -1,\n times: -1,\n updateTimes: 1000\n },\n setLocale: function(locale) {\n if (!locale) {\n return;\n }\n I18n.locale = locale;\n return localStorage.setItem('travis.config.locale', locale);\n },\n run: function(attrs) {\n if (location.hash.slice(0, 2) === '#!') {\n location.href = location.href.replace('#!/', '');\n }\n this.setLocale(localStorage.getItem('travis.config.locale'));\n return Ember.run.next(this, function() {\n var app,\n _this = this;\n app = Travis.App.create(attrs || {});\n $.each(Travis, function(key, value) {\n if (value && value.isClass && key !== 'constructor') {\n return app[key] = value;\n }\n });\n this.app = app;\n this.store = app.store;\n return $(function() {\n return app.initialize();\n });\n });\n }\n });\nminispade.require('travis/ajax');\nminispade.require('app');\n\n}).call(this);\n\n})();\n//@ sourceURL=travis");minispade.register('templates', "(function() {\nEmber.TEMPLATES['application'] = Ember.Handlebars.compile(\"{{outlet}}\\n\");\n\nEmber.TEMPLATES['auth/signin'] = Ember.Handlebars.compile(\"{{#if view.signingIn}}\\n
Signing in ... \\n
\\n Trying to authenticate with GitHub.\\n
\\n{{else}}\\n
Sign in \\n
\\n Please sign in with GitHub. \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/list'] = Ember.Handlebars.compile(\"{{#if builds.isLoaded}}\\n
\\n \\n \\n {{t builds.name}} \\n {{t builds.commit}} \\n {{t builds.message}} \\n {{t builds.duration}} \\n {{t builds.finished_at}} \\n \\n \\n\\n \\n {{#each build in builds}}\\n {{#view Travis.BuildsItemView contextBinding=\\\"build\\\"}}\\n \\n \\n {{#if id}}\\n \\n {{number}}\\n \\n {{/if}}\\n \\n \\n \\n {{formatCommit commit}}\\n \\n \\n \\n {{{formatMessage commit.message short=\\\"true\\\"}}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n
\\n {{view view.ShowMoreButton}}\\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if loading}}\\n
Loading \\n {{else}}\\n
\\n \\n
{{t builds.name}} \\n
\\n \\n {{#if build.id}}\\n {{build.number}} \\n {{/if}}\\n \\n
{{t builds.finished_at}} \\n
{{formatTime build.finishedAt}} \\n
{{t builds.duration}} \\n
{{formatDuration build.duration}} \\n
\\n\\n \\n\\n {{t builds.message}} \\n {{{formatMessage build.commit.message}}} \\n\\n {{#unless isMatrix}}\\n {{t builds.config}} \\n {{formatConfig build.config}} \\n {{/unless}}\\n \\n\\n {{#if build.isMatrix}}\\n {{view Travis.JobsView jobsBinding=\\\"build.requiredJobs\\\" required=\\\"true\\\"}}\\n {{view Travis.JobsView jobsBinding=\\\"build.allowedFailureJobs\\\"}}\\n {{else}}\\n {{view Travis.LogView contextBinding=\\\"build.jobs.firstObject\\\"}}\\n {{/if}}\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['events/list'] = Ember.Handlebars.compile(\"{{#if view.events.isLoaded}}\\n
\\n \\n \\n Time \\n Event \\n Result \\n Message \\n \\n \\n\\n \\n {{#each event in view.events}}\\n {{#view Travis.EventsItemView contextBinding=\\\"event\\\"}}\\n \\n {{formatTime createdAt}}\\n \\n \\n {{event.event_}}\\n \\n \\n {{event.result}}\\n \\n \\n {{event.message}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\\n\");\n\nEmber.TEMPLATES['jobs/list'] = Ember.Handlebars.compile(\"{{#if view.jobs.length}}\\n {{#if view.required}}\\n
\\n \\n {{t jobs.build_matrix}}\\n \\n {{else}}\\n \\n \\n {{t jobs.allowed_failures}}\\n \\n \\n {{/if}}\\n \\n \\n {{#each key in view.build.configKeys}}\\n {{key}} \\n {{/each}}\\n \\n \\n \\n {{#each job in view.jobs}}\\n {{#view Travis.JobsItemView contextBinding=\\\"job\\\"}}\\n \\n \\n {{#if job.id}}\\n {{number}} \\n {{/if}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{#each value in configValues}}\\n {{value}} \\n {{/each}}\\n {{/view}}\\n {{/each}}\\n \\n
\\n\\n {{#unless view.required}}\\n \\n {{/unless}}\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/log'] = Ember.Handlebars.compile(\"{{view.logSubscriber}}\\n\\n{{#if log.isLoaded}}\\n \\n \\n Follow logs \\n {{{formatLog log.body repo=\\\"repository\\\" item=\\\"parentView.currentItem\\\"}}} \\n\\n {{#if sponsor.name}}\\n \\n {{/if}}\\n\\n To top \\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if job.isComplete}}\\n \\n
\\n \\n
Job \\n
\\n \\n {{#if job.id}}\\n {{job.number}} \\n {{/if}}\\n \\n
{{t jobs.finished_at}} \\n
{{formatTime job.finishedAt}} \\n
{{t jobs.duration}} \\n
{{formatDuration job.duration}} \\n
\\n\\n \\n\\n {{t jobs.message}} \\n {{formatMessage commit.message}} \\n {{t jobs.config}} \\n {{formatConfig job.config}} \\n \\n\\n {{view Travis.LogView contextBinding=\\\"job\\\"}}}\\n
\\n {{else}}\\n \\n Loading \\n
\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['layouts/flash'] = Ember.Handlebars.compile(\"{{#each flash in controller}}\\n {{#view Travis.FlashItemView flashBinding=\\\"flash\\\"}}\\n {{view.message}}
\\n \\n {{/view}}\\n{{/each}}\\n\");\n\nEmber.TEMPLATES['layouts/home'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n {{outlet right}}\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/profile'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n
\\n\\n
\\n\\n
\\n
Getting started? \\n
\\n Please read our guide .\\n It will only take a few minutes :)\\n
\\n
\\n You can find detailled docs on our about site.\\n
\\n
\\n If you need help please don't hesitate to join\\n #travis on irc.freenode.net\\n or our mailinglist .\\n
\\n
\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/sidebar'] = Ember.Handlebars.compile(\"\\n\\n\\n\\n{{view view.DecksView}}\\n{{view view.WorkersView}}\\n{{view view.QueuesView}}\\n{{view view.LinksView}}\\n\\n\\n
{{t layouts.about.join}} \\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/simple'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n
\\n\\n\");\n\nEmber.TEMPLATES['layouts/top'] = Ember.Handlebars.compile(\"\\n Travis \\n \\n\\n\\n\");\n\nEmber.TEMPLATES['profile/accounts'] = Ember.Handlebars.compile(\"\\n
\\n\\n\\n\\n\\n {{#collection Travis.AccountsListView contentBinding=\\\"controller\\\"}}\\n
{{view.name}} \\n
\\n Repositories: \\n {{view.account.reposCount}} \\n
\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['profile/show'] = Ember.Handlebars.compile(\"{{view.name}} \\n\\n{{view Travis.ProfileTabsView}}\\n\\n\\n {{outlet pane}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n {{#if view.displayUser}}\\n \\n \\n \\n {{/if}}\\n \\n\");\n\nEmber.TEMPLATES['profile/tabs/hooks'] = Ember.Handlebars.compile(\"\\n {{{t profiles.show.message.your_repos}}}\\n
\\n\\n{{#if hooks.isLoaded}}\\n {{#if user.isSyncing}}\\n \\n Please wait while we sync from GitHub \\n
\\n {{else}}\\n \\n Last synchronized from GitHub: {{formatTime user.syncedAt}}\\n \\n Sync now\\n \\n
\\n\\n \\n {{#each hook in hooks}}\\n \\n {{hook.slug}} \\n {{hook.description}}
\\n\\n \\n \\n {{else}}\\n \\n You do not seem to have any repositories that we could sync.\\n \\n {{/each}}\\n \\n {{/if}}\\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs/user'] = Ember.Handlebars.compile(\" \\n\\n\\n \\n {{t profiles.show.github}}:\\n \\n \\n {{user.login}} \\n \\n \\n {{t profiles.show.email}}:\\n \\n \\n {{user.email}}\\n \\n \\n {{t profiles.show.token}}:\\n \\n \\n {{user.token}}\\n \\n \\n\\n\\n\\n\\n\");\n\nEmber.TEMPLATES['queues/list'] = Ember.Handlebars.compile(\"\\n{{#each queue in controller}}\\n \\n {{t queue}}: {{queue.name}} \\n \\n \\n{{/each}}\\n \\n\");\n\nEmber.TEMPLATES['repos/list'] = Ember.Handlebars.compile(\"\\n {{view Ember.TextField valueBinding=\\\"controller.search\\\"}}\\n
\\n\\n{{view Travis.ReposListTabsView}}\\n\\n \\n\\n\\n {{#collection Travis.ReposListView contentBinding=\\\"controller\\\"}}\\n {{#with view.repo}}\\n
\\n
\\n {{#if slug}}\\n
{{slug}} \\n {{/if}}\\n
\\n {{#if lastBuildId}}\\n
{{lastBuildNumber}} \\n {{/if}}\\n\\n
\\n {{t repositories.duration}}: \\n {{formatDuration lastBuildDuration}} ,\\n {{t repositories.finished_at}}: \\n {{formatTime lastBuildFinishedAt}} \\n
\\n\\n
\\n\\n {{#if description}}\\n
\\n {{/if}}\\n {{/with}}\\n {{else}}\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['repos/list/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\\n\");\n\nEmber.TEMPLATES['repos/show'] = Ember.Handlebars.compile(\"\\n {{#if view.isEmpty}}\\n {{view Travis.ReposEmptyView}}\\n {{else}}\\n {{#if view.repo.isComplete}}\\n {{#with view.repo}}\\n
\\n\\n
{{description}}
\\n\\n
\\n\\n {{view Travis.RepoShowTabsView}}\\n {{view Travis.RepoShowToolsView}}\\n {{/with}}\\n\\n {{else}}\\n
Loading \\n {{/if}}\\n\\n
\\n {{outlet pane}}\\n
\\n {{/if}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['repos/show/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n {{#if view.repo.slug}}\\n \\n Events\\n \\n {{/if}}\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\");\n\nEmber.TEMPLATES['repos/show/tools'] = Ember.Handlebars.compile(\"\\n\\n\\n\");\n\nEmber.TEMPLATES['sponsors/decks'] = Ember.Handlebars.compile(\"{{t layouts.application.sponsers}} \\n\\n\\n\\n\\n \\n {{{t layouts.application.sponsors_link}}}\\n \\n
\\n\");\n\nEmber.TEMPLATES['sponsors/links'] = Ember.Handlebars.compile(\"\\n\\n\");\n\nEmber.TEMPLATES['stats/show'] = Ember.Handlebars.compile(\"Sorry \\nStatistics are disabled for now.
\\n We're looking into a solution. If you want to help, please ping us!
\\n\");\n\nEmber.TEMPLATES['workers/list'] = Ember.Handlebars.compile(\"{{#view Travis.WorkersView}}\\n \\n {{t workers}}\\n \\n \\n \\n {{#each group in controller.groups}}\\n {{#view Travis.WorkersListView}}\\n \\n \\n {{group.firstObject.host}}\\n \\n \\n {{#each worker in group}}\\n {{#view Travis.WorkersItemView workerBinding=\\\"worker\\\"}}\\n \\n
\\n {{#if worker.isWorking}}\\n {{#if worker.job_id}}\\n \\n {{view.display}}\\n \\n {{/if}}\\n {{else}}\\n {{view.display}}\\n {{/if}}\\n \\n {{/view}}\\n {{/each}}\\n \\n \\n {{/view}}\\n {{else}}\\n No workers\\n {{/each}}\\n \\n{{/view}}\\n\");\n\n})();\n//@ sourceURL=templates");minispade.register('config/locales', "(function() {window.I18n = window.I18n || {}\nwindow.I18n.translations = {\"ca\":{\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"pt-BR\":\"português brasileiro\",\"ru\":\"Русский\"}},\"en\":{\"errors\":{\"messages\":{\"not_found\":\"not found\",\"already_confirmed\":\"was already confirmed\",\"not_locked\":\"was not locked\"}},\"devise\":{\"failure\":{\"unauthenticated\":\"You need to sign in or sign up before continuing.\",\"unconfirmed\":\"You have to confirm your account before continuing.\",\"locked\":\"Your account is locked.\",\"invalid\":\"Invalid email or password.\",\"invalid_token\":\"Invalid authentication token.\",\"timeout\":\"Your session expired, please sign in again to continue.\",\"inactive\":\"Your account was not activated yet.\"},\"sessions\":{\"signed_in\":\"Signed in successfully.\",\"signed_out\":\"Signed out successfully.\"},\"passwords\":{\"send_instructions\":\"You will receive an email with instructions about how to reset your password in a few minutes.\",\"updated\":\"Your password was changed successfully. You are now signed in.\"},\"confirmations\":{\"send_instructions\":\"You will receive an email with instructions about how to confirm your account in a few minutes.\",\"confirmed\":\"Your account was successfully confirmed. You are now signed in.\"},\"registrations\":{\"signed_up\":\"You have signed up successfully. If enabled, a confirmation was sent to your e-mail.\",\"updated\":\"You updated your account successfully.\",\"destroyed\":\"Bye! Your account was successfully cancelled. We hope to see you again soon.\"},\"unlocks\":{\"send_instructions\":\"You will receive an email with instructions about how to unlock your account in a few minutes.\",\"unlocked\":\"Your account was successfully unlocked. You are now signed in.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Confirmation instructions\"},\"reset_password_instructions\":{\"subject\":\"Reset password instructions\"},\"unlock_instructions\":{\"subject\":\"Unlock Instructions\"}}},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hour\",\"other\":\"%{count} hours\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} second\",\"other\":\"%{count} seconds\"}}},\"workers\":\"Workers\",\"queue\":\"Queue\",\"no_job\":\"There are no jobs\",\"repositories\":{\"branch\":\"Branch\",\"image_url\":\"Image URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"tabs\":{\"current\":\"Current\",\"build_history\":\"Build History\",\"branches\":\"Branch Summary\",\"pull_requests\":\"Pull Requests\",\"build\":\"Build\",\"job\":\"Job\"}},\"build\":{\"job\":\"Job\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"show_more\":\"Show more\"},\"layouts\":{\"top\":{\"home\":\"Home\",\"blog\":\"Blog\",\"docs\":\"Docs\",\"stats\":\"Stats\",\"github_login\":\"Sign in with Github\",\"profile\":\"Profile\",\"sign_out\":\"Sign Out\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Recent\",\"search\":\"Search\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"See all of our amazing sponsors →\",\"my_repositories\":\"My Repositories\"},\"about\":{\"alpha\":\"This stuff is alpha.\",\"messages\":{\"alpha\":\"Please do not consider this a stable service. We're still far from that! More info here. \"},\"join\":\"Join us and help!\",\"mailing_list\":\"Mailing List\",\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Author\",\"build\":\"Build\",\"build_matrix\":\"Build Matrix\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Compare\",\"config\":\"Config\",\"duration\":\"Duration\",\"finished_at\":\"Finished at\",\"job\":\"Job\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Flick the switches below to turn on the Travis service hook for your projects, then push to GitHub.\",\"config\":\"how to configure custom build options\"},\"messages\":{\"notice\":\"To get started, please read our Getting Started guide .\\n It will only take a couple of minutes. \"},\"token\":\"Token\",\"your_repos\":\"Your Repositories\",\"update\":\"Update\",\"update_locale\":\"Update\",\"your_locale\":\"Your Locale\"}},\"statistics\":{\"index\":{\"count\":\"Count\",\"repo_growth\":\"Repository Growth\",\"total_projects\":\"Total Projects/Repositories\",\"build_count\":\"Build Count\",\"last_month\":\"last month\",\"total_builds\":\"Total Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"es\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"workers\":\"Procesos\",\"queue\":\"Cola\",\"no_job\":\"No hay trabajos\",\"repositories\":{\"branch\":\"Rama\",\"image_url\":\"Imagen URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"tabs\":{\"current\":\"Actual\",\"build_history\":\"Histórico\",\"branches\":\"Ramas\",\"build\":\"Builds\",\"job\":\"Trabajo\"}},\"build\":{\"job\":\"Trabajo\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"sponsored_by\":\"Patrocinado por\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"layouts\":{\"top\":{\"home\":\"Inicio\",\"blog\":\"Blog\",\"docs\":\"Documentación\",\"stats\":\"Estadísticas\",\"github_login\":\"Iniciar sesión con Github\",\"profile\":\"Perfil\",\"sign_out\":\"Desconectar\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Hazme un Fork en Github\",\"recent\":\"Reciente\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Ver todos nuestros patrocinadores →\",\"my_repositories\":\"Mis Repositorios\"},\"about\":{\"alpha\":\"Esto es alpha.\",\"messages\":{\"alpha\":\"Por favor no considereis esto un servicio estable. Estamos estamos aún lejos de ello! Más información aquí. \"},\"join\":\"Únetenos y ayudanos!\",\"mailing_list\":\"Lista de Correos\",\"repository\":\"Repositorio\",\"twitter\":\"Twitter\"}},\"profiles\":{\"show\":{\"email\":\"Correo electrónico\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Activa los interruptores para inicial el Travis service hook para tus proyectos, y haz un Push en GitHub. \\n Para probar varias versiones de ruby, mira\",\"config\":\"como configurar tus propias opciones para el Build\"},\"messages\":{\"notice\":\"Para comenzar, por favor lee nuestra Guía de Inicio .\\n Solo tomará unos pocos minutos. \"},\"token\":\"Token\",\"your_repos\":\"Tus repositorios\",\"update\":\"Actualizar\",\"update_locale\":\"Actualizar\",\"your_locale\":\"Tu Idioma\"}},\"statistics\":{\"index\":{\"count\":\"Número\",\"repo_growth\":\"Crecimiento de Repositorios\",\"total_projects\":\"Total de Proyectos/Repositorios\",\"build_count\":\"Número de Builds\",\"last_month\":\"mes anterior\",\"total_builds\":\"Total de Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"fr\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} heure\",\"other\":\"%{count} heures\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} secondes\"}}},\"workers\":\"Processus\",\"queue\":\"File\",\"no_job\":\"Pas de tâches\",\"repositories\":{\"branch\":\"Branche\",\"image_url\":\"Image\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"tabs\":{\"current\":\"Actuel\",\"build_history\":\"Historique des tâches\",\"branches\":\"Résumé des branches\",\"build\":\"Construction\",\"job\":\"Tâche\"}},\"build\":{\"job\":\"Tâche\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"builds\":{\"name\":\"Version\",\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"layouts\":{\"top\":{\"home\":\"Accueil\",\"blog\":\"Blog\",\"docs\":\"Documentation\",\"stats\":\"Statistiques\",\"github_login\":\"Connection Github\",\"profile\":\"Profil\",\"sign_out\":\"Déconnection\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Faites un Fork sur Github\",\"recent\":\"Récent\",\"search\":\"Chercher\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Voir tous nos extraordinaire sponsors →\",\"my_repositories\":\"Mes dépôts\"},\"about\":{\"alpha\":\"Ceci est en alpha.\",\"messages\":{\"alpha\":\"S'il vous plaît ne considérez pas ce service comme étant stable. Nous sommes loin de ça! Plus d'infos ici. \"},\"join\":\"Joignez-vous à nous et aidez-nous!\",\"mailing_list\":\"Liste de distribution\",\"repository\":\"Dépôt\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Version\",\"build_matrix\":\"Matrice des versions\",\"commit\":\"Commit\",\"committer\":\"Committeur\",\"compare\":\"Comparer\",\"config\":\"Config\",\"duration\":\"Durée\",\"finished_at\":\"Terminé à\",\"job\":\"Tâche\",\"log\":\"Journal\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"message\":{\"your_repos\":\"Utilisez les boutons ci-dessous pour activer Travis sur vos projets puis déployez sur GitHub. \\nPour tester sur plus de versions de ruby, voir\",\"config\":\"comment configurer des options de version personnalisées\"},\"messages\":{\"notice\":\"Pour commencer, veuillez lire notre guide de démarrage .\\n Cela ne vous prendra que quelques minutes. \"},\"token\":\"Jeton\",\"your_repos\":\"Vos dépôts\",\"email\":\"Courriel\",\"update\":\"Modifier\",\"update_locale\":\"Modifier\",\"your_locale\":\"Votre langue\"}},\"statistics\":{\"index\":{\"count\":\"Décompte\",\"repo_growth\":\"Croissance de dépôt\",\"total_projects\":\"Total des projets/dépôts\",\"build_count\":\"Décompte des versions\",\"last_month\":\"mois dernier\",\"total_builds\":\"Total des versions\"}},\"admin\":{\"actions\":{\"create\":\"créer\",\"created\":\"créé\",\"delete\":\"supprimer\",\"deleted\":\"supprimé\",\"update\":\"mise à jour\",\"updated\":\"mis à jour\"},\"credentials\":{\"log_out\":\"Déconnection\"},\"delete\":{\"confirmation\":\"Oui, je suis sure\",\"flash_confirmation\":\"%{name} a été détruit avec succès\"},\"flash\":{\"error\":\"%{name} n'a pas pu être %{action}\",\"noaction\":\"Aucune action n'a été entreprise\",\"successful\":\"%{name} a réussi à %{action}\"},\"history\":{\"name\":\"Historique\",\"no_activity\":\"Aucune activité\",\"page_name\":\"Historique pour %{name}\"},\"list\":{\"add_new\":\"Ajouter un nouveau\",\"delete_action\":\"Supprimer\",\"delete_selected\":\"Supprimer la sélection\",\"edit_action\":\"Modifier\",\"search\":\"Rechercher\",\"select\":\"Sélectionner le %{name} à modifier\",\"select_action\":\"Sélectionner\",\"show_all\":\"Montrer tout\"},\"new\":{\"basic_info\":\"Information de base\",\"cancel\":\"Annuler\",\"chosen\":\"%{name} choisi\",\"chose_all\":\"Choisir tout\",\"clear_all\":\"Déselectionner tout\",\"many_chars\":\"caractères ou moins\",\"one_char\":\"caractère.\",\"optional\":\"Optionnel\",\"required\":\"Requis\",\"save\":\"Sauvegarder\",\"save_and_add_another\":\"Sauvegarder et en ajouter un autre\",\"save_and_edit\":\"Sauvegarder et modifier\",\"select_choice\":\"Faites vos choix et cliquez\"},\"dashboard\":{\"add_new\":\"Ajouter un nouveau\",\"last_used\":\"Dernière utilisation\",\"model_name\":\"Nom du modèle\",\"modify\":\"Modification\",\"name\":\"Tableau de bord\",\"pagename\":\"Administration du site\",\"records\":\"Enregistrements\",\"show\":\"Voir\",\"ago\":\"plus tôt\"}},\"home\":{\"name\":\"accueil\"},\"repository\":{\"duration\":\"Durée\"},\"devise\":{\"confirmations\":{\"confirmed\":\"Votre compte a été crée avec succès. Vous être maintenant connecté.\",\"send_instructions\":\"Vous allez recevoir un courriel avec les instructions de confirmation de votre compte dans quelques minutes.\"},\"failure\":{\"inactive\":\"Votre compte n'a pas encore été activé.\",\"invalid\":\"Adresse courriel ou mot de passe invalide.\",\"invalid_token\":\"Jeton d'authentification invalide.\",\"locked\":\"Votre compte est bloqué.\",\"timeout\":\"Votre session est expirée, veuillez vous reconnecter pour continuer.\",\"unauthenticated\":\"Vous devez vous connecter ou vous enregistrer afin de continuer\",\"unconfirmed\":\"Vous devez confirmer votre compte avant de continuer.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instructions de confirmations\"},\"reset_password_instructions\":{\"subject\":\"Instruction de remise à zéro du mot de passe\"},\"unlock_instructions\":{\"subject\":\"Instruction de débloquage\"}},\"passwords\":{\"send_instructions\":\"Vous recevrez un courriel avec les instructions de remise à zéro du mot de passe dans quelques minutes.\",\"updated\":\"Votre mot de passe a été changé avec succès. Vous êtes maintenant connecté.\"},\"registrations\":{\"destroyed\":\"Au revoir! Votre compte a été annulé avec succès. Nous espérons vous revoir bientôt.\",\"signed_up\":\"Vous êtes enregistré avec succès. Si activé, une confirmation vous a été envoyé par courriel.\",\"updated\":\"Votre compte a été mis a jour avec succès\"},\"sessions\":{\"signed_in\":\"Connecté avec succès\",\"signed_out\":\"Déconnecté avec succès\"},\"unlocks\":{\"send_instructions\":\"Vous recevrez un courriel contenant les instructions pour débloquer votre compte dans quelques minutes.\",\"unlocked\":\"Votre compte a été débloqué avec succès.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"étais déja confirmé\",\"not_found\":\"n'a pas été trouvé\",\"not_locked\":\"n'étais pas bloqué\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"ja\":{\"workers\":\"ワーカー\",\"queue\":\"キュー\",\"no_job\":\"ジョブはありません\",\"repositories\":{\"branch\":\"ブランチ\",\"image_url\":\"画像URL\",\"markdown\":\".md\",\"textile\":\".textile\",\"rdoc\":\".rdoc\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"tabs\":{\"current\":\"最新\",\"build_history\":\"ビルド履歴\",\"branches\":\"ブランチまとめ\",\"build\":\"ビルド\",\"job\":\"ジョブ\"}},\"build\":{\"job\":\"ジョブ\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"ビルドマトリクス\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"builds\":{\"name\":\"ビルド\",\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"失敗許容範囲外\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"layouts\":{\"about\":{\"alpha\":\"まだアルファですよ!\",\"join\":\"参加してみよう!\",\"mailing_list\":\"メールリスト\",\"messages\":{\"alpha\":\"Travis-ciは安定したサービスまで後一歩!詳しくはこちら \"},\"repository\":\"リポジトリ\",\"twitter\":\"ツイッター\"},\"application\":{\"fork_me\":\"Githubでフォークしよう\",\"my_repositories\":\"マイリポジトリ\",\"recent\":\"最近\",\"search\":\"検索\",\"sponsers\":\"スポンサー\",\"sponsors_link\":\"スポンサーをもっと見る →\"},\"top\":{\"blog\":\"ブログ\",\"docs\":\"Travisとは?\",\"github_login\":\"Githubでログイン\",\"home\":\"ホーム\",\"profile\":\"プロフィール\",\"sign_out\":\"ログアウト\",\"stats\":\"統計\",\"admin\":\"管理\"},\"mobile\":{\"author\":\"制作者\",\"build\":\"ビルド\",\"build_matrix\":\"ビルドマトリクス\",\"commit\":\"コミット\",\"committer\":\"コミット者\",\"compare\":\"比較\",\"config\":\"設定\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"job\":\"ジョブ\",\"log\":\"ログ\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"email\":\"メール\",\"message\":{\"config\":\"詳細設定\",\"your_repos\":\"以下のスイッチを設定し、Travis-ciを有効にします。Githubへプッシュしたらビルドは自動的に開始します。複数バーションや細かい設定はこちらへ:\"},\"messages\":{\"notice\":\"まずはTravisのはじめ方 を参照してください。\"},\"token\":\"トークン\",\"your_repos\":\"リポジトリ\",\"update\":\"更新\",\"update_locale\":\"更新\",\"your_locale\":\"言語設定\"}},\"statistics\":{\"index\":{\"build_count\":\"ビルド数\",\"count\":\"数\",\"last_month\":\"先月\",\"repo_growth\":\"リポジトリ\",\"total_builds\":\"合計ビルド数\",\"total_projects\":\"合計リポジトリ\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nb\":{\"admin\":{\"actions\":{\"create\":\"opprett\",\"created\":\"opprettet\",\"delete\":\"slett\",\"deleted\":\"slettet\",\"update\":\"oppdater\",\"updated\":\"oppdatert\"},\"credentials\":{\"log_out\":\"Logg ut\"},\"dashboard\":{\"add_new\":\"Legg til ny\",\"ago\":\"siden\",\"last_used\":\"Sist brukt\",\"model_name\":\"Modell\",\"modify\":\"Rediger\",\"name\":\"Dashbord\",\"pagename\":\"Nettstedsadministrasjon\",\"records\":\"Oppføringer\",\"show\":\"Vis\"},\"delete\":{\"confirmation\":\"Ja, jeg er sikker\",\"flash_confirmation\":\"%{name} ble slettet\"},\"flash\":{\"error\":\"%{name} kunne ikke bli %{action}\",\"noaction\":\"Ingen handlinger ble utført\",\"successful\":\"%{name} ble %{action}\"},\"history\":{\"name\":\"Logg\",\"no_activity\":\"Ingen aktivitet\",\"page_name\":\"Logg for %{name}\"},\"list\":{\"add_new\":\"Legg til ny\",\"delete_action\":\"Slett\",\"delete_selected\":\"Slett valgte\",\"edit_action\":\"Rediger\",\"search\":\"Søk\",\"select\":\"Velg %{name} for å redigere\",\"select_action\":\"Velg\",\"show_all\":\"Vis alle \"},\"new\":{\"basic_info\":\"Basisinformasjon\",\"cancel\":\"Avbryt\",\"chosen\":\"Valgt %{name}\",\"chose_all\":\"Velg alle\",\"clear_all\":\"Fjern alle\",\"many_chars\":\"eller færre tegn.\",\"one_char\":\"tegn.\",\"optional\":\"Valgfri\",\"required\":\"Påkrevd\",\"save\":\"Lagre\",\"save_and_add_another\":\"Lagre og legg til ny\",\"save_and_edit\":\"Lagre og rediger\",\"select_choice\":\"Kryss av for dine valg og klikk\"}},\"build\":{\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\"},\"builds\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testen ble kjørt på en maskin sponset av\"},\"name\":\"Jobb\",\"started_at\":\"Startet\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} time\",\"other\":\"%{count} timer\"},\"minutes_exact\":{\"one\":\"%{count} minutt\",\"other\":\"%{count} minutter\"},\"seconds_exact\":{\"one\":\"%{count} sekund\",\"other\":\"%{count} sekunder\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Din konto er aktivert og du er nå innlogget.\",\"send_instructions\":\"Om noen få minutter så vil du få en e-post med informasjon om hvordan du bekrefter kontoen din.\"},\"failure\":{\"inactive\":\"Kontoen din har ikke blitt aktivert enda.\",\"invalid\":\"Ugyldig e-post eller passord.\",\"invalid_token\":\"Ugyldig autentiseringskode.\",\"locked\":\"Kontoen din er låst.\",\"timeout\":\"Du ble logget ut siden på grunn av mangel på aktivitet, vennligst logg inn på nytt.\",\"unauthenticated\":\"Du må logge inn eller registrere deg for å fortsette.\",\"unconfirmed\":\"Du må bekrefte kontoen din før du kan fortsette.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bekreftelsesinformasjon\"},\"reset_password_instructions\":{\"subject\":\"Instruksjoner for å få nytt passord\"},\"unlock_instructions\":{\"subject\":\"Opplåsningsinstruksjoner\"}},\"passwords\":{\"send_instructions\":\"Om noen få minutter så vil du få en epost med informasjon om hvordan du kan få et nytt passord.\",\"updated\":\"Passordet ditt ble endret, og du er logget inn.\"},\"registrations\":{\"destroyed\":\"Adjø! Kontoen din ble kansellert. Vi håper vi ser deg igjen snart.\",\"signed_up\":\"Du er nå registrert.\",\"updated\":\"Kontoen din ble oppdatert.\"},\"sessions\":{\"signed_in\":\"Du er nå logget inn.\",\"signed_out\":\"Du er nå logget ut.\"},\"unlocks\":{\"send_instructions\":\"Om noen få minutter så kommer du til å få en e-post med informasjon om hvordan du kan låse opp kontoen din.\",\"unlocked\":\"Kontoen din ble låst opp, og du er nå logget inn igjen.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"har allerede blitt bekreftet\",\"not_found\":\"ikke funnnet\",\"not_locked\":\"var ikke låst\"}},\"home\":{\"name\":\"hjem\"},\"jobs\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testserien ble kjørt på en maskin sponset av\"},\"started_at\":\"Startet\"},\"layouts\":{\"about\":{\"alpha\":\"Dette er alfa-greier.\",\"join\":\"Bli med og hjelp oss!\",\"mailing_list\":\"E-postliste\",\"messages\":{\"alpha\":\"Dette er ikke en stabil tjeneste. Vi har fremdeles et stykke igjen! Mer informasjon finner du her .\"},\"repository\":\"Kodelager\",\"twitter\":\"Twitter.\"},\"application\":{\"fork_me\":\"Se koden på Github\",\"my_repositories\":\"Mine kodelagre\",\"recent\":\"Nylig\",\"search\":\"Søk\",\"sponsers\":\"Sponsorer\",\"sponsors_link\":\"Se alle de flotte sponsorene våre →\"},\"mobile\":{\"author\":\"Forfatter\",\"build\":\"Jobb\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\",\"log\":\"Logg\"},\"top\":{\"admin\":\"Administrator\",\"blog\":\"Blogg\",\"docs\":\"Dokumentasjon\",\"github_login\":\"Logg inn med Github\",\"home\":\"Hjem\",\"profile\":\"Profil\",\"sign_out\":\"Logg ut\",\"stats\":\"Statistikk\"}},\"no_job\":\"Ingen jobber finnnes\",\"profiles\":{\"show\":{\"email\":\"E-post\",\"github\":\"Github\",\"message\":{\"config\":\"hvordan sette opp egne jobbinnstillinger\",\"your_repos\":\"Slå\\u0010 på Travis for prosjektene dine ved å dra i bryterne under, og send koden til Github. \\nFor å teste mot flere ruby-versjoner, se dokumentasjonen for\"},\"messages\":{\"notice\":\"For å komme i gang, vennligst les kom-i-gang-veivisereren vår. Det tar bare et par minutter. \"},\"token\":\"Kode\",\"update\":\"Oppdater\",\"update_locale\":\"Oppdater\",\"your_locale\":\"Ditt språk\",\"your_repos\":\"Dine kodelagre\"}},\"queue\":\"Kø\",\"repositories\":{\"branch\":\"Gren\",\"commit\":\"Innsender\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"image_url\":\"Bilde-URL\",\"markdown\":\"Markdown\",\"message\":\"Beskrivelse\",\"rdoc\":\"RDOC\",\"started_at\":\"Startet\",\"tabs\":{\"branches\":\"Grensammendrag\",\"build\":\"Jobb\",\"build_history\":\"Jobblogg\",\"current\":\"Siste\",\"job\":\"Jobb\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Varighet\"},\"statistics\":{\"index\":{\"build_count\":\"Antall jobber\",\"count\":\"Antall\",\"last_month\":\"siste måned\",\"repo_growth\":\"Vekst i kodelager\",\"total_builds\":\"Totale jobber\",\"total_projects\":\"Antall prosjekter/kodelagre\"}},\"workers\":\"Arbeidere\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nl\":{\"admin\":{\"actions\":{\"create\":\"aanmaken\",\"created\":\"aangemaakt\",\"delete\":\"verwijderen\",\"deleted\":\"verwijderd\",\"update\":\"bijwerken\",\"updated\":\"bijgewerkt\"},\"credentials\":{\"log_out\":\"Afmelden\"},\"dashboard\":{\"add_new\":\"Nieuwe toevoegen\",\"ago\":\"geleden\",\"last_used\":\"Laatst gebruikt\",\"model_name\":\"Model naam\",\"modify\":\"Wijzigen\",\"pagename\":\"Site administratie\",\"show\":\"Laten zien\",\"records\":\"Gegevens\"},\"delete\":{\"confirmation\":\"Ja, ik ben zeker\",\"flash_confirmation\":\"%{name} is vernietigd\"},\"flash\":{\"error\":\"%{name} kon niet worden %{action}\",\"noaction\":\"Er zijn geen acties genomen\",\"successful\":\"%{name} is %{action}\"},\"history\":{\"name\":\"Geschiedenis\",\"no_activity\":\"Geen activiteit\",\"page_name\":\"Geschiedenis van %{name}\"},\"list\":{\"add_new\":\"Nieuwe toevoegen\",\"delete_action\":\"Verwijderen\",\"delete_selected\":\"Verwijder geselecteerden\",\"edit_action\":\"Bewerken\",\"search\":\"Zoeken\",\"select\":\"Selecteer %{name} om te bewerken\",\"select_action\":\"Selecteer\",\"show_all\":\"Laat allen zien\"},\"new\":{\"basic_info\":\"Basisinfo\",\"cancel\":\"Annuleren\",\"chosen\":\"%{name} gekozen\",\"chose_all\":\"Kies allen\",\"clear_all\":\"Deselecteer allen\",\"many_chars\":\"tekens of minder.\",\"one_char\":\"teken.\",\"optional\":\"Optioneel\",\"required\":\"Vereist\",\"save\":\"Opslaan\",\"save_and_add_another\":\"Opslaan en een nieuwe toevoegen\",\"save_and_edit\":\"Opslaan en bewerken\",\"select_choice\":\"Selecteer uw keuzes en klik\"}},\"build\":{\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"job\":\"Taak\"},\"builds\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw Matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze tests zijn gedraaid op een machine gesponsord door\"},\"name\":\"Bouw\",\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} uur\",\"other\":\"%{count} uren\"},\"minutes_exact\":{\"one\":\"%{count} minuut\",\"other\":\"%{count} minuten\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} seconden\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Uw account is bevestigd. U wordt nu ingelogd.\",\"send_instructions\":\"Binnen enkele minuten zal u een email ontvangen met instructies om uw account te bevestigen.\"},\"failure\":{\"inactive\":\"Uw account is nog niet geactiveerd.\",\"invalid\":\"Ongeldig email adres of wachtwoord.\",\"invalid_token\":\"Ongeldig authenticatie token.\",\"locked\":\"Uw account is vergrendeld.\",\"timeout\":\"Uw sessie is verlopen, gelieve opnieuw in te loggen om verder te gaan.\",\"unauthenticated\":\"U moet inloggen of u registeren voordat u verder gaat.\",\"unconfirmed\":\"U moet uw account bevestigen voordat u verder gaat.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bevestigings-instructies\"},\"reset_password_instructions\":{\"subject\":\"Wachtwoord herstel instructies\"},\"unlock_instructions\":{\"subject\":\"Ontgrendel-instructies\"}},\"passwords\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw wachtwoord opnieuw in te stellen.\",\"updated\":\"Uw wachtwoord is veranderd. U wordt nu ingelogd.\"},\"registrations\":{\"destroyed\":\"Dag! Uw account is geannuleerd. We hopen u vlug terug te zien.\",\"signed_up\":\"Uw registratie is voltooid. Als het ingeschakeld is wordt een bevestiging naar uw email adres verzonden.\",\"updated\":\"Het bijwerken van uw account is gelukt.\"},\"sessions\":{\"signed_in\":\"Inloggen gelukt.\",\"signed_out\":\"Uitloggen gelukt.\"},\"unlocks\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw account te ontgrendelen.\",\"unlocked\":\"Uw account is ontgrendeld. U wordt nu ingelogd.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"was al bevestigd\",\"not_found\":\"niet gevonden\",\"not_locked\":\"was niet vergrendeld\"}},\"jobs\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze testen zijn uitgevoerd op een machine gesponsord door\"},\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"layouts\":{\"about\":{\"alpha\":\"Dit is in alfa-stadium.\",\"join\":\"Doe met ons mee en help!\",\"mailing_list\":\"Mailing lijst\",\"messages\":{\"alpha\":\"Gelieve deze service niet te beschouwen als stabiel. Daar zijn we nog lang niet! Meer info hier. \"},\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Maak een fork op Github\",\"my_repositories\":\"Mijn repositories\",\"recent\":\"Recent\",\"search\":\"Zoeken\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Bekijk al onze geweldige sponsors →\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Bouw\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid op\",\"job\":\"Taak\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"log\":\"Logboek\"},\"top\":{\"admin\":\"Administratie\",\"blog\":\"Blog\",\"docs\":\"Documentatie\",\"github_login\":\"Inloggen met Github\",\"home\":\"Home\",\"profile\":\"Profiel\",\"sign_out\":\"Uitloggen\",\"stats\":\"Statistieken\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Er zijn geen taken\",\"profiles\":{\"show\":{\"email\":\"Email adres\",\"github\":\"Github\",\"message\":{\"config\":\"hoe eigen bouw-opties in te stellen\",\"your_repos\":\"Zet de schakelaars hieronder aan om de Travis hook voor uw projecten te activeren en push daarna naar Github \\nOm te testen tegen meerdere rubies, zie\"},\"messages\":{\"notice\":\"Om te beginnen kunt u onze startersgids lezen.\\\\n Het zal maar enkele minuten van uw tijd vergen. \"},\"update\":\"Bijwerken\",\"update_locale\":\"Bijwerken\",\"your_locale\":\"Uw taal\",\"your_repos\":\"Uw repositories\",\"token\":\"Token\"}},\"queue\":\"Wachtrij\",\"repositories\":{\"branch\":\"Tak\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"image_url\":\"Afbeeldings URL\",\"message\":\"Bericht\",\"started_at\":\"Gestart\",\"tabs\":{\"branches\":\"Tak samenvatting\",\"build\":\"Bouw\",\"build_history\":\"Bouw geschiedenis\",\"current\":\"Huidig\",\"job\":\"Taak\"},\"commit\":\"Commit\",\"markdown\":\"Markdown\",\"rdoc\":\"RDOC\",\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duur\"},\"statistics\":{\"index\":{\"build_count\":\"Bouw aantal\",\"count\":\"Aantal\",\"last_month\":\"voorbije maand\",\"repo_growth\":\"Repository groei\",\"total_builds\":\"Bouw totaal\",\"total_projects\":\"Projecten/Repository totaal\"}},\"workers\":\"Machines\",\"home\":{\"name\":\"Hoofdpagina\"}},\"pl\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} godzina\",\"other\":\"%{count} godziny\"},\"minutes_exact\":{\"one\":\"%{count} minuta\",\"other\":\"%{count} minuty\"},\"seconds_exact\":{\"one\":\"%{count} sekunda\",\"other\":\"%{count} sekundy\"}}},\"workers\":\"Workers\",\"queue\":\"Kolejka\",\"no_job\":\"Brak zadań\",\"repositories\":{\"branch\":\"Gałąź\",\"image_url\":\"URL obrazka\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"tabs\":{\"current\":\"Aktualny\",\"build_history\":\"Historia Buildów\",\"branches\":\"Wszystkie Gałęzie\",\"build\":\"Build\",\"job\":\"Zadanie\"}},\"build\":{\"job\":\"Zadanie\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Committer\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Komitujący\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"layouts\":{\"top\":{\"home\":\"Start\",\"blog\":\"Blog\",\"docs\":\"Dokumentacja\",\"stats\":\"Statystki\",\"github_login\":\"Zaloguj się przy pomocy Githuba\",\"profile\":\"Profil\",\"sign_out\":\"Wyloguj się\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Ostatnie\",\"search\":\"Wyniki\",\"sponsers\":\"Sponsorzy\",\"sponsors_link\":\"Zobacz naszych wszystkich wspaniałych sponsorów →\",\"my_repositories\":\"Moje repozytoria\"},\"about\":{\"alpha\":\"To wciąż jest wersja alpha.\",\"messages\":{\"alpha\":\"Proszę nie traktuj tego jako stabilnej usługi. Wciąż nam wiele do tego brakuje! Więcej informacji znajdziesz tutaj. \"},\"join\":\"Pomóż i dołącz do nas!\",\"mailing_list\":\"Lista mailingowa\",\"repository\":\"Repozytorium\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Macierz Buildów\",\"commit\":\"Commit\",\"committer\":\"Komitujący\",\"compare\":\"Porównianie\",\"config\":\"Konfiguracja\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"job\":\"Zadanie\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Przesuń suwak poniżej, aby włączyć Travisa, dla twoich projektów, a następnie umieść swój kod na GitHubie. \\n Aby testować swój kod przy użyciu wielu wersji Rubiego, zobacz\",\"config\":\"jak skonfigurować niestandardowe opcje builda\"},\"messages\":{\"notice\":\"Aby zacząć, przeczytaj nasz Przewodnik .\\n Zajmie ci to tylko kilka minut. \"},\"token\":\"Token\",\"your_repos\":\"Twoje repozytoria\"}},\"statistics\":{\"index\":{\"count\":\"Ilość\",\"repo_growth\":\"Przyrost repozytoriów\",\"total_projects\":\"Łącznie projektów/repozytoriów\",\"build_count\":\"Liczba buildów\",\"last_month\":\"ostatni miesiąc\",\"total_builds\":\"Łącznie Buildów\"}},\"date\":{\"abbr_day_names\":[\"nie\",\"pon\",\"wto\",\"śro\",\"czw\",\"pią\",\"sob\"],\"abbr_month_names\":[\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\"],\"day_names\":[\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\"formats\":{\"default\":\"%d-%m-%Y\",\"long\":\"%B %d, %Y\",\"short\":\"%d %b\"},\"month_names\":[\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\"],\"order\":[\"day\",\"month\",\"year\"]},\"errors\":{\"format\":\"%{attribute} %{message}\",\"messages\":{\"accepted\":\"musi zostać zaakceptowane\",\"blank\":\"nie może być puste\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"pt-BR\":{\"admin\":{\"actions\":{\"create\":\"criar\",\"created\":\"criado\",\"delete\":\"deletar\",\"deleted\":\"deletado\",\"update\":\"atualizar\",\"updated\":\"atualizado\"},\"credentials\":{\"log_out\":\"Deslogar\"},\"dashboard\":{\"add_new\":\"Adicionar novo\",\"ago\":\"atrás\",\"last_used\":\"Última utilização\",\"model_name\":\"Nome do modelo\",\"modify\":\"Modificar\",\"name\":\"Dashboard\",\"pagename\":\"Administração do site\",\"records\":\"Registros\",\"show\":\"Mostrar\"},\"delete\":{\"confirmation\":\"Sim, tenho certeza\",\"flash_confirmation\":\"%{name} foi destruído com sucesso\"},\"flash\":{\"error\":\"%{name} falhou ao %{action}\",\"noaction\":\"Nenhuma ação foi tomada\",\"successful\":\"%{name} foi %{action} com sucesso\"},\"history\":{\"name\":\"Histórico\",\"no_activity\":\"Nenhuma Atividade\",\"page_name\":\"Histórico para %{name}\"},\"list\":{\"add_new\":\"Adicionar novo\",\"delete_action\":\"Deletar\",\"delete_selected\":\"Deletar selecionados\",\"edit_action\":\"Editar\",\"search\":\"Buscar\",\"select\":\"Selecionar %{name} para editar\",\"select_action\":\"Selecionar\",\"show_all\":\"Mostrar todos\"},\"new\":{\"basic_info\":\"Informações básicas\",\"cancel\":\"Cancelar\",\"chosen\":\"Escolhido %{name}\",\"chose_all\":\"Escolher todos\",\"clear_all\":\"Limpar todos\",\"many_chars\":\"caracteres ou menos.\",\"one_char\":\"caractere.\",\"optional\":\"Opcional\",\"required\":\"Requerido\",\"save\":\"Salvar\",\"save_and_add_another\":\"Salvar e adicionar outro\",\"save_and_edit\":\"Salvar e alterar\",\"select_choice\":\"Selecione e clique\"}},\"build\":{\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\"},\"builds\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"name\":\"Build\",\"started_at\":\"Iniciou em\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Sua conta foi confirmada com sucesso. Você agora está logado.\",\"send_instructions\":\"Você receberá um email com instruções de como confirmar sua conta em alguns minutos.\"},\"failure\":{\"inactive\":\"Sua conta ainda não foi ativada.\",\"invalid\":\"Email ou senha inválidos.\",\"invalid_token\":\"Token de autenticação inválido.\",\"locked\":\"Sua conta está trancada.\",\"timeout\":\"Sua sessão expirou, por favor faça seu login novamente.\",\"unauthenticated\":\"Você precisa fazer o login ou cadastrar-se antes de continuar.\",\"unconfirmed\":\"Você precisa confirmar sua conta antes de continuar.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instruções de confirmação\"},\"reset_password_instructions\":{\"subject\":\"Instruções de atualização de senha\"},\"unlock_instructions\":{\"subject\":\"Instruções de destrancamento\"}},\"passwords\":{\"send_instructions\":\"Você receberá um email com instruções de como atualizar sua senha em alguns minutos.\",\"updated\":\"Sua senha foi alterada com sucesso. Você agora está logado.\"},\"registrations\":{\"destroyed\":\"Tchau! Sua conta foi cancelada com sucesso. Esperamos vê-lo novamente em breve!\",\"signed_up\":\"Você se cadastrou com sucesso. Se ativada, uma confirmação foi enviada para seu email.\",\"updated\":\"Você atualizou sua conta com sucesso.\"},\"sessions\":{\"signed_in\":\"Logado com sucesso.\",\"signed_out\":\"Deslogado com sucesso.\"},\"unlocks\":{\"send_instructions\":\"Você receberá um email com instruções de como destrancar sua conta em alguns minutos.\",\"unlocked\":\"Sua conta foi destrancada com sucesso. Você agora está logado.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"já foi confirmado\",\"not_found\":\"não encontrado\",\"not_locked\":\"não estava trancado\"}},\"home\":{\"name\":\"home\"},\"jobs\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"started_at\":\"Iniciou em\"},\"layouts\":{\"about\":{\"alpha\":\"Isto é um alpha.\",\"join\":\"Junte-se à nós e ajude!\",\"mailing_list\":\"Lista de email\",\"messages\":{\"alpha\":\"Por favor, não considere isto um serviço estável. Estamos muito longe disso! Mais informações aqui. \"},\"repository\":\"Repositório\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Faça fork no Github\",\"my_repositories\":\"Meus Repositórios\",\"recent\":\"Recentes\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Conheça todos os nossos patrocinadores →\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\",\"log\":\"Log\"},\"top\":{\"admin\":\"Admin\",\"blog\":\"Blog\",\"docs\":\"Documentação\",\"github_login\":\"Logue com o Github\",\"home\":\"Home\",\"profile\":\"Perfil\",\"sign_out\":\"Sair\",\"stats\":\"Estatísticas\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Não há trabalhos\",\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"config\":\"como configurar opções de build\",\"your_repos\":\"Use os botões abaixo para ligar ou desligar o hook de serviço do Travis para seus projetos, e então, faça um push para o Github. Para testar com múltiplas versões do Ruby, leia\"},\"messages\":{\"notice\":\"Para começar, leia nosso Guia de início . Só leva alguns minutinhos. \"},\"token\":\"Token\",\"update\":\"Atualizar\",\"update_locale\":\"Atualizar\",\"your_locale\":\"Sua língua\",\"your_repos\":\"Seus Repositórios\"}},\"queue\":\"Fila\",\"repositories\":{\"branch\":\"Branch\",\"commit\":\"Commit\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"image_url\":\"URL da imagem\",\"markdown\":\"Markdown\",\"message\":\"Mensagem\",\"rdoc\":\"RDOC\",\"started_at\":\"Iniciou em\",\"tabs\":{\"branches\":\"Sumário do Branch\",\"build\":\"Build\",\"build_history\":\"Histórico de Build\",\"current\":\"Atual\",\"job\":\"Trabalho\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duração\"},\"statistics\":{\"index\":{\"build_count\":\"Número de Builds\",\"count\":\"Número\",\"last_month\":\"último mês\",\"repo_growth\":\"Crescimento de Repositório\",\"total_builds\":\"Total de Builds\",\"total_projects\":\"Total de Projetos/Repositórios\"}},\"workers\":\"Processos\"},\"ru\":{\"admin\":{\"actions\":{\"create\":\"создать\",\"created\":\"создано\",\"delete\":\"удалить\",\"deleted\":\"удалено\",\"update\":\"обновить\",\"updated\":\"обновлено\"},\"credentials\":{\"log_out\":\"Выход\"},\"dashboard\":{\"add_new\":\"Добавить\",\"ago\":\"назад\",\"last_used\":\"Использовалось в последний раз\",\"model_name\":\"Имя модели\",\"modify\":\"Изменить\",\"name\":\"Панель управления\",\"pagename\":\"Управление сайтом\",\"records\":\"Записи\",\"show\":\"Показать\"},\"delete\":{\"confirmation\":\"Да, я уверен\",\"flash_confirmation\":\"%{name} успешно удалено\"},\"history\":{\"name\":\"История\",\"no_activity\":\"Нет активности\",\"page_name\":\"История %{name}\"},\"list\":{\"add_new\":\"Добавить\",\"delete_action\":\"Удалить\",\"delete_selected\":\"Удалить выбранные\",\"edit_action\":\"Редактировать\",\"search\":\"Поиск\",\"select\":\"Для редактирования выберите %{name}\",\"select_action\":\"Выбрать\",\"show_all\":\"Показать все\"},\"new\":{\"basic_info\":\"Основная информация\",\"cancel\":\"Отмена\",\"chosen\":\"Выбрано %{name}\",\"chose_all\":\"Выбрать все\",\"clear_all\":\"Очистить все\",\"one_char\":\"символ.\",\"optional\":\"Необязательно\",\"required\":\"Обязательно\",\"save\":\"Сохранить\",\"save_and_add_another\":\"Сохранить и добавить другое\",\"save_and_edit\":\"Сохранить и продолжить редактирование\",\"select_choice\":\"Выберите и кликните\",\"many_chars\":\"символов или меньше.\"},\"flash\":{\"error\":\"%{name} не удалось %{action}\",\"noaction\":\"Никаких действий не произведено\",\"successful\":\"%{name} было успешно %{action}\"}},\"build\":{\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\"},\"builds\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Дифф\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине, спонсируемой\"},\"name\":\"Билд\",\"started_at\":\"Начало\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} час\",\"few\":\"%{count} часа\",\"many\":\"%{count} часов\",\"other\":\"%{count} часа\"},\"minutes_exact\":{\"one\":\"%{count} минута\",\"few\":\"%{count} минуты\",\"many\":\"%{count} минут\",\"other\":\"%{count} минуты\"},\"seconds_exact\":{\"one\":\"%{count} секунда\",\"few\":\"%{count} секунды\",\"many\":\"%{count} секунд\",\"other\":\"%{count} секунды\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Ваш аккаунт успешно подтвержден. Приветствуем!\",\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для прохождения процедуры подтверждения аккаунта.\"},\"failure\":{\"inactive\":\"Ваш аккаунт еще не активирован.\",\"invalid\":\"Ошибка в адресе почты или пароле.\",\"invalid_token\":\"Неправильный токен аутентификации.\",\"locked\":\"Ваш аккаунт заблокирован.\",\"timeout\":\"Сессия окончена. Для продолжения работы войдите снова.\",\"unauthenticated\":\"Вам нужно войти или зарегистрироваться.\",\"unconfirmed\":\"Вы должны сначала подтвердить свой аккаунт.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Инструкции для подтверждению аккаунта\"},\"reset_password_instructions\":{\"subject\":\"Инструкции для сброса пароля\"},\"unlock_instructions\":{\"subject\":\"Инструкции для разблокирования аккаунта\"}},\"passwords\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для сброса пароля.\",\"updated\":\"Ваш пароль успешно изменен. Приветствуем!\"},\"registrations\":{\"destroyed\":\"Ваш аккаунт был успешно удален. Живите долго и процветайте!\",\"signed_up\":\"Вы успешно прошли регистрацию. Инструкции для подтверждения аккаунта отправлены на ваш электронный адрес.\",\"updated\":\"Аккаунт успешно обновлен.\"},\"sessions\":{\"signed_in\":\"Приветствуем!\",\"signed_out\":\"Удачи!\"},\"unlocks\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциям для разблокировния аккаунта.\",\"unlocked\":\"Ваш аккаунт успешно разблокирован. Приветствуем!\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"уже подтвержден\",\"not_found\":\"не найден\",\"not_locked\":\"не заблокирован\"}},\"home\":{\"name\":\"Главная\"},\"jobs\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине спонсируемой\"},\"started_at\":\"Начало\"},\"layouts\":{\"about\":{\"alpha\":\"Это альфа-версия\",\"join\":\"Присоединяйтесь к нам и помогайте!\",\"mailing_list\":\"Лист рассылки\",\"messages\":{\"alpha\":\"Пожалуйста, не считайте данный сервис стабильным. Мы еще очень далеки от стабильности! Подробности \"},\"repository\":\"Репозиторий\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"my_repositories\":\"Мои репозитории\",\"recent\":\"Недавние\",\"search\":\"Поиск\",\"sponsers\":\"Спонсоры\",\"sponsors_link\":\"Список всех наших замечательных спонсоров →\"},\"mobile\":{\"author\":\"Автор\",\"build\":\"Сборка\",\"build_matrix\":\"Матрица сборок\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\",\"log\":\"Журнал\"},\"top\":{\"admin\":\"Управление\",\"blog\":\"Блог\",\"docs\":\"Документация\",\"github_login\":\"Войти через Github\",\"home\":\"Главная\",\"profile\":\"Профиль\",\"sign_out\":\"Выход\",\"stats\":\"Статистика\"}},\"no_job\":\"Очередь пуста\",\"profiles\":{\"show\":{\"email\":\"Электронная почта\",\"github\":\"Github\",\"message\":{\"config\":\"как настроить специальные опции билда\",\"your_repos\":\"Используйте переключатели, чтобы включить Travis service hook для вашего проекта, а потом отправьте код на GitHub. \\nДля тестирования на нескольких версиях Ruby смотрите\"},\"messages\":{\"notice\":\"Перед началом, пожалуйста, прочтите Руководство для быстрого старта . Это займет всего несколько минут. \"},\"token\":\"Токен\",\"update\":\"Обновить\",\"update_locale\":\"Обновить\",\"your_locale\":\"Ваш язык\",\"your_repos\":\"Ваши репозитории\"}},\"queue\":\"Очередь\",\"repositories\":{\"branch\":\"Ветка\",\"commit\":\"Коммит\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"image_url\":\"URL изображения\",\"markdown\":\"Markdown\",\"message\":\"Комментарий\",\"rdoc\":\"RDOC\",\"started_at\":\"Начало\",\"tabs\":{\"branches\":\"Статус веток\",\"build\":\"Билд\",\"build_history\":\"История\",\"current\":\"Текущий\",\"job\":\"Задача\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Длительность\"},\"statistics\":{\"index\":{\"build_count\":\"Количество билдов\",\"count\":\"Количество\",\"last_month\":\"прошлый месяц\",\"repo_growth\":\"Рост числа репозиториев\",\"total_builds\":\"Всего билдов\",\"total_projects\":\"Всего проектов/репозиториев\"}},\"workers\":\"Машины\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}}};\n\n\n})();\n//@ sourceURL=config/locales");minispade.register('ext/ember/bound_helper', "(function() {// https://gist.github.com/2018185\n// For reference: https://github.com/wagenet/ember.js/blob/ac66dcb8a1cbe91d736074441f853e0da474ee6e/packages/ember-handlebars/lib/views/bound_property_view.js\nvar BoundHelperView = Ember.View.extend(Ember._Metamorph, {\n\n context: null,\n options: null,\n property: null,\n // paths of the property that are also observed\n propertyPaths: [],\n\n value: Ember.K,\n\n valueForRender: function() {\n var value = this.value(Ember.get(this.context, this.property), this.options);\n if (this.options.escaped) { value = Handlebars.Utils.escapeExpression(value); }\n return value;\n },\n\n render: function(buffer) {\n buffer.push(this.valueForRender());\n },\n\n valueDidChange: function() {\n if (this.morph.isRemoved()) { return; }\n this.morph.html(this.valueForRender());\n },\n\n didInsertElement: function() {\n this.valueDidChange();\n },\n\n init: function() {\n this._super();\n Ember.addObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n Ember.addObserver(this.context, this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n },\n\n destroy: function() {\n Ember.removeObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n this.context.removeObserver(this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n this._super();\n }\n\n});\n\nEmber.registerBoundHelper = function(name, func) {\n var propertyPaths = Array.prototype.slice.call(arguments, 2);\n Ember.Handlebars.registerHelper(name, function(property, options) {\n var data = options.data,\n view = data.view,\n ctx = this;\n\n var bindView = view.createChildView(BoundHelperView, {\n property: property,\n propertyPaths: propertyPaths,\n context: ctx,\n options: options.hash,\n value: func\n });\n\n view.appendChild(bindView);\n });\n};\n\n\n})();\n//@ sourceURL=ext/ember/bound_helper");minispade.register('ext/ember/namespace', "(function() {Em.Namespace.reopen = Em.Namespace.reopenClass\n\n\n\n})();\n//@ sourceURL=ext/ember/namespace");
\ No newline at end of file
+;minispade.register('app', "(function() {(function() {\nminispade.require('auth');\nminispade.require('controllers');\nminispade.require('helpers');\nminispade.require('models');\nminispade.require('pusher');\nminispade.require('routes');\nminispade.require('slider');\nminispade.require('store');\nminispade.require('tailing');\nminispade.require('templates');\nminispade.require('views');\nminispade.require('config/locales');\nminispade.require('data/sponsors');\n\n Travis.reopen({\n App: Em.Application.extend({\n autoinit: false,\n currentUserBinding: 'auth.user',\n authStateBinding: 'auth.state',\n init: function() {\n this._super.apply(this, arguments);\n this.store = Travis.Store.create();\n this.store.loadMany(Travis.Sponsor, Travis.SPONSORS);\n this.set('auth', Travis.Auth.create({\n app: this,\n endpoint: Travis.config.api_endpoint\n }));\n this.slider = new Travis.Slider();\n this.pusher = new Travis.Pusher(Travis.config.pusher_key);\n return this.tailing = new Travis.Tailing();\n },\n signIn: function() {\n return this.get('auth').signIn();\n },\n autoSignIn: function() {\n return this.get('auth').autoSignIn();\n },\n signOut: function() {\n this.get('auth').signOut();\n return this.get('router').send('afterSignOut');\n },\n receive: function() {\n return this.store.receive.apply(this.store, arguments);\n },\n toggleSidebar: function() {\n var element;\n $('body').toggleClass('maximized');\n element = $(' ');\n $('#top .profile').append(element);\n Em.run.later((function() {\n return element.remove();\n }), 10);\n element = $(' ');\n $('#repo').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=app");minispade.register('auth', "(function() {(function() {\n\n this.Travis.Auth = Ember.Object.extend({\n iframe: $('').hide(),\n timeout: 5000,\n state: 'signed-out',\n receivingEnd: \"\" + location.protocol + \"//\" + location.host,\n init: function() {\n var _this = this;\n this.iframe.appendTo('body');\n window.addEventListener('message', function(e) {\n return _this.receiveMessage(e);\n });\n return this.loadUser();\n },\n accessToken: (function() {\n return sessionStorage.getItem('travis.token');\n }).property(),\n loadUser: function() {\n var user;\n if (user = sessionStorage.getItem('travis.user')) {\n return this.setData({\n user: JSON.parse(user)\n });\n } else {\n return this.autoSignIn();\n }\n },\n signIn: function() {\n this.set('state', 'signing-in');\n this.trySignIn();\n return Ember.run.later(this, this.checkSignIn.bind(this), this.timeout);\n },\n autoSignIn: function() {\n if (localStorage.getItem('travis.auto_signin')) {\n return this.signIn();\n }\n },\n signOut: function() {\n localStorage.clear();\n sessionStorage.clear();\n return this.setData();\n },\n trySignIn: function() {\n return this.iframe.attr('src', \"\" + this.endpoint + \"/auth/post_message?origin=\" + this.receivingEnd);\n },\n checkSignIn: function() {\n if (this.get('state') === 'signing-in') {\n return this.forceSignIn();\n }\n },\n forceSignIn: function() {\n localStorage.setItem('travis.auto_signin', 'true');\n return window.location = \"\" + this.endpoint + \"/auth/handshake?redirect_uri=\" + location;\n },\n setData: function(data) {\n var router, user, _ref;\n if (typeof data === 'string') {\n data = JSON.parse(data);\n }\n if (data != null ? data.token : void 0) {\n this.storeToken(data.token);\n }\n if (data != null ? data.user : void 0) {\n user = this.storeUser(data.user);\n }\n this.set('state', user ? 'signed-in' : 'signed-out');\n this.set('user', user ? user : void 0);\n if (router = (_ref = Travis.app) != null ? _ref.get('router') : void 0) {\n return router.send('afterSignIn');\n }\n },\n storeToken: function(token) {\n sessionStorage.setItem('travis.token', token);\n return this.notifyPropertyChange('accessToken');\n },\n storeUser: function(user) {\n localStorage.setItem('travis.auto_signin', 'true');\n sessionStorage.setItem('travis.user', JSON.stringify(user));\n this.app.store.load(Travis.User, user);\n user = this.app.store.find(Travis.User, user.id);\n user.get('permissions');\n return user;\n },\n receiveMessage: function(event) {\n if (event.origin === this.expectedOrigin()) {\n if (event.data.token) {\n event.data.user.token = event.data.token;\n }\n this.setData(event.data);\n return console.log(\"signed in as \" + event.data.user.login);\n } else {\n return console.log(\"unexpected message \" + event.origin + \": \" + event.data);\n }\n },\n expectedOrigin: function() {\n if (this.endpoint[0] === '/') {\n return this.receivingEnd;\n } else {\n return this.endpoint;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=auth");minispade.register('controllers', "(function() {(function() {\nminispade.require('helpers');\nminispade.require('travis/ticker');\n\n Travis.reopen({\n Controller: Em.Controller.extend({\n connectOutlet: function() {\n var view, _connectedOutletViews;\n view = this._super.apply(this, arguments);\n if (view) {\n _connectedOutletViews = Travis.app.get('_connectedOutletViews');\n if (!_connectedOutletViews) {\n _connectedOutletViews = [];\n }\n _connectedOutletViews.pushObject(view);\n Travis.app.set('_connectedOutletViews', _connectedOutletViews);\n }\n return view;\n }\n }),\n TopController: Em.Controller.extend({\n userBinding: 'Travis.app.currentUser'\n }),\n ApplicationController: Em.Controller.extend(),\n MainController: Em.Controller.extend(),\n StatsLayoutController: Em.Controller.extend(),\n ProfileLayoutController: Em.Controller.extend(),\n AuthLayoutController: Em.Controller.extend()\n });\nminispade.require('controllers/accounts');\nminispade.require('controllers/builds');\nminispade.require('controllers/flash');\nminispade.require('controllers/home');\nminispade.require('controllers/profile');\nminispade.require('controllers/repos');\nminispade.require('controllers/repo');\nminispade.require('controllers/sidebar');\nminispade.require('controllers/stats');\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers");minispade.register('controllers/accounts', "(function() {(function() {\n\n Travis.AccountsController = Ember.ArrayController.extend({\n tab: 'accounts',\n init: function() {\n return this._super();\n },\n findByLogin: function(login) {\n return this.find(function(account) {\n return account.get('login') === login;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/accounts");minispade.register('controllers/builds', "(function() {(function() {\n\n Travis.BuildsController = Em.ArrayController.extend({\n repo: 'parent.repo',\n contentBinding: 'parent.builds'\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/builds");minispade.register('controllers/flash', "(function() {(function() {\n\n Travis.FlashController = Ember.ArrayController.extend({\n init: function() {\n this._super.apply(this, arguments);\n return this.set('content', Ember.A());\n },\n pushObjects: function(objects) {\n Ember.run.later(this, (function() {\n return this.removeObjects(objects);\n }), 10000);\n return this._super(objects);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/flash");minispade.register('controllers/home', "(function() {(function() {\n\n Travis.HomeLayoutController = Travis.Controller.extend();\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/home");minispade.register('controllers/profile', "(function() {(function() {\n\n Travis.ProfileController = Travis.Controller.extend({\n name: 'profile',\n userBinding: 'Travis.app.currentUser',\n accountsBinding: 'Travis.app.router.accountsController',\n account: (function() {\n var account, login;\n login = this.get('params.login') || Travis.app.get('currentUser.login');\n account = this.get('accounts').filter(function(account) {\n if (account.get('login') === login) {\n return account;\n }\n })[0];\n if (account) {\n account.select();\n }\n return account;\n }).property('accounts.length', 'params.login'),\n activate: function(action, params) {\n this.setParams(params || this.get('params'));\n return this[\"view\" + ($.camelize(action))]();\n },\n viewHooks: function() {\n this.connectTab('hooks');\n return this.set('hooks', Travis.Hook.find({\n owner_name: this.get('params.login') || Travis.app.get('currentUser.login')\n }));\n },\n viewUser: function() {\n return this.connectTab('user');\n },\n connectTab: function(tab) {\n var viewClass;\n viewClass = Travis[\"\" + ($.camelize(tab)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n setParams: function(params) {\n var key, value, _results;\n this.set('params', {});\n _results = [];\n for (key in params) {\n value = params[key];\n _results.push(this.set(\"params.\" + key, params[key]));\n }\n return _results;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/profile");minispade.register('controllers/repo', "(function() {(function() {\n\n Travis.RepoController = Travis.Controller.extend({\n bindings: [],\n init: function() {\n this._super.apply(this, arguments);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var build, builds, jobs;\n if (builds = this.get('builds')) {\n builds.forEach(function(b) {\n return b.updateTimes();\n });\n }\n if (build = this.get('build')) {\n build.updateTimes();\n }\n if (build && (jobs = build.get('jobs'))) {\n jobs.forEach(function(j) {\n return j.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(action) {\n this._unbind();\n return this[\"view\" + ($.camelize(action))]();\n },\n viewIndex: function() {\n this._bind('repo', 'controllers.reposController.firstObject');\n this._bind('build', 'repo.lastBuild');\n return this.connectTab('current');\n },\n viewCurrent: function() {\n this.connectTab('current');\n return this._bind('build', 'repo.lastBuild');\n },\n viewBuilds: function() {\n this.connectTab('builds');\n return this._bind('builds', 'repo.builds');\n },\n viewPullRequests: function() {\n this.connectTab('pull_requests');\n return this._bind('builds', 'repo.pullRequests');\n },\n viewBranches: function() {\n this.connectTab('branches');\n return this._bind('builds', 'repo.branches');\n },\n viewEvents: function() {\n this.connectTab('events');\n return this._bind('events', 'repo.events');\n },\n viewBuild: function() {\n return this.connectTab('build');\n },\n viewJob: function() {\n this._bind('build', 'job.build');\n return this.connectTab('job');\n },\n repoObserver: (function() {\n var repo;\n repo = this.get('repo');\n if (repo) {\n return repo.select();\n }\n }).observes('repo.id'),\n connectTab: function(tab) {\n var name, viewClass;\n name = tab === 'current' ? 'build' : tab;\n viewClass = name === 'builds' || name === 'branches' || name === 'pull_requests' ? Travis.BuildsView : Travis[\"\" + ($.camelize(name)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n _bind: function(to, from) {\n return this.bindings.push(Ember.oneWay(this, to, from));\n },\n _unbind: function() {\n var binding, _i, _len, _ref;\n _ref = this.bindings;\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n binding = _ref[_i];\n binding.disconnect(this);\n }\n return this.bindings.length = 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repo");minispade.register('controllers/repos', "(function() {(function() {\nminispade.require('travis/limited_array');\n\n Travis.ReposController = Ember.ArrayController.extend({\n defaultTab: 'recent',\n sortProperties: ['sortOrder'],\n init: function() {\n this.activate(this.defaultTab);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var content;\n if (content = this.get('content')) {\n content.forEach(function(r) {\n return r.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(tab, params) {\n this.set('tab', tab);\n return this[\"view\" + ($.camelize(tab))](params);\n },\n viewRecent: function() {\n var content;\n content = Travis.LimitedArray.create({\n content: Travis.Repo.find(),\n limit: 30\n });\n return this.set('content', content);\n },\n viewOwned: function() {\n return this.set('content', Travis.Repo.accessibleBy(Travis.app.get('currentUser.login')));\n },\n viewSearch: function(params) {\n return this.set('content', Travis.Repo.search(params.search));\n },\n searchObserver: (function() {\n var search;\n search = this.get('search');\n if (search) {\n return this.searchFor(search);\n } else {\n this.activate('recent');\n return 'recent';\n }\n }).observes('search'),\n searchFor: function(phrase) {\n if (this.searchLater) {\n Ember.run.cancel(this.searchLater);\n }\n return this.searchLater = Ember.run.later(this, (function() {\n return this.activate('search', {\n search: phrase\n });\n }), 500);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repos");minispade.register('controllers/sidebar', "(function() {(function() {\n\n Travis.reopen({\n SidebarController: Em.ArrayController.extend({\n init: function() {\n this.tickables = [];\n return Travis.Ticker.create({\n target: this,\n interval: Travis.INTERVALS.sponsors\n });\n },\n tick: function() {\n var tickable, _i, _len, _ref, _results;\n _ref = this.tickables;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n tickable = _ref[_i];\n _results.push(tickable.tick());\n }\n return _results;\n }\n }),\n QueuesController: Em.ArrayController.extend(),\n WorkersController: Em.ArrayController.extend({\n groups: (function() {\n var content, groups, host, worker, _i, _len, _ref;\n if (content = this.get('arrangedContent')) {\n groups = {};\n _ref = content.toArray();\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n worker = _ref[_i];\n host = worker.get('host');\n if (!groups[host]) {\n groups[host] = Em.ArrayProxy.create(Em.SortableMixin, {\n content: [],\n sortProperties: ['nameForSort']\n });\n }\n groups[host].addObject(worker);\n }\n return $.values(groups);\n }\n }).property('length')\n }),\n SponsorsController: Em.ArrayController.extend({\n page: 0,\n arrangedContent: (function() {\n return this.get('shuffled').slice(this.start(), this.end());\n }).property('shuffled.length', 'page'),\n shuffled: (function() {\n var content;\n if (content = this.get('content')) {\n return $.shuffle(content);\n } else {\n return [];\n }\n }).property('content.length'),\n tick: function() {\n return this.set('page', this.isLast() ? 0 : this.get('page') + 1);\n },\n pages: (function() {\n var length;\n length = this.get('content.length');\n if (length) {\n return parseInt(length / this.get('perPage') + 1);\n } else {\n return 1;\n }\n }).property('length'),\n isLast: function() {\n return this.get('page') === this.get('pages') - 1;\n },\n start: function() {\n return this.get('page') * this.get('perPage');\n },\n end: function() {\n return this.start() + this.get('perPage');\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/sidebar");minispade.register('controllers/stats', "(function() {(function() {\n\n Travis.StatsController = Travis.Controller.extend({\n name: 'stats',\n init: function() {\n return this._super('top');\n },\n activate: function(action, params) {}\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/stats");minispade.register('helpers', "(function() {(function() {\nminispade.require('helpers/handlebars');\nminispade.require('helpers/helpers');\nminispade.require('helpers/urls');\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers");minispade.register('helpers/handlebars', "(function() {(function() {\n var safe;\nminispade.require('ext/ember/bound_helper');\n\n safe = function(string) {\n return new Handlebars.SafeString(string);\n };\n\n Handlebars.registerHelper('tipsy', function(text, tip) {\n return safe('' + text + ' ');\n });\n\n Handlebars.registerHelper('t', function(key) {\n return safe(I18n.t(key));\n });\n\n Ember.registerBoundHelper('formatTime', function(value, options) {\n return safe(Travis.Helpers.timeAgoInWords(value) || '-');\n });\n\n Ember.registerBoundHelper('formatDuration', function(duration, options) {\n return safe(Travis.Helpers.timeInWords(duration));\n });\n\n Ember.registerBoundHelper('formatCommit', function(commit, options) {\n if (commit) {\n return safe(Travis.Helpers.formatCommit(commit.get('sha'), commit.get('branch')));\n }\n });\n\n Ember.registerBoundHelper('formatSha', function(sha, options) {\n return safe(Travis.Helpers.formatSha(sha));\n });\n\n Ember.registerBoundHelper('pathFrom', function(url, options) {\n return safe(Travis.Helpers.pathFrom(url));\n });\n\n Ember.registerBoundHelper('formatMessage', function(message, options) {\n return safe(Travis.Helpers.formatMessage(message, options));\n });\n\n Ember.registerBoundHelper('formatConfig', function(config, options) {\n return safe(Travis.Helpers.formatConfig(config));\n });\n\n Ember.registerBoundHelper('formatLog', function(log, options) {\n var item, parentView, repo;\n parentView = this.get('parentView');\n repo = parentView.get(options.repo);\n item = parentView.get(options.item);\n return Travis.Helpers.formatLog(log, repo, item) || '';\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/handlebars");minispade.register('helpers/helpers', "(function() {(function() {\nminispade.require('travis/log');\nminispade.require('config/emoij');\n\n this.Travis.Helpers = {\n compact: function(object) {\n var key, result, value, _ref;\n result = {};\n _ref = object || {};\n for (key in _ref) {\n value = _ref[key];\n if (!$.isEmpty(value)) {\n result[key] = value;\n }\n }\n return result;\n },\n safe: function(string) {\n return new Handlebars.SafeString(string);\n },\n colorForResult: function(result) {\n if (result === 0) {\n return 'green';\n } else {\n if (result === 1) {\n return 'red';\n } else {\n return null;\n }\n }\n },\n formatCommit: function(sha, branch) {\n return Travis.Helpers.formatSha(sha) + (branch ? \" (\" + branch + \")\" : '');\n },\n formatSha: function(sha) {\n return (sha || '').substr(0, 7);\n },\n formatConfig: function(config) {\n var values;\n config = $.only(config, 'rvm', 'gemfile', 'env', 'otp_release', 'php', 'node_js', 'scala', 'jdk', 'python', 'perl');\n values = $.map(config, function(value, key) {\n value = (value && value.join ? value.join(', ') : value) || '';\n return '%@: %@'.fmt($.camelize(key), value);\n });\n if (values.length === 0) {\n return '-';\n } else {\n return values.join(', ');\n }\n },\n formatMessage: function(message, options) {\n message = message || '';\n if (options.short) {\n message = message.split(/\\n/)[0];\n }\n return this._emojize(this._escape(message)).replace(/\\n/g, ' ');\n },\n formatLog: function(log, repo, item) {\n var event, url;\n event = item.constructor === Travis.Build ? 'showBuild' : 'showJob';\n url = Travis.app.get('router').urlForEvent(event, repo, item);\n return Travis.Log.filter(log, url);\n },\n pathFrom: function(url) {\n return (url || '').split('/').pop();\n },\n timeAgoInWords: function(date) {\n return $.timeago.distanceInWords(date);\n },\n durationFrom: function(started, finished) {\n started = started && this._toUtc(new Date(this._normalizeDateString(started)));\n finished = finished ? this._toUtc(new Date(this._normalizeDateString(finished))) : this._nowUtc();\n if (started && finished) {\n return Math.round((finished - started) / 1000);\n } else {\n return 0;\n }\n },\n timeInWords: function(duration) {\n var days, hours, minutes, result, seconds;\n days = Math.floor(duration / 86400);\n hours = Math.floor(duration % 86400 / 3600);\n minutes = Math.floor(duration % 3600 / 60);\n seconds = duration % 60;\n if (days > 0) {\n return 'more than 24 hrs';\n } else {\n result = [];\n if (hours === 1) {\n result.push(hours + ' hr');\n }\n if (hours > 1) {\n result.push(hours + ' hrs');\n }\n if (minutes > 0) {\n result.push(minutes + ' min');\n }\n if (seconds > 0) {\n result.push(seconds + ' sec');\n }\n if (result.length > 0) {\n return result.join(' ');\n } else {\n return '-';\n }\n }\n },\n _normalizeDateString: function(string) {\n if (window.JHW) {\n string = string.replace('T', ' ').replace(/-/g, '/');\n string = string.replace('Z', '').replace(/\\..*$/, '');\n }\n return string;\n },\n _nowUtc: function() {\n return this._toUtc(new Date());\n },\n _toUtc: function(date) {\n return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds());\n },\n _emojize: function(text) {\n var emojis;\n emojis = text.match(/:\\S+?:/g);\n if (emojis !== null) {\n $.each(emojis.uniq(), function(ix, emoji) {\n var image, strippedEmoji;\n strippedEmoji = emoji.substring(1, emoji.length - 1);\n if (EmojiDictionary.indexOf(strippedEmoji) !== -1) {\n image = ' ';\n return text = text.replace(new RegExp(emoji, 'g'), image);\n }\n });\n }\n return text;\n },\n _escape: function(text) {\n return text.replace(/&/g, '&').replace(//g, '>');\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/helpers");minispade.register('helpers/urls', "(function() {(function() {\n\n this.Travis.Urls = {\n repo: function(slug) {\n return \"/\" + slug;\n },\n builds: function(slug) {\n return \"/\" + slug + \"/builds\";\n },\n pullRequests: function(slug) {\n return \"/\" + slug + \"/pull_requests\";\n },\n branches: function(slug) {\n return \"/\" + slug + \"/branches\";\n },\n build: function(slug, id) {\n return \"/\" + slug + \"/builds/\" + id;\n },\n job: function(slug, id) {\n return \"/\" + slug + \"/jobs/\" + id;\n },\n githubCommit: function(slug, sha) {\n return \"http://github.com/\" + slug + \"/commit/\" + sha;\n },\n githubRepo: function(slug) {\n return \"http://github.com/\" + slug;\n },\n githubWatchers: function(slug) {\n return \"http://github.com/\" + slug + \"/watchers\";\n },\n githubNetwork: function(slug) {\n return \"http://github.com/\" + slug + \"/network\";\n },\n githubAdmin: function(slug) {\n return \"http://github.com/\" + slug + \"/admin/hooks#travis_minibucket\";\n },\n statusImage: function(slug, branch) {\n return (\"https://secure.travis-ci.org/\" + slug + \".png\") + (branch ? \"?branch=\" + branch : '');\n },\n email: function(email) {\n return \"mailto:\" + email;\n },\n account: function(login) {\n return \"/profile/\" + login;\n },\n user: function(login) {\n return \"/profile/\" + login + \"/me\";\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/urls");minispade.register('models', "(function() {(function() {\nminispade.require('models/extensions');\nminispade.require('models/account');\nminispade.require('models/artifact');\nminispade.require('models/branch');\nminispade.require('models/build');\nminispade.require('models/commit');\nminispade.require('models/event');\nminispade.require('models/hook');\nminispade.require('models/job');\nminispade.require('models/repo');\nminispade.require('models/sponsor');\nminispade.require('models/user');\nminispade.require('models/worker');\n\n}).call(this);\n\n})();\n//@ sourceURL=models");minispade.register('models/account', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Account = Travis.Model.extend({\n primaryKey: 'login',\n login: DS.attr('string'),\n name: DS.attr('string'),\n type: DS.attr('string'),\n reposCount: DS.attr('number'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('login'));\n }).property()\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/account");minispade.register('models/artifact', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Artifact = Travis.Model.extend({\n body: DS.attr('string'),\n init: function() {\n this._super.apply(this, arguments);\n this.set('queue', Ember.A([]));\n this.addObserver('body', this.fetchWorker);\n return this.fetchWorker();\n },\n append: function(body) {\n if (this.get('isLoaded')) {\n return this.set('body', this.get('body') + body);\n } else {\n return this.get('queue').pushObject(body);\n }\n },\n recordDidLoad: (function() {\n var queue;\n if (this.get('isLoaded')) {\n queue = this.get('queue');\n if (queue.get('length') > 0) {\n return this.append(queue.toArray().join(''));\n }\n }\n }).observes('isLoaded'),\n fetchWorker: function() {\n var body, line, match, worker;\n if (body = this.get('body')) {\n line = body.split(\"\\n\")[0];\n if (line && (match = line.match(/Using worker: (.*)/))) {\n if (worker = match[1]) {\n worker = worker.trim().split(':')[0];\n this.set('workerName', worker);\n return this.removeObserver('body', this.fetchWorker);\n }\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/artifact");minispade.register('models/branch', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Branch = Travis.Model.extend(Travis.Helpers, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n duration: DS.attr('number'),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n commit: DS.belongsTo('Travis.Commit'),\n repo: (function() {\n if (this.get('repoId')) {\n return Travis.Repo.find(this.get('repoId'));\n }\n }).property('repoId'),\n updateTimes: function() {\n this.notifyPropertyChange('started_at');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n this.Travis.Branch.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/branch");minispade.register('models/build', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Build = Travis.Model.extend(Travis.DurationCalculations, {\n eventType: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n state: DS.attr('string'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string', {\n key: 'started_at'\n }),\n finishedAt: DS.attr('string', {\n key: 'finished_at'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n commit: DS.belongsTo('Travis.Commit'),\n jobs: DS.hasMany('Travis.Job', {\n key: 'job_ids'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n isMatrix: (function() {\n return this.get('data.job_ids.length') > 1;\n }).property('data.job_ids.length'),\n isFinished: (function() {\n return this.get('state') === 'finished';\n }).property('state'),\n requiredJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return !data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n allowedFailureJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n configKeys: (function() {\n var config, headers, key, keys;\n if (!(config = this.get('config'))) {\n return [];\n }\n keys = $.intersect($.keys(config), Travis.CONFIG_KEYS);\n headers = (function() {\n var _i, _len, _ref, _results;\n _ref = ['build.job', 'build.duration', 'build.finished_at'];\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n key = _ref[_i];\n _results.push(I18n.t(key));\n }\n return _results;\n })();\n return $.map(headers.concat(keys), function(key) {\n return $.camelize(key);\n });\n }).property('config'),\n requeue: (function() {\n return Travis.ajax.post('/requests', {\n build_id: this.get('id')\n });\n })\n });\n\n this.Travis.Build.reopenClass({\n byRepoId: function(id, parameters) {\n return this.find($.extend(parameters || {}, {\n repository_id: id\n }));\n },\n olderThanNumber: function(id, build_number) {\n return this.find({\n url: \"/builds\",\n repository_id: id,\n after_number: build_number\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/build");minispade.register('models/commit', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Commit = Travis.Model.extend({\n buildId: DS.attr('number'),\n sha: DS.attr('string'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n compareUrl: DS.attr('string'),\n authorName: DS.attr('string'),\n authorEmail: DS.attr('string'),\n committerName: DS.attr('string'),\n committerEmail: DS.attr('string'),\n build: DS.belongsTo('Travis.Build', {\n key: 'buildId'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/commit");minispade.register('models/event', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Event = Travis.Model.extend({\n event: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n sourceId: DS.attr('number', {\n key: 'source_id'\n }),\n sourceType: DS.attr('string', {\n key: 'source_type'\n }),\n createdAt: DS.attr('string', {\n key: 'created_at'\n }),\n event_: (function() {\n return this.get('event');\n }).property('event'),\n result: (function() {\n return this.get('data.data.result');\n }).property('data.data.result'),\n message: (function() {\n return this.get('data.data.message');\n }).property('data.data.message'),\n source: (function() {\n var type;\n if (type = this.get('sourceType')) {\n return Travis[type].find(this.get('sourceId'));\n }\n }).property('sourceType', 'sourceId')\n });\n\n this.Travis.Event.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/event");minispade.register('models/extensions', "(function() {(function() {\n\n Travis.DurationCalculations = Ember.Mixin.create({\n duration: (function() {\n var duration;\n if (duration = this.get('_duration')) {\n return duration;\n } else {\n return Travis.Helpers.durationFrom(this.get('startedAt'), this.get('finishedAt'));\n }\n }).property('_duration', 'finishedAt', 'startedAt'),\n updateTimes: function() {\n this.notifyPropertyChange('_duration');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/extensions");minispade.register('models/hook', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Hook = Travis.Model.extend({\n name: DS.attr('string'),\n ownerName: DS.attr('string'),\n description: DS.attr('string'),\n active: DS.attr('boolean'),\n account: (function() {\n return this.get('slug').split('/')[0];\n }).property('slug'),\n slug: (function() {\n return \"\" + (this.get('ownerName')) + \"/\" + (this.get('name'));\n }).property('ownerName', 'name'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('slug'));\n }).property(),\n urlGithubAdmin: (function() {\n return \"http://github.com/\" + (this.get('slug')) + \"/admin/hooks#travis_minibucket\";\n }).property(),\n toggle: function() {\n var transaction;\n transaction = this.get('store').transaction();\n transaction.add(this);\n this.set('active', !this.get('active'));\n return transaction.commit();\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/hook");minispade.register('models/job', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Job = Travis.Model.extend(Travis.DurationCalculations, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n buildId: DS.attr('number'),\n commitId: DS.attr('number'),\n logId: DS.attr('number'),\n queue: DS.attr('string'),\n state: DS.attr('string'),\n number: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n allowFailure: DS.attr('boolean', {\n key: 'allow_failure'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n build: DS.belongsTo('Travis.Build', {\n key: 'build_id'\n }),\n commit: DS.belongsTo('Travis.Commit', {\n key: 'commit_id'\n }),\n log: DS.belongsTo('Travis.Artifact', {\n key: 'log_id'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n sponsor: (function() {\n var worker;\n worker = this.get('log.workerName');\n if (worker && worker.length) {\n return Travis.WORKERS[worker] || {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n };\n }\n }).property('log.workerName'),\n configValues: (function() {\n var config;\n if (config = this.get('config')) {\n return $.values($.only.apply(config, Travis.CONFIG_KEYS));\n } else {\n return [];\n }\n }).property('config'),\n appendLog: function(text) {\n var log;\n if (log = this.get('log')) {\n return log.append(text);\n }\n },\n subscribe: function() {\n var id;\n if (id = this.get('id')) {\n return Travis.app.pusher.subscribe(\"job-\" + id);\n }\n },\n onStateChange: (function() {\n if (this.get('state') === 'finished') {\n return Travis.app.pusher.unsubscribe(\"job-\" + (this.get('id')));\n }\n }).observes('state')\n });\n\n this.Travis.Job.reopenClass({\n queued: function(queue) {\n this.find();\n return Travis.app.store.filter(this, function(job) {\n var queued;\n queued = ['created', 'queued'].indexOf(job.get('state')) !== -1;\n return queued && (!queue || job.get('queue') === (\"builds.\" + queue));\n });\n },\n findMany: function(ids) {\n return Travis.app.store.findMany(this, ids);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/job");minispade.register('models/repo', "(function() {(function() {\nminispade.require('travis/expandable_record_array');\nminispade.require('travis/model');\n\n this.Travis.Repo = Travis.Model.extend({\n slug: DS.attr('string'),\n description: DS.attr('string'),\n lastBuildId: DS.attr('number'),\n lastBuildNumber: DS.attr('string'),\n lastBuildResult: DS.attr('number'),\n lastBuildStartedAt: DS.attr('string'),\n lastBuildFinishedAt: DS.attr('string'),\n lastBuild: DS.belongsTo('Travis.Build'),\n builds: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'push'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n pullRequests: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'pull_request'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n branches: (function() {\n return Travis.Branch.byRepoId(this.get('id'));\n }).property(),\n events: (function() {\n return Travis.Event.byRepoId(this.get('id'));\n }).property(),\n owner: (function() {\n return (this.get('slug') || '').split('/')[0];\n }).property('slug'),\n name: (function() {\n return (this.get('slug') || '').split('/')[1];\n }).property('slug'),\n lastBuildDuration: (function() {\n var duration;\n duration = this.get('data.last_build_duration');\n if (!duration) {\n duration = Travis.Helpers.durationFrom(this.get('lastBuildStartedAt'), this.get('lastBuildFinishedAt'));\n }\n return duration;\n }).property('data.last_build_duration', 'lastBuildStartedAt', 'lastBuildFinishedAt'),\n sortOrder: (function() {\n var lastBuildFinishedAt;\n if (lastBuildFinishedAt = this.get('lastBuildFinishedAt')) {\n return -new Date(lastBuildFinishedAt).getTime();\n } else {\n return -new Date('9999').getTime() - parseInt(this.get('lastBuildId'));\n }\n }).property('lastBuildFinishedAt', 'lastBuildId'),\n stats: (function() {\n var _this = this;\n return this.get('_stats') || $.get(\"https://api.github.com/repos/\" + (this.get('slug')), function(data) {\n _this.set('_stats', data);\n return _this.notifyPropertyChange('stats');\n }) && {};\n }).property(),\n updateTimes: function() {\n return this.notifyPropertyChange('lastBuildDuration');\n }\n });\n\n this.Travis.Repo.reopenClass({\n recent: function() {\n return this.find();\n },\n ownedBy: function(login) {\n return this.find({\n owner_name: login,\n orderBy: 'name'\n });\n },\n accessibleBy: function(login) {\n return this.find({\n member: login,\n orderBy: 'name'\n });\n },\n search: function(query) {\n return this.find({\n search: query,\n orderBy: 'name'\n });\n },\n bySlug: function(slug) {\n var repo;\n repo = $.select(this.find().toArray(), function(repo) {\n return repo.get('slug') === slug;\n });\n if (repo.length > 0) {\n return repo;\n } else {\n return this.find({\n slug: slug\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/repo");minispade.register('models/sponsor', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Sponsor = Travis.Model.extend({\n type: DS.attr('string'),\n url: DS.attr('string'),\n link: DS.attr('string'),\n image: (function() {\n return \"/images/sponsors/\" + (this.get('data.image'));\n }).property('data.image')\n });\n\n Travis.Sponsor.reopenClass({\n decks: function() {\n return this.platinum().concat(this.gold());\n },\n platinum: function() {\n var platinum, sponsor, _i, _len, _results;\n platinum = this.byType('platinum').toArray();\n _results = [];\n for (_i = 0, _len = platinum.length; _i < _len; _i++) {\n sponsor = platinum[_i];\n _results.push([sponsor]);\n }\n return _results;\n },\n gold: function() {\n var gold, _results;\n gold = this.byType('gold').toArray();\n _results = [];\n while (gold.length > 0) {\n _results.push(gold.splice(0, 2));\n }\n return _results;\n },\n links: function() {\n return this.byType('silver');\n },\n byType: function() {\n var types;\n types = Array.prototype.slice.apply(arguments);\n return Travis.Sponsor.filter(function(sponsor) {\n return types.indexOf(sponsor.get('type')) !== -1;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/sponsor");minispade.register('models/user', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('travis/model');\n\n this.Travis.User = Travis.Model.extend({\n name: DS.attr('string'),\n email: DS.attr('string'),\n login: DS.attr('string'),\n token: DS.attr('string'),\n locale: DS.attr('string'),\n gravatarId: DS.attr('string'),\n isSyncing: DS.attr('boolean'),\n syncedAt: DS.attr('string'),\n repoCount: DS.attr('number'),\n init: function() {\n if (this.get('isSyncing')) {\n this.poll();\n }\n this._super();\n return Ember.run.next(this, function() {\n var transaction;\n transaction = this.get('store').transaction();\n return transaction.add(this);\n });\n },\n urlGithub: (function() {\n return \"https://github.com/\" + (this.get('login'));\n }).property(),\n permissions: (function() {\n var _this = this;\n if (!this.permissions) {\n this.permissions = Ember.ArrayProxy.create({\n content: []\n });\n Travis.ajax.get('/users/permissions', function(data) {\n return _this.permissions.set('content', data.permissions);\n });\n }\n return this.permissions;\n }).property(),\n updateLocale: function(locale) {\n var observer, self, transaction;\n this.setWithSession('locale', locale);\n transaction = this.get('transaction');\n transaction.commit();\n self = this;\n observer = function() {\n if (!self.get('isSaving')) {\n self.removeObserver('isSaving', observer);\n transaction = self.get('store').transaction();\n return transaction.add(self);\n }\n };\n return this.addObserver('isSaving', observer);\n },\n type: (function() {\n return 'user';\n }).property(),\n sync: function() {\n Travis.ajax.post('/users/sync');\n this.setWithSession('isSyncing', true);\n return this.poll();\n },\n poll: function() {\n var _this = this;\n return Travis.ajax.get('/users', function(data) {\n if (data.user.is_syncing) {\n return Ember.run.later(_this, _this.poll.bind(_this), 3000);\n } else {\n _this.set('isSyncing', false);\n return _this.setWithSession('syncedAt', data.user.synced_at);\n }\n });\n },\n setWithSession: function(name, value) {\n var user;\n this.set(name, value);\n user = JSON.parse(typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.getItem('travis.user') : void 0);\n user[$.underscore(name)] = this.get(name);\n return typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.setItem('travis.user', JSON.stringify(user)) : void 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/user");minispade.register('models/worker', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Worker = Travis.Model.extend({\n state: DS.attr('string'),\n name: DS.attr('string'),\n host: DS.attr('string'),\n lastSeenAt: DS.attr('string'),\n payload: (function() {\n return this.get('data.payload');\n }).property('data.payload'),\n number: (function() {\n return this.get('name').match(/\\d+$/)[0];\n }).property('name'),\n isWorking: (function() {\n return this.get('state') === 'working';\n }).property('state'),\n repo: (function() {\n return Travis.Repo.find(this.get('payload.repository.id') || this.get('payload.repo.id'));\n }).property('payload.repository.id', 'payload.repo.id'),\n job_id: (function() {\n return this.get('payload.job.id');\n }).property('payload.job.id'),\n job: (function() {\n return Travis.Job.find(this.get('job_id'));\n }).property('job_id'),\n nameForSort: (function() {\n var id, match, name;\n if (name = this.get('name')) {\n match = name.match(/(.*?)-(\\d+)/);\n if (match) {\n name = match[1];\n id = match[2].toString();\n if (id.length < 2) {\n id = \"00\" + id;\n } else if (id.length < 3) {\n id = \"0\" + id;\n }\n return \"\" + name + \"-\" + id;\n }\n }\n }).property('name')\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/worker");minispade.register('pusher', "(function() {(function() {\n\n Travis.Pusher = function(key) {\n if (key) {\n this.init(key);\n }\n return this;\n };\n\n $.extend(Travis.Pusher, {\n CHANNELS: ['common'],\n CHANNEL_PREFIX: ''\n });\n\n $.extend(Travis.Pusher.prototype, {\n active_channels: [],\n init: function(key) {\n var channel, _i, _len, _ref, _results;\n Pusher.warn = this.warn.bind(this);\n this.pusher = new Pusher(key);\n _ref = Travis.Pusher.CHANNELS;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n channel = _ref[_i];\n _results.push(this.subscribe(channel));\n }\n return _results;\n },\n subscribe: function(channel) {\n var _this = this;\n if (this.pusher && this.active_channels.indexOf(channel) === -1) {\n this.active_channels.push(channel);\n return this.pusher.subscribe(this.prefix(channel)).bind_all(function(event, data) {\n return _this.receive(event, data);\n });\n }\n },\n unsubscribe: function(channel) {\n var ix;\n ix = this.active_channels.indexOf(channel);\n if (this.pusher && ix === -1) {\n this.active_channels.splice(ix, 1);\n return this.pusher.unsubscribe(this.prefix(channel));\n }\n },\n prefix: function(channel) {\n return \"\" + Travis.Pusher.CHANNEL_PREFIX + channel;\n },\n receive: function(event, data) {\n if (event.substr(0, 6) === 'pusher') {\n return;\n }\n if (data.id) {\n data = this.normalize(event, data);\n }\n return Ember.run.next(function() {\n return Travis.app.store.receive(event, data);\n });\n },\n normalize: function(event, data) {\n switch (event) {\n case 'build:started':\n case 'build:finished':\n return data;\n case 'job:created':\n case 'job:started':\n case 'job:finished':\n case 'job:log':\n if (data.queue) {\n data.queue = data.queue.replace('builds.', '');\n }\n return {\n job: data\n };\n case 'worker:added':\n case 'worker:updated':\n case 'worker:removed':\n return {\n worker: data\n };\n }\n },\n warn: function(type, warning) {\n if (!this.ignoreWarning(warning)) {\n return console.warn(warning);\n }\n },\n ignoreWarning: function(warning) {\n var message, _ref;\n if (message = (_ref = warning.data) != null ? _ref.message : void 0) {\n return message.indexOf('Existing subscription') === 0 || message.indexOf('No current subscription') === 0;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=pusher");minispade.register('routes', "(function() {(function() {\n var defaultRoute, lineNumberRoute, nonHashRouteMatcher, resolvePath;\nminispade.require('travis/location');\n\n defaultRoute = Ember.Route.extend({\n route: '/',\n index: 1000\n });\n\n lineNumberRoute = Ember.Route.extend({\n route: '#L:number',\n index: 1,\n connectOutlets: function(router) {\n return router.saveLineNumberHash();\n },\n routeMatcher: Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([0-9]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(regex);\n }\n });\n }\n }).cacheable()\n });\n\n nonHashRouteMatcher = Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([^/#]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(\"^/?\" + regex);\n }\n });\n }\n }).cacheable();\n\n resolvePath = function(manager, path) {\n var childStates, match, resolvedState, state, states;\n if (this.get('isLeafRoute')) {\n return Ember.A();\n }\n childStates = this.get('childStates');\n childStates = Ember.A(childStates.filterProperty('isRoutable'));\n childStates = childStates.sort(function(a, b) {\n var aDynamicSegments, aIndex, aRoute, bDynamicSegments, bIndex, bRoute;\n aDynamicSegments = a.get('routeMatcher.identifiers.length');\n bDynamicSegments = b.get('routeMatcher.identifiers.length');\n aRoute = a.get('route');\n bRoute = b.get('route');\n aIndex = a.get('index');\n bIndex = b.get('index');\n if (aIndex && bIndex) {\n return aIndex - bIndex;\n }\n if (aRoute.indexOf(bRoute) === 0) {\n return -1;\n } else if (bRoute.indexOf(aRoute) === 0) {\n return 1;\n }\n if (aDynamicSegments !== bDynamicSegments) {\n return aDynamicSegments - bDynamicSegments;\n }\n return b.get('route.length') - a.get('route.length');\n });\n match = null;\n state = childStates.find(function(state) {\n var matcher;\n matcher = state.get('routeMatcher');\n if (match = matcher.match(path)) {\n return match;\n }\n });\n Ember.assert(\"Could not find state for path \" + path, !!state);\n resolvedState = Ember._ResolvedState.create({\n manager: manager,\n state: state,\n match: match\n });\n states = state.resolvePath(manager, match.remaining);\n return Ember.A([resolvedState]).pushObjects(states);\n };\n\n Travis.Router = Ember.Router.extend({\n location: 'travis',\n enableLogging: true,\n initialState: 'loading',\n showRoot: Ember.Route.transitionTo('root.home.show'),\n showStats: Ember.Route.transitionTo('root.stats'),\n showRepo: Ember.Route.transitionTo('root.home.repo.show'),\n showBuilds: Ember.Route.transitionTo('root.home.repo.builds.index'),\n showBuild: Ember.Route.transitionTo('root.home.repo.builds.show'),\n showPullRequests: Ember.Route.transitionTo('root.home.repo.pullRequests'),\n showBranches: Ember.Route.transitionTo('root.home.repo.branches'),\n showEvents: Ember.Route.transitionTo('root.home.repo.events'),\n showJob: Ember.Route.transitionTo('root.home.repo.job'),\n showProfile: Ember.Route.transitionTo('root.profile'),\n showAccount: Ember.Route.transitionTo('root.profile.account'),\n showUserProfile: Ember.Route.transitionTo('root.profile.account.profile'),\n saveLineNumberHash: function(path) {\n return Ember.run.next(this, function() {\n var match;\n path = path || this.get('location').getURL();\n if (match = path.match(/#L\\d+$/)) {\n return this.set('repoController.lineNumberHash', match[0]);\n }\n });\n },\n reload: function() {\n var url;\n url = this.get('location').getURL();\n this.transitionTo('loading');\n return this.route(url);\n },\n signedIn: function() {\n return !!Travis.app.get('auth.user');\n },\n needsAuth: function(path) {\n return path.indexOf('/profile') === 0;\n },\n afterSignOut: function() {\n return this.authorize('/');\n },\n authorize: function(path) {\n if (!this.signedIn() && this.needsAuth(path)) {\n sessionStorage.setItem('travis.after_signin_path', path);\n this.transitionTo('root.auth');\n return Travis.app.autoSignIn();\n } else {\n this.transitionTo('root');\n return this.route(path);\n }\n },\n loading: Ember.Route.extend({\n routePath: function(router, path) {\n router.saveLineNumberHash(path);\n return router.authorize(path);\n }\n }),\n root: Ember.Route.extend({\n route: '/',\n loading: Ember.State.extend(),\n afterSignIn: (function() {}),\n auth: Ember.Route.extend({\n route: '/auth',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('authLayout');\n $('body').attr('id', 'auth');\n router.get('authLayoutController').connectOutlet('top', 'top');\n return router.get('authLayoutController').connectOutlet('main', 'signin');\n },\n afterSignIn: function(router) {\n var path;\n path = sessionStorage.getItem('travis.after_signin_path');\n sessionStorage.removeItem('travis.after_signin_path');\n return router.route(path || '/');\n }\n }),\n stats: Ember.Route.extend({\n route: '/stats',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('statsLayout');\n $('body').attr('id', 'stats');\n router.get('statsLayoutController').connectOutlet('top', 'top');\n return router.get('statsLayoutController').connectOutlet('main', 'stats');\n }\n }),\n profile: Ember.Route.extend({\n initialState: 'index',\n route: '/profile',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('profileLayout');\n $('body').attr('id', 'profile');\n router.get('accountsController').set('content', Travis.Account.find());\n router.get('profileLayoutController').connectOutlet('top', 'top');\n return router.get('profileLayoutController').connectOutlet('left', 'accounts');\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('profileLayoutController').connectOutlet('main', 'profile');\n return router.get('profileController').activate('hooks');\n }\n }),\n account: Ember.Route.extend({\n initialState: 'index',\n route: '/:login',\n connectOutlets: function(router, account) {\n var params;\n if (account) {\n params = {\n login: account.get('login')\n };\n return router.get('profileController').setParams(params);\n } else {\n return router.send('showProfile');\n }\n },\n deserialize: function(router, params) {\n var account, controller, deferred, observer;\n controller = router.get('accountsController');\n if (!controller.get('content')) {\n controller.set('content', Travis.Account.find());\n }\n account = controller.findByLogin(params.login);\n if (account) {\n return account;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (account = controller.findByLogin(params.login)) {\n controller.removeObserver('content.length', observer);\n return deferred.resolve(account);\n }\n };\n controller.addObserver('content.length', observer);\n return deferred.promise();\n }\n },\n serialize: function(router, account) {\n if (account) {\n return {\n login: account.get('login')\n };\n } else {\n return {};\n }\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('profileController').activate('hooks');\n }\n }),\n profile: Ember.Route.extend({\n route: '/profile',\n connectOutlets: function(router) {\n return router.get('profileController').activate('user');\n }\n })\n })\n }),\n home: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('homeLayout');\n $('body').attr('id', 'home');\n router.get('homeLayoutController').connectOutlet('left', 'repos');\n router.get('homeLayoutController').connectOutlet('right', 'sidebar');\n router.get('homeLayoutController').connectOutlet('top', 'top');\n router.get('homeLayoutController').connectOutlet('main', 'repo');\n router.get('homeLayoutController').connectOutlet('flash', 'flash');\n return router.get('repoController').set('repos', router.get('reposController'));\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n showWithLineNumber: Ember.Route.extend({\n route: '/#/L:number',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n }\n }),\n repo: Ember.Route.extend({\n route: '/:owner/:name',\n routeMatcher: nonHashRouteMatcher,\n connectOutlets: function(router, repo) {\n return router.get('repoController').set('repo', repo);\n },\n deserialize: function(router, params) {\n var deferred, observer, repos, slug;\n slug = \"\" + params.owner + \"/\" + params.name;\n repos = Travis.Repo.bySlug(slug);\n deferred = $.Deferred();\n observer = function() {\n if (repos.get('isLoaded')) {\n repos.removeObserver('isLoaded', observer);\n return deferred.resolve(repos.objectAt(0));\n }\n };\n if (repos.length) {\n deferred.resolve(repos[0]);\n } else {\n repos.addObserver('isLoaded', observer);\n }\n return deferred.promise();\n },\n serialize: function(router, repo) {\n if (repo) {\n return {\n owner: repo.get('owner'),\n name: repo.get('name')\n };\n } else {\n return {};\n }\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('current');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n builds: Ember.Route.extend({\n route: '/builds',\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('builds');\n }\n }),\n show: Ember.Route.extend({\n route: '/:build_id',\n connectOutlets: function(router, build) {\n if (!build.get) {\n build = Travis.Build.find(build);\n }\n router.get('repoController').set('build', build);\n return router.get('repoController').activate('build');\n },\n serialize: function(router, build) {\n if (build.get) {\n return {\n build_id: build.get('id')\n };\n } else {\n return {\n build_id: build\n };\n }\n },\n deserialize: function(router, params) {\n var build, deferred, observer;\n build = Travis.Build.find(params.build_id);\n if (build.get('id')) {\n return build;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (build.get('id')) {\n build.removeObserver('id', observer);\n return deferred.resolve(build);\n }\n };\n build.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n }),\n pullRequests: Ember.Route.extend({\n route: '/pull_requests',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('pull_requests');\n }\n }),\n branches: Ember.Route.extend({\n route: '/branches',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('branches');\n }\n }),\n events: Ember.Route.extend({\n route: '/events',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('events');\n }\n }),\n job: Ember.Route.extend({\n route: '/jobs/:job_id',\n connectOutlets: function(router, job) {\n if (!job.get) {\n job = Travis.Job.find(job);\n }\n router.get('repoController').set('job', job);\n return router.get('repoController').activate('job');\n },\n serialize: function(router, job) {\n if (job.get) {\n return {\n job_id: job.get('id')\n };\n } else {\n return {\n job_id: job\n };\n }\n },\n deserialize: function(router, params) {\n var deferred, job, observer;\n job = Travis.Job.find(params.job_id);\n if (job.get('id')) {\n return job;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (job.get('id')) {\n job.removeObserver('id', observer);\n return deferred.resolve(job);\n }\n };\n job.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n })\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=routes");minispade.register('slider', "(function() {(function() {\n\n this.Travis.Slider = function() {\n if ((typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.getItem('travis.maximized') : void 0) === 'true') {\n this.minimize();\n }\n return this;\n };\n\n $.extend(Travis.Slider.prototype, {\n persist: function() {\n return typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.setItem('travis.maximized', this.isMinimized()) : void 0;\n },\n isMinimized: function() {\n return $('body').hasClass('maximized');\n },\n minimize: function() {\n return $('body').addClass('maximized');\n },\n toggle: function() {\n var element;\n $('body').toggleClass('maximized');\n this.persist();\n element = $(' ');\n $('#top .profile').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=slider");minispade.register('store', "(function() {(function() {\n var DATA_PROXY,\n __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };\nminispade.require('store/rest_adapter');\n\n DATA_PROXY = {\n get: function(name) {\n return this.savedData[name];\n }\n };\n\n Travis.Store = DS.Store.extend({\n revision: 4,\n adapter: Travis.RestAdapter.create(),\n load: function(type, id, hash) {\n var record, result;\n result = this._super.apply(this, arguments);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n record.set('incomplete', false);\n record.set('complete', true);\n }\n return result;\n },\n merge: function(type, id, hash) {\n var clientId, data, dataCache, primaryKey, record, recordCache, typeMap;\n if (hash === void 0) {\n hash = id;\n primaryKey = type.proto().primaryKey;\n Ember.assert(\"A data hash was loaded for a record of type \" + type.toString() + \" but no primary key '\" + primaryKey + \"' was provided.\", hash[primaryKey]);\n id = hash[primaryKey];\n }\n typeMap = this.typeMapFor(type);\n dataCache = typeMap.cidToHash;\n clientId = typeMap.idToCid[id];\n recordCache = this.get('recordCache');\n if (clientId !== void 0) {\n if (data = dataCache[clientId]) {\n $.extend(data, hash);\n } else {\n dataCache[clientId] = hash;\n }\n if (record = recordCache[clientId]) {\n record.send('didChangeData');\n }\n } else {\n clientId = this.pushHash(hash, id, type);\n }\n if (clientId) {\n DATA_PROXY.savedData = hash;\n this.updateRecordArrays(type, clientId, DATA_PROXY);\n return {\n id: id,\n clientId: clientId\n };\n }\n },\n receive: function(event, data) {\n var job, mappings, name, type, _ref;\n _ref = event.split(':'), name = _ref[0], type = _ref[1];\n mappings = this.adapter.get('mappings');\n type = mappings[name];\n if (event === 'job:log') {\n if (job = this.find(Travis.Job, data['job']['id'])) {\n return job.appendLog(data['job']['_log']);\n }\n } else if (data[type.singularName()]) {\n return this._loadOne(this, type, data);\n } else if (data[type.pluralName()]) {\n return this._loadMany(this, type, data);\n } else {\n if (!type) {\n throw \"can't load data for \" + name;\n }\n }\n },\n _loadOne: function(store, type, json) {\n var result, root;\n root = type.singularName();\n if (type === Travis.Build && json.repository) {\n result = this.loadIncomplete(Travis.Repo, json.repository);\n }\n return this.loadIncomplete(type, json[root]);\n },\n loadIncomplete: function(type, hash) {\n var record, result;\n result = this.merge(type, hash);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n if (!record.get('complete')) {\n record.set('incomplete', true);\n record.loadedAttributes = Object.keys(hash);\n }\n this._updateAssociations(type, type.singularName(), hash);\n return record;\n }\n },\n _loadMany: function(store, type, json) {\n var root;\n root = type.pluralName();\n this.adapter.sideload(store, type, json, root);\n return this.loadMany(type, json[root]);\n },\n _updateAssociations: function(type, name, data) {\n var _this = this;\n return Em.get(type, 'associationsByName').forEach(function(key, meta) {\n var clientId, dataProxy, id, ids, parent, _ref;\n if (meta.kind === 'belongsTo') {\n id = data[\"\" + key + \"_id\"];\n if (clientId = _this.typeMapFor(meta.type).idToCid[id]) {\n if (parent = _this.findByClientId(meta.type, clientId, id)) {\n dataProxy = parent.get('data');\n if (ids = dataProxy.get(\"\" + name + \"_ids\")) {\n if (_ref = data.id, __indexOf.call(ids, _ref) < 0) {\n ids.pushObject(data.id);\n }\n return parent.send('didChangeData');\n }\n }\n }\n }\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store");minispade.register('store/fixture_adapter', "(function() {(function() {\n\n this.Travis.FixtureAdapter = DS.Adapter.extend({\n find: function(store, type, id) {\n var fixtures;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n if (fixtures.hasLoaded) {\n return;\n }\n return setTimeout((function() {\n store.loadMany(type, fixtures);\n return fixtures.hasLoaded = true;\n }), 300);\n },\n findMany: function() {\n return this.find.apply(this, arguments);\n },\n findAll: function(store, type) {\n var fixtures, ids;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n ids = fixtures.map(function(item, index, self) {\n return item.id;\n });\n return store.loadMany(type, ids, fixtures);\n },\n findQuery: function(store, type, params, array) {\n var fixture, fixtures, hashes, key, matches, value;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n hashes = (function() {\n var _i, _len, _results;\n _results = [];\n for (_i = 0, _len = fixtures.length; _i < _len; _i++) {\n fixture = fixtures[_i];\n matches = (function() {\n var _results1;\n _results1 = [];\n for (key in params) {\n value = params[key];\n _results1.push(key === 'orderBy' || fixture[key] === value);\n }\n return _results1;\n })();\n if (matches.reduce(function(a, b) {\n return a && b;\n })) {\n _results.push(fixture);\n } else {\n _results.push(null);\n }\n }\n return _results;\n })();\n return array.load(hashes.compact());\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/fixture_adapter");minispade.register('store/rest_adapter', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('models');\n\n this.Travis.RestAdapter = DS.RESTAdapter.extend({\n mappings: {\n repositories: Travis.Repo,\n repository: Travis.Repo,\n repos: Travis.Repo,\n repo: Travis.Repo,\n builds: Travis.Build,\n build: Travis.Build,\n commits: Travis.Commit,\n commit: Travis.Commit,\n jobs: Travis.Job,\n job: Travis.Job,\n account: Travis.Account,\n accounts: Travis.Account,\n worker: Travis.Worker,\n workers: Travis.Worker\n },\n plurals: {\n repositories: 'repositories',\n repository: 'repositories',\n repo: 'repos',\n repos: 'repos',\n build: 'builds',\n branch: 'branches',\n job: 'jobs',\n worker: 'workers',\n profile: 'profile'\n },\n ajax: function() {\n return Travis.ajax.ajax.apply(this, arguments);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/rest_adapter");minispade.register('tailing', "(function() {(function() {\n\n this.Travis.Tailing = function() {\n this.position = $(window).scrollTop();\n $(window).scroll(this.onScroll.bind(this));\n return this;\n };\n\n $.extend(Travis.Tailing.prototype, {\n options: {\n timeout: 200\n },\n run: function() {\n this.autoScroll();\n this.positionButton();\n if (this.active()) {\n return Ember.run.later(this.run.bind(this), this.options.timeout);\n }\n },\n toggle: function(event) {\n if (this.active()) {\n return this.stop();\n } else {\n return this.start();\n }\n },\n active: function() {\n return $('#tail').hasClass('active');\n },\n start: function() {\n $('#tail').addClass('active');\n return this.run();\n },\n stop: function() {\n return $('#tail').removeClass('active');\n },\n autoScroll: function() {\n var log, logBottom, win, winBottom;\n if (!this.active()) {\n return;\n }\n win = $(window);\n log = $('#log');\n logBottom = log.offset().top + log.outerHeight() + 40;\n winBottom = win.scrollTop() + win.height();\n if (logBottom - winBottom > 0) {\n return win.scrollTop(logBottom - win.height());\n }\n },\n onScroll: function() {\n var position;\n this.positionButton();\n position = $(window).scrollTop();\n if (position < this.position) {\n this.stop();\n }\n return this.position = position;\n },\n positionButton: function() {\n var max, offset, tail;\n tail = $('#tail');\n if (tail.length === 0) {\n return;\n }\n offset = $(window).scrollTop() - $('#log').offset().top;\n max = $('#log').height() - $('#tail').height() + 5;\n if (offset > max) {\n offset = max;\n }\n if (offset > 0) {\n return tail.css({\n top: offset - 2\n });\n } else {\n return tail.css({\n top: 0\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=tailing");minispade.register('views', "(function() {(function() {\nminispade.require('ext/ember/namespace');\n\n this.Travis.reopen({\n View: Em.View.extend({\n popup: function(event) {\n this.popupCloseAll();\n return $(\"#\" + event.target.name).toggleClass('display');\n },\n popupClose: function(event) {\n return $(event.target).closest('.popup').removeClass('display');\n },\n popupCloseAll: function() {\n return $('.popup').removeClass('display');\n }\n })\n });\n\n this.Travis.reopen({\n HomeLayoutView: Travis.View.extend({\n templateName: 'layouts/home'\n }),\n AuthLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n }),\n ProfileLayoutView: Travis.View.extend({\n templateName: 'layouts/profile'\n }),\n StatsLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n })\n });\nminispade.require('views/accounts');\nminispade.require('views/application');\nminispade.require('views/build');\nminispade.require('views/events');\nminispade.require('views/flash');\nminispade.require('views/job');\nminispade.require('views/repo');\nminispade.require('views/profile');\nminispade.require('views/sidebar');\nminispade.require('views/stats');\nminispade.require('views/signin');\nminispade.require('views/top');\n\n}).call(this);\n\n})();\n//@ sourceURL=views");minispade.register('views/accounts', "(function() {(function() {\n\n this.Travis.reopen({\n AccountsView: Travis.View.extend({\n tabBinding: 'controller.tab',\n templateName: 'profile/accounts',\n classAccounts: (function() {\n if (this.get('tab') === 'accounts') {\n return 'active';\n }\n }).property('tab')\n }),\n AccountsListView: Em.CollectionView.extend({\n elementId: 'accounts',\n accountBinding: 'content',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n accountBinding: 'content',\n typeBinding: 'content.type',\n selectedBinding: 'account.selected',\n classNames: ['account'],\n classNameBindings: ['type', 'selected'],\n name: (function() {\n return this.get('content.name') || this.get('content.login');\n }).property('content.login', 'content.name'),\n urlAccount: (function() {\n return Travis.Urls.account(this.get('account.login'));\n }).property('account.login')\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/accounts");minispade.register('views/application', "(function() {(function() {\n\n this.Travis.reopen({\n ApplicationView: Travis.View.extend({\n templateName: 'application',\n classNames: ['application'],\n popup: function(event) {\n return console.log(event);\n },\n localeDidChange: (function() {\n var locale;\n if (locale = Travis.app.get('auth.user.locale')) {\n Travis.setLocale(locale);\n return Travis.app.get('router').reload();\n }\n }).observes('Travis.app.auth.user.locale'),\n click: function(event) {\n var targetAndParents;\n targetAndParents = $(event.target).parents().andSelf();\n if (!(targetAndParents.hasClass('open-popup') || targetAndParents.hasClass('popup'))) {\n this.popupCloseAll();\n }\n if (!targetAndParents.hasClass('menu')) {\n return $('.menu').removeClass('display');\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/application");minispade.register('views/build', "(function() {(function() {\n\n this.Travis.reopen({\n BuildsView: Travis.View.extend({\n templateName: 'builds/list',\n buildsBinding: 'controller.builds',\n showMore: function() {\n var id, number;\n id = this.get('controller.repo.id');\n number = this.get('builds.lastObject.number');\n return this.get('builds').load(Travis.Build.olderThanNumber(id, number));\n },\n ShowMoreButton: Em.View.extend({\n tagName: 'button',\n classNameBindings: ['isLoading'],\n attributeBindings: ['disabled'],\n isLoadingBinding: 'controller.builds.isLoading',\n template: Em.Handlebars.compile('{{view.label}}'),\n disabledBinding: 'isLoading',\n label: (function() {\n if (this.get('isLoading')) {\n return 'Loading';\n } else {\n return 'Show more';\n }\n }).property('isLoading'),\n click: function() {\n return this.get('parentView').showMore();\n }\n })\n }),\n BuildsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'controller.repo',\n buildBinding: 'context',\n commitBinding: 'build.commit',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha')\n }),\n BuildView: Travis.View.extend({\n templateName: 'builds/show',\n elementId: 'build',\n classNameBindings: ['color', 'loading'],\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n commitBinding: 'build.commit',\n currentItemBinding: 'build',\n loading: (function() {\n return !this.get('build.isComplete');\n }).property('build.isComplete'),\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/build");minispade.register('views/events', "(function() {(function() {\n\n this.Travis.reopen({\n EventsView: Travis.View.extend({\n templateName: 'events/list',\n eventsBinding: 'controller.events'\n }),\n EventsItemView: Travis.View.extend({\n tagName: 'tr'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/events");minispade.register('views/flash', "(function() {(function() {\n\n this.Travis.reopen({\n FlashView: Travis.View.extend({\n elementId: 'flash',\n tagName: 'ul',\n templateName: 'layouts/flash'\n }),\n FlashItemView: Travis.View.extend({\n tagName: 'li',\n classNameBindings: ['type'],\n type: (function() {\n return this.get('flash') && Ember.keys(this.get('flash'))[0];\n }).property('flash'),\n message: (function() {\n return this.get('flash') && this.get('flash')[this.get('type')];\n }).property('flash'),\n close: function(event) {\n return this.get('controller').removeObject(this.get('flash'));\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/flash");minispade.register('views/job', "(function() {(function() {\n\n this.Travis.reopen({\n JobsView: Travis.View.extend({\n templateName: 'jobs/list',\n buildBinding: 'controller.build'\n }),\n JobsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'context.repo',\n jobBinding: 'context',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id')\n }),\n JobView: Travis.View.extend({\n templateName: 'jobs/show',\n repoBinding: 'controller.repo',\n jobBinding: 'controller.job',\n commitBinding: 'job.commit',\n currentItemBinding: 'job',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n }),\n LogView: Travis.View.extend({\n templateName: 'jobs/log',\n logBinding: 'job.log',\n scrollTo: function(hash) {\n $('#main').scrollTop(0);\n $('html,body').scrollTop($(hash).offset().top);\n return this.set('controller.lineNumberHash', null);\n },\n lineNumberHashDidChange: (function() {\n return this.tryScrollingToHashLineNumber();\n }).observes('controller.lineNumberHash'),\n tryScrollingToHashLineNumber: function() {\n var checker, hash, self;\n if (hash = this.get('controller.lineNumberHash')) {\n self = this;\n checker = function() {\n if (self.get('isDestroyed')) {\n return;\n }\n if ($(hash).length) {\n return self.scrollTo(hash);\n } else {\n return setTimeout(checker, 100);\n }\n };\n return checker();\n }\n },\n didInsertElement: function() {\n this._super.apply(this, arguments);\n return this.tryScrollingToHashLineNumber();\n },\n click: function(event) {\n var path, target;\n target = $(event.target);\n target.closest('.fold').toggleClass('open');\n if (target.is('.log-line-number')) {\n path = target.attr('href');\n Travis.app.get('router').route(path);\n event.stopPropagation();\n return false;\n }\n },\n toTop: function() {\n return $(window).scrollTop(0);\n },\n jobBinding: 'context',\n toggleTailing: function(event) {\n Travis.app.tailing.toggle();\n return event.preventDefault();\n },\n logSubscriber: (function() {\n var job, state;\n job = this.get('job');\n state = this.get('job.state');\n if (job && state !== 'finished') {\n job.subscribe();\n }\n return null;\n }).property('job', 'job.state')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/job");minispade.register('views/left', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n tabBinding: 'controller.tab',\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/left");minispade.register('views/profile', "(function() {(function() {\n\n this.Travis.reopen({\n ProfileView: Travis.View.extend({\n templateName: 'profile/show',\n accountBinding: 'controller.account',\n name: (function() {\n return this.get('account.name') || this.get('account.login');\n }).property('account.name', 'account.login')\n }),\n ProfileTabsView: Travis.View.extend({\n templateName: 'profile/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classHooks: (function() {\n if (this.get('tab') === 'hooks') {\n return 'active';\n }\n }).property('tab'),\n classUser: (function() {\n if (this.get('tab') === 'user') {\n return 'active';\n }\n }).property('tab'),\n accountBinding: 'controller.account',\n displayUser: (function() {\n return this.get('controller.account.login') === this.get('controller.user.login');\n }).property('controller.account.login', 'controller.user.login')\n }),\n HooksView: Travis.View.extend({\n templateName: 'profile/tabs/hooks',\n userBinding: 'controller.user',\n urlGithubAdmin: (function() {\n return Travis.Urls.githubAdmin(this.get('hook.slug'));\n }).property('hook.slug')\n }),\n UserView: Travis.View.extend({\n templateName: 'profile/tabs/user',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=48&d=mm\";\n }).property('user.gravatarId'),\n locales: (function() {\n return [\n {\n key: null,\n name: ''\n }, {\n key: 'en',\n name: 'English'\n }, {\n key: 'ca',\n name: 'Catalan'\n }, {\n key: 'cs',\n name: 'Čeština'\n }, {\n key: 'es',\n name: 'Español'\n }, {\n key: 'fr',\n name: 'Français'\n }, {\n key: 'ja',\n name: '日本語'\n }, {\n key: 'nl',\n name: 'Nederlands'\n }, {\n key: 'nb',\n name: 'Norsk Bokmål'\n }, {\n key: 'pl',\n name: 'Polski'\n }, {\n key: {\n 'pt-BR': {\n name: 'Português brasileiro'\n }\n }\n }, {\n key: 'ru',\n name: 'Русский'\n }\n ];\n }).property(),\n saveLocale: function(event) {\n return this.get('user').updateLocale($('#locale').val());\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/profile");minispade.register('views/repo', "(function() {(function() {\nminispade.require('views/repo/list');\nminispade.require('views/repo/show');\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo");minispade.register('views/repo/list', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n toggleInfo: function(event) {\n return $('#repos').toggleClass('open');\n }\n }),\n ReposListView: Em.CollectionView.extend({\n elementId: 'repos',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n repoBinding: 'content',\n classNames: ['repo'],\n classNameBindings: ['color', 'selected'],\n selectedBinding: 'repo.selected',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('repo.lastBuildResult'));\n }).property('repo.lastBuildResult'),\n urlRepo: (function() {\n return Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlLastBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('repo.lastBuildId'));\n }).property('repo.slug', 'repo.lastBuildId')\n })\n }),\n ReposListTabsView: Travis.View.extend({\n templateName: 'repos/list/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.app.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/list");minispade.register('views/repo/show', "(function() {(function() {\n\n this.Travis.reopen({\n RepoView: Travis.View.extend({\n templateName: 'repos/show',\n reposBinding: 'controller.repos',\n repoBinding: 'controller.repo',\n \"class\": (function() {\n if (!this.get('repo.isComplete') && !this.get('isEmpty')) {\n return 'loading';\n }\n }).property('repo.isComplete'),\n isEmpty: (function() {\n return this.get('repos.length') === 0;\n }).property('repos.length'),\n urlGithub: (function() {\n return Travis.Urls.githubRepo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubWatchers: (function() {\n return Travis.Urls.githubWatchers(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubNetwork: (function() {\n return Travis.Urls.githubNetwork(this.get('repo.slug'));\n }).property('repo.slug')\n }),\n ReposEmptyView: Travis.View.extend({\n template: ''\n }),\n RepoShowTabsView: Travis.View.extend({\n templateName: 'repos/show/tabs',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n classCurrent: (function() {\n if (this.get('tab') === 'current') {\n return 'active';\n }\n }).property('tab'),\n classBuilds: (function() {\n if (this.get('tab') === 'builds') {\n return 'active';\n }\n }).property('tab'),\n classPullRequests: (function() {\n if (this.get('tab') === 'pull_requests') {\n return 'active';\n }\n }).property('tab'),\n classBranches: (function() {\n if (this.get('tab') === 'branches') {\n return 'active';\n }\n }).property('tab'),\n classEvents: (function() {\n if (this.get('tab') === 'events') {\n return 'active';\n }\n }).property('tab'),\n classBuild: (function() {\n var classes, tab;\n tab = this.get('tab');\n classes = [];\n if (tab === 'build') {\n classes.push('active');\n }\n if (tab === 'build' || tab === 'job') {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab'),\n classJob: (function() {\n if (this.get('tab') === 'job') {\n return 'active display-inline';\n }\n }).property('tab')\n }),\n RepoShowToolsView: Travis.View.extend({\n templateName: 'repos/show/tools',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n closeMenu: function() {\n return $('.menu').removeClass('display');\n },\n menu: function(event) {\n var element;\n this.popupCloseAll();\n element = $('#tools .menu').toggleClass('display');\n return event.stopPropagation();\n },\n requeue: function() {\n this.closeMenu();\n return this.get('build').requeue();\n },\n statusImages: function(event) {\n this.set('active', true);\n this.closeMenu();\n this.popup(event);\n return event.stopPropagation();\n },\n canPush: (function() {\n return this.get('isBuildTab') && this.get('build.isFinished') && this.get('hasPushPermissions');\n }).property('build.isFinished', 'hasPushPermissions', 'isBuildTab'),\n isBuildTab: (function() {\n return ['current', 'build', 'job'].indexOf(this.get('tab')) > -1;\n }).property('tab'),\n hasPushPermissions: (function() {\n var permissions;\n if (permissions = Travis.app.get('currentUser.permissions')) {\n return permissions.indexOf(this.get('repo.id')) > -1;\n }\n }).property('Travis.app.currentUser.permissions.length', 'repo.id'),\n branches: (function() {\n if (this.get('active')) {\n return this.get('repo.branches');\n }\n }).property('active', 'repo.branches'),\n urlRepo: (function() {\n return 'https://' + location.host + Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlStatusImage: (function() {\n return Travis.Urls.statusImage(this.get('repo.slug'), this.get('branch.commit.branch'));\n }).property('repo.slug', 'branch'),\n markdownStatusImage: (function() {\n return \"[) + \")](\" + (this.get('urlRepo')) + \")\";\n }).property('urlStatusImage'),\n textileStatusImage: (function() {\n return \"!\" + (this.get('urlStatusImage')) + \"!:\" + (this.get('urlRepo'));\n }).property('urlStatusImage'),\n rdocStatusImage: (function() {\n return \"{ }[\" + (this.get('urlRepo')) + \"]\";\n }).property('urlStatusImage')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/show");minispade.register('views/sidebar', "(function() {(function() {\n\n this.Travis.reopen({\n SidebarView: Travis.View.extend({\n templateName: 'layouts/sidebar',\n DecksView: Em.View.extend({\n templateName: \"sponsors/decks\",\n controller: Travis.SponsorsController.create({\n perPage: 1\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n Travis.app.get('router.sidebarController').tickables.push(controller);\n controller.set('content', Travis.Sponsor.decks());\n }\n return this._super.apply(this, arguments);\n }\n }),\n LinksView: Em.View.extend({\n templateName: \"sponsors/links\",\n controller: Travis.SponsorsController.create({\n perPage: 6\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n controller.set('content', Travis.Sponsor.links());\n Travis.app.get('router.sidebarController').tickables.push(controller);\n }\n return this._super.apply(this, arguments);\n }\n }),\n WorkersView: Em.View.extend({\n templateName: 'workers/list',\n controller: Travis.WorkersController.create(),\n didInsertElement: function() {\n this.set('controller.content', Travis.Worker.find());\n return this._super.apply(this, arguments);\n }\n }),\n QueuesView: Em.View.extend({\n templateName: 'queues/list',\n controller: Em.ArrayController.create(),\n didInsertElement: function() {\n var queue, queues;\n queues = (function() {\n var _i, _len, _ref, _results;\n _ref = Travis.QUEUES;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n queue = _ref[_i];\n _results.push(Em.ArrayController.create({\n content: Travis.Job.queued(queue.name),\n id: \"queue_\" + queue.name,\n name: queue.display\n }));\n }\n return _results;\n })();\n this.set('controller.content', queues);\n return this._super.apply(this, arguments);\n }\n })\n }),\n WorkersView: Travis.View.extend({\n toggleWorkers: function(event) {\n var handle;\n handle = $(event.target).toggleClass('open');\n if (handle.hasClass('open')) {\n return $('#workers li').addClass('open');\n } else {\n return $('#workers li').removeClass('open');\n }\n }\n }),\n WorkersListView: Travis.View.extend({\n toggle: function(event) {\n return $(event.target).closest('li').toggleClass('open');\n }\n }),\n WorkersItemView: Travis.View.extend({\n display: (function() {\n var name, number, payload, repo, state;\n name = (this.get('worker.name') || '').replace('travis-', '');\n state = this.get('worker.state');\n payload = this.get('worker.payload');\n if (state === 'working' && (payload != null ? payload.repository : void 0) && (payload != null ? payload.build : void 0)) {\n repo = payload.repository.slug;\n number = ' #' + payload.build.number;\n return (\"\" + name + \": \" + repo + \" \" + number).htmlSafe();\n } else {\n return \"\" + name + \": \" + state;\n }\n }).property('worker.state')\n }),\n QueueItemView: Travis.View.extend({\n tagName: 'li'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/sidebar");minispade.register('views/signin', "(function() {(function() {\n\n this.Travis.reopen({\n SigninView: Travis.View.extend({\n templateName: 'auth/signin',\n signingIn: (function() {\n return Travis.app.get('authState') === 'signing-in';\n }).property('Travis.app.authState')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/signin");minispade.register('views/stats', "(function() {(function() {\n\n this.Travis.reopen({\n StatsView: Travis.View.extend({\n templateName: 'stats/show',\n didInsertElement: function() {},\n renderChart: function(config) {\n var chart;\n chart = new Highcharts.Chart(config);\n return this.fetch(config.source, function(data) {\n var stats;\n stats = (function() {\n var _i, _len, _ref, _results;\n _ref = data.stats;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n stats = _ref[_i];\n _results.push(config.map(stats));\n }\n return _results;\n })();\n return chart.series[0].setData(stats);\n });\n },\n fetch: function(url, callback) {\n return $.ajax({\n type: 'GET',\n url: url,\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n },\n success: callback\n });\n },\n CHARTS: {\n repos: {\n source: '/api/stats/repos',\n total: 0,\n map: function(data) {\n return [Date.parse(data.date), this.total += parseInt(data.count)];\n },\n chart: {\n renderTo: \"repos_stats\"\n },\n title: {\n text: \"Total Projects/Repositories\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" repos\";\n }\n },\n series: [\n {\n name: \"Repository Growth\",\n data: []\n }\n ]\n },\n builds: {\n source: '/api/stats/tests',\n map: function(data) {\n return [Date.parse(data.date), parseInt(data.count)];\n },\n chart: {\n renderTo: \"tests_stats\",\n type: \"column\"\n },\n title: {\n text: \"Build Count\"\n },\n subtitle: {\n text: \"last month\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" builds\";\n }\n },\n series: [\n {\n name: \"Total Builds\",\n data: []\n }\n ]\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/stats");minispade.register('views/top', "(function() {(function() {\n\n this.Travis.reopen({\n TopView: Travis.View.extend({\n templateName: 'layouts/top',\n tabBinding: 'controller.tab',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=24&d=mm\";\n }).property('user.gravatarId'),\n classHome: (function() {\n if (this.get('tab') === 'home') {\n return 'active';\n }\n }).property('tab'),\n classStats: (function() {\n if (this.get('tab') === 'stats') {\n return 'active';\n }\n }).property('tab'),\n classProfile: (function() {\n var classes;\n classes = ['profile'];\n if (this.get('tab') === 'profile') {\n classes.push('active');\n }\n classes.push(Travis.app.get('authState'));\n return classes.join(' ');\n }).property('tab', 'Travis.app.authState'),\n showProfile: function() {\n return $('#top .profile ul').show();\n },\n hideProfile: function() {\n return $('#top .profile ul').hide();\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/top");minispade.register('config/emoij', "(function() {(function() {\n\n this.EmojiDictionary = ['-1', '0', '1', '109', '2', '3', '4', '5', '6', '7', '8', '8ball', '9', 'a', 'ab', 'airplane', 'alien', 'ambulance', 'angel', 'anger', 'angry', 'apple', 'aquarius', 'aries', 'arrow_backward', 'arrow_down', 'arrow_forward', 'arrow_left', 'arrow_lower_left', 'arrow_lower_right', 'arrow_right', 'arrow_up', 'arrow_upper_left', 'arrow_upper_right', 'art', 'astonished', 'atm', 'b', 'baby', 'baby_chick', 'baby_symbol', 'balloon', 'bamboo', 'bank', 'barber', 'baseball', 'basketball', 'bath', 'bear', 'beer', 'beers', 'beginner', 'bell', 'bento', 'bike', 'bikini', 'bird', 'birthday', 'black_square', 'blue_car', 'blue_heart', 'blush', 'boar', 'boat', 'bomb', 'book', 'boot', 'bouquet', 'bow', 'bowtie', 'boy', 'bread', 'briefcase', 'broken_heart', 'bug', 'bulb', 'bullettrain_front', 'bullettrain_side', 'bus', 'busstop', 'cactus', 'cake', 'calling', 'camel', 'camera', 'cancer', 'capricorn', 'car', 'cat', 'cd', 'chart', 'checkered_flag', 'cherry_blossom', 'chicken', 'christmas_tree', 'church', 'cinema', 'city_sunrise', 'city_sunset', 'clap', 'clapper', 'clock1', 'clock10', 'clock11', 'clock12', 'clock2', 'clock3', 'clock4', 'clock5', 'clock6', 'clock7', 'clock8', 'clock9', 'closed_umbrella', 'cloud', 'clubs', 'cn', 'cocktail', 'coffee', 'cold_sweat', 'computer', 'confounded', 'congratulations', 'construction', 'construction_worker', 'convenience_store', 'cool', 'cop', 'copyright', 'couple', 'couple_with_heart', 'couplekiss', 'cow', 'crossed_flags', 'crown', 'cry', 'cupid', 'currency_exchange', 'curry', 'cyclone', 'dancer', 'dancers', 'dango', 'dart', 'dash', 'de', 'department_store', 'diamonds', 'disappointed', 'dog', 'dolls', 'dolphin', 'dress', 'dvd', 'ear', 'ear_of_rice', 'egg', 'eggplant', 'egplant', 'eight_pointed_black_star', 'eight_spoked_asterisk', 'elephant', 'email', 'es', 'european_castle', 'exclamation', 'eyes', 'factory', 'fallen_leaf', 'fast_forward', 'fax', 'fearful', 'feelsgood', 'feet', 'ferris_wheel', 'finnadie', 'fire', 'fire_engine', 'fireworks', 'fish', 'fist', 'flags', 'flushed', 'football', 'fork_and_knife', 'fountain', 'four_leaf_clover', 'fr', 'fries', 'frog', 'fuelpump', 'gb', 'gem', 'gemini', 'ghost', 'gift', 'gift_heart', 'girl', 'goberserk', 'godmode', 'golf', 'green_heart', 'grey_exclamation', 'grey_question', 'grin', 'guardsman', 'guitar', 'gun', 'haircut', 'hamburger', 'hammer', 'hamster', 'hand', 'handbag', 'hankey', 'hash', 'headphones', 'heart', 'heart_decoration', 'heart_eyes', 'heartbeat', 'heartpulse', 'hearts', 'hibiscus', 'high_heel', 'horse', 'hospital', 'hotel', 'hotsprings', 'house', 'hurtrealbad', 'icecream', 'id', 'ideograph_advantage', 'imp', 'information_desk_person', 'iphone', 'it', 'jack_o_lantern', 'japanese_castle', 'joy', 'jp', 'key', 'kimono', 'kiss', 'kissing_face', 'kissing_heart', 'koala', 'koko', 'kr', 'leaves', 'leo', 'libra', 'lips', 'lipstick', 'lock', 'loop', 'loudspeaker', 'love_hotel', 'mag', 'mahjong', 'mailbox', 'man', 'man_with_gua_pi_mao', 'man_with_turban', 'maple_leaf', 'mask', 'massage', 'mega', 'memo', 'mens', 'metal', 'metro', 'microphone', 'minidisc', 'mobile_phone_off', 'moneybag', 'monkey', 'monkey_face', 'moon', 'mortar_board', 'mount_fuji', 'mouse', 'movie_camera', 'muscle', 'musical_note', 'nail_care', 'necktie', 'new', 'no_good', 'no_smoking', 'nose', 'notes', 'o', 'o2', 'ocean', 'octocat', 'octopus', 'oden', 'office', 'ok', 'ok_hand', 'ok_woman', 'older_man', 'older_woman', 'open_hands', 'ophiuchus', 'palm_tree', 'parking', 'part_alternation_mark', 'pencil', 'penguin', 'pensive', 'persevere', 'person_with_blond_hair', 'phone', 'pig', 'pill', 'pisces', 'plus1', 'point_down', 'point_left', 'point_right', 'point_up', 'point_up_2', 'police_car', 'poop', 'post_office', 'postbox', 'pray', 'princess', 'punch', 'purple_heart', 'question', 'rabbit', 'racehorse', 'radio', 'rage', 'rage1', 'rage2', 'rage3', 'rage4', 'rainbow', 'raised_hands', 'ramen', 'red_car', 'red_circle', 'registered', 'relaxed', 'relieved', 'restroom', 'rewind', 'ribbon', 'rice', 'rice_ball', 'rice_cracker', 'rice_scene', 'ring', 'rocket', 'roller_coaster', 'rose', 'ru', 'runner', 'sa', 'sagittarius', 'sailboat', 'sake', 'sandal', 'santa', 'satellite', 'satisfied', 'saxophone', 'school', 'school_satchel', 'scissors', 'scorpius', 'scream', 'seat', 'secret', 'shaved_ice', 'sheep', 'shell', 'ship', 'shipit', 'shirt', 'shit', 'shoe', 'signal_strength', 'six_pointed_star', 'ski', 'skull', 'sleepy', 'slot_machine', 'smile', 'smiley', 'smirk', 'smoking', 'snake', 'snowman', 'sob', 'soccer', 'space_invader', 'spades', 'spaghetti', 'sparkler', 'sparkles', 'speaker', 'speedboat', 'squirrel', 'star', 'star2', 'stars', 'station', 'statue_of_liberty', 'stew', 'strawberry', 'sunflower', 'sunny', 'sunrise', 'sunrise_over_mountains', 'surfer', 'sushi', 'suspect', 'sweat', 'sweat_drops', 'swimmer', 'syringe', 'tada', 'tangerine', 'taurus', 'taxi', 'tea', 'telephone', 'tennis', 'tent', 'thumbsdown', 'thumbsup', 'ticket', 'tiger', 'tm', 'toilet', 'tokyo_tower', 'tomato', 'tongue', 'top', 'tophat', 'traffic_light', 'train', 'trident', 'trophy', 'tropical_fish', 'truck', 'trumpet', 'tshirt', 'tulip', 'tv', 'u5272', 'u55b6', 'u6307', 'u6708', 'u6709', 'u6e80', 'u7121', 'u7533', 'u7a7a', 'umbrella', 'unamused', 'underage', 'unlock', 'up', 'us', 'v', 'vhs', 'vibration_mode', 'virgo', 'vs', 'walking', 'warning', 'watermelon', 'wave', 'wc', 'wedding', 'whale', 'wheelchair', 'white_square', 'wind_chime', 'wink', 'wink2', 'wolf', 'woman', 'womans_hat', 'womens', 'x', 'yellow_heart', 'zap', 'zzz'];\n\n}).call(this);\n\n})();\n//@ sourceURL=config/emoij");minispade.register('data/sponsors', "(function() {(function() {\n\n this.Travis.SPONSORS = [\n {\n type: 'platinum',\n url: \"http://www.wooga.com\",\n image: \"wooga-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://bendyworks.com\",\n image: \"bendyworks-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://cloudcontrol.com\",\n image: \"cloudcontrol-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://xing.de\",\n image: \"xing-205x130.png\"\n }, {\n type: 'gold',\n url: \"http://heroku.com\",\n image: \"heroku-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://soundcloud.com\",\n image: \"soundcloud-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://nedap.com\",\n image: \"nedap-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://mongohq.com\",\n image: \"mongohq-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://zweitag.de\",\n image: \"zweitag-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://kanbanery.com\",\n image: \"kanbanery-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://ticketevolution.com\",\n image: \"ticketevolution-205x60.jpg\"\n }, {\n type: 'gold',\n url: \"http://plan.io/travis\",\n image: \"planio-205x60.png\"\n }, {\n type: 'silver',\n link: \"Cobot : The one tool to run your coworking space \"\n }, {\n type: 'silver',\n link: \"JumpstartLab : We build developers \"\n }, {\n type: 'silver',\n link: \"Evil Martians : Agile Ruby on Rails development \"\n }, {\n type: 'silver',\n link: \"Zendesk : Love your helpdesk \"\n }, {\n type: 'silver',\n link: \"Stripe : Payments for developers \"\n }, {\n type: 'silver',\n link: \"Basho : We make Riak! \"\n }, {\n type: 'silver',\n link: \"Relevance : We deliver software solutions \"\n }, {\n type: 'silver',\n link: \"Mindmatters : Software für Menschen \"\n }, {\n type: 'silver',\n link: \"Amen : The best and worst of everything \"\n }, {\n type: 'silver',\n link: \"Site5 : Premium Web Hosting Solutions \"\n }, {\n type: 'silver',\n link: \"Crowd Interactive : Leading Rails consultancy in Mexico \"\n }, {\n type: 'silver',\n link: \"Atomic Object : Work with really smart people \"\n }, {\n type: 'silver',\n link: \"Codeminer : smart services for your startup \"\n }, {\n type: 'silver',\n link: \"Cloudant : grow into your data layer, not out of it \"\n }, {\n type: 'silver',\n link: \"Gidsy : Explore, organize & book unique things to do! \"\n }, {\n type: 'silver',\n link: \"5apps : Package & deploy HTML5 apps automatically \"\n }, {\n type: 'silver',\n link: \"Meltmedia : We are Interactive Superheroes \"\n }, {\n type: 'silver',\n link: \"Fingertips offers design and development services \"\n }, {\n type: 'silver',\n link: \"Engine Yard : Build epic apps, let us handle the rest \"\n }, {\n type: 'silver',\n link: \"Malwarebytes : Defeat Malware once and for all. \"\n }, {\n type: 'silver',\n link: \"Readmill : The best reading app on the iPad. \"\n }, {\n type: 'silver',\n link: \"Medidata : clinical tech improving quality of life \"\n }, {\n type: 'silver',\n link: \"ESM : Japan's best agile Ruby/Rails consultancy \"\n }, {\n type: 'silver',\n link: \"Twitter : instantly connects people everywhere \"\n }, {\n type: 'silver',\n link: \"AGiLE ANiMAL : we <3 Travis CI. \"\n }, {\n type: 'silver',\n link: \"Tupalo : Discover, review & share local businesses. \"\n }\n ];\n\n this.Travis.WORKERS = {\n \"jvm-otp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n },\n \"jvm-otp2.worker.travis-ci.org\": {\n name: \"Transloadit\",\n url: \"http://transloadit.com\"\n },\n \"ppp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://beta.travis-ci.com\"\n },\n \"ppp2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ppp3.worker.travis-ci.org\": {\n name: \"Alchemy CMS\",\n url: \"http://alchemy-cms.com/\"\n },\n \"rails1.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby1.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"ruby2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby3.worker.travis-ci.org\": {\n name: \"Railslove\",\n url: \"http://railslove.de\"\n },\n \"ruby4.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"spree.worker.travis-ci.org\": {\n name: \"Spree\",\n url: \"http://spreecommerce.com\"\n },\n \"staging.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=data/sponsors");minispade.register('ext/jquery', "(function() {(function() {\n\n $.fn.extend({\n outerHtml: function() {\n return $(this).wrap('
').parent().html();\n },\n outerElement: function() {\n return $($(this).outerHtml()).empty();\n },\n flash: function() {\n return Utils.flash(this);\n },\n unflash: function() {\n return Utils.unflash(this);\n },\n filterLog: function() {\n this.deansi();\n return this.foldLog();\n },\n deansi: function() {\n return this.html(Utils.deansi(this.html()));\n },\n foldLog: function() {\n return this.html(Utils.foldLog(this.html()));\n },\n unfoldLog: function() {\n return this.html(Utils.unfoldLog(this.html()));\n },\n updateTimes: function() {\n return Utils.updateTimes(this);\n },\n activateTab: function(tab) {\n return Utils.activateTab(this, tab);\n },\n timeInWords: function() {\n return $(this).each(function() {\n return $(this).text(Utils.timeInWords(parseInt($(this).attr('title'))));\n });\n },\n updateGithubStats: function(repo) {\n return Utils.updateGithubStats(repo, $(this));\n }\n });\n\n $.extend({\n isEmpty: function(obj) {\n if ($.isArray(obj)) {\n return !obj.length;\n } else if ($.isObject(obj)) {\n return !$.keys(obj).length;\n } else {\n return !obj;\n }\n },\n isObject: function(obj) {\n return Object.prototype.toString.call(obj) === '[object Object]';\n },\n keys: function(obj) {\n var keys;\n keys = [];\n $.each(obj, function(key) {\n return keys.push(key);\n });\n return keys;\n },\n values: function(obj) {\n var values;\n values = [];\n $.each(obj, function(key, value) {\n return values.push(value);\n });\n return values;\n },\n underscore: function(string) {\n return string[0].toLowerCase() + string.substring(1).replace(/([A-Z])?/g, function(match, chr) {\n if (chr) {\n return \"_\" + (chr.toUpperCase());\n } else {\n return '';\n }\n });\n },\n camelize: function(string, uppercase) {\n string = uppercase === false ? $.underscore(string) : $.capitalize(string);\n return string.replace(/_(.)?/g, function(match, chr) {\n if (chr) {\n return chr.toUpperCase();\n } else {\n return '';\n }\n });\n },\n capitalize: function(string) {\n return string[0].toUpperCase() + string.substring(1);\n },\n compact: function(object) {\n return $.grep(object, function(value) {\n return !!value;\n });\n },\n all: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return false;\n }\n i++;\n }\n return true;\n },\n detect: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return array[i];\n }\n i++;\n }\n },\n select: function(array, callback) {\n var args, i, result;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n result = [];\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n result.push(array[i]);\n }\n i++;\n }\n return result;\n },\n slice: function(object, key) {\n var keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) > -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n only: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) !== -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n except: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) === -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n intersect: function(array, other) {\n return array.filter(function(element) {\n return other.indexOf(element) !== -1;\n });\n },\n map: function(elems, callback, arg) {\n var i, isArray, key, length, ret, value;\n value = void 0;\n key = void 0;\n ret = [];\n i = 0;\n length = elems.length;\n isArray = elems instanceof jQuery || length !== void 0 && typeof length === 'number' && (length > 0 && elems[0] && elems[length - 1]) || length === 0 || jQuery.isArray(elems);\n if (isArray) {\n while (i < length) {\n value = callback(elems[i], i, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n i++;\n }\n } else {\n for (key in elems) {\n value = callback(elems[key], key, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n }\n }\n return ret.concat.apply([], ret);\n },\n shuffle: function(array) {\n var current, tmp, top;\n array = array.slice();\n top = array.length;\n while (top && --top) {\n current = Math.floor(Math.random() * (top + 1));\n tmp = array[current];\n array[current] = array[top];\n array[top] = tmp;\n }\n return array;\n },\n truncate: function(string, length) {\n if (string.length > length) {\n return string.trim().substring(0, length) + '...';\n } else {\n return string;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=ext/jquery");minispade.register('travis/ajax', "(function() {(function() {\n\n jQuery.support.cors = true;\n\n this.Travis.ajax = Em.Object.create({\n DEFAULT_OPTIONS: {\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n }\n },\n get: function(url, callback) {\n return this.ajax(url, 'get', {\n success: callback\n });\n },\n post: function(url, data, callback) {\n return this.ajax(url, 'post', {\n data: data,\n success: callback\n });\n },\n ajax: function(url, method, options) {\n var endpoint, success, token, _base,\n _this = this;\n endpoint = Travis.config.api_endpoint || '';\n options = options || {};\n if (token = sessionStorage.getItem('travis.token')) {\n options.headers || (options.headers = {});\n (_base = options.headers)['Authorization'] || (_base['Authorization'] = \"token \" + token);\n }\n options.url = \"\" + endpoint + url;\n options.type = method;\n options.dataType = 'json';\n options.contentType = 'application/json; charset=utf-8';\n options.context = this;\n if (options.data && method !== 'GET' && method !== 'get') {\n options.data = JSON.stringify(options.data);\n }\n success = options.success || (function() {});\n options.success = function(data) {\n var _ref;\n if (((_ref = Travis.app) != null ? _ref.router : void 0) && data.flash) {\n Travis.app.router.flashController.pushObjects(data.flash);\n }\n delete data.flash;\n return success.call(_this, data);\n };\n options.error = function(data) {\n if (data.flash) {\n return Travis.app.router.flashController.pushObject(data.flash);\n }\n };\n return $.ajax($.extend(options, Travis.ajax.DEFAULT_OPTIONS));\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ajax");minispade.register('travis/expandable_record_array', "(function() {(function() {\n\n Travis.ExpandableRecordArray = DS.RecordArray.extend({\n isLoaded: false,\n isLoading: false,\n load: function(array) {\n var observer, self;\n this.set('isLoading', true);\n self = this;\n observer = function() {\n var content;\n if (this.get('isLoaded')) {\n content = self.get('content');\n array.removeObserver('isLoaded', observer);\n array.forEach(function(record) {\n return self.pushObject(record);\n });\n self.set('isLoading', false);\n return self.set('isLoaded', true);\n }\n };\n return array.addObserver('isLoaded', observer);\n },\n pushObject: function(record) {\n var clientId, id, ids;\n ids = this.get('content');\n id = record.get('id');\n clientId = record.get('clientId');\n if (ids.contains(clientId)) {\n return;\n }\n return ids.pushObject(clientId);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/expandable_record_array");minispade.register('travis/limited_array', "(function() {(function() {\n\n Travis.LimitedArray = Em.ArrayProxy.extend({\n limit: 10,\n init: function() {\n return this._super.apply(this, arguments);\n },\n arrangedContent: (function() {\n var content;\n if (content = this.get('content')) {\n return content.slice(0, this.get('limit'));\n }\n }).property('content'),\n contentArrayDidChange: function(array, index, removedCount, addedCount) {\n var addedObjects, arrangedContent, length, limit, object, _i, _len;\n this._super.apply(this, arguments);\n if (addedCount > 0) {\n addedObjects = array.slice(index, index + addedCount);\n arrangedContent = this.get('arrangedContent');\n for (_i = 0, _len = addedObjects.length; _i < _len; _i++) {\n object = addedObjects[_i];\n arrangedContent.unshiftObject(object);\n }\n limit = this.get('limit');\n length = arrangedContent.get('length');\n if (length > limit) {\n return arrangedContent.replace(limit, length - limit);\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/limited_array");minispade.register('travis/location', "(function() {(function() {\n\n Travis.Location = Ember.HistoryLocation.extend({\n onUpdateURL: function(callback) {\n var guid;\n guid = Ember.guidFor(this);\n return Ember.$(window).bind('popstate.ember-location-' + guid, function(e) {\n return callback(location.pathname + location.hash);\n });\n },\n getURL: function() {\n var location;\n location = this.get('location');\n return location.pathname + location.hash;\n }\n });\n\n Ember.Location.implementations['travis'] = Travis.Location;\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/location");minispade.register('travis/log', "(function() {(function() {\n\n this.Travis.Log = {\n FOLDS: {\n schema: /(\\$ (?:bundle exec )?rake( db:create)? db:schema:load[\\s\\S]*?-- assume_migrated_upto_version[\\s\\S]*?<\\/p>\\n.*<\\/p>)/g,\n migrate: /(\\$ (?:bundle exec )?rake( db:create)? db:migrate[\\s\\S]*== +\\w+: migrated \\(.*\\) =+)/g,\n bundle: /(\\$ bundle install.*<\\/p>\\n((Updating|Using|Installing|Fetching|remote:|Receiving|Resolving).*?<\\/p>\\n|<\\/p>\\n)*)/g,\n exec: /([\\/\\w]*.rvm\\/rubies\\/[\\S]*?\\/(ruby|rbx|jruby) .*?<\\/p>)/g\n },\n filter: function(log, path) {\n log = this.escape(log);\n log = this.deansi(log);\n log = log.replace(/\\r/g, '');\n log = this.number(log, path);\n log = this.fold(log);\n log = log.replace(/\\n/g, '');\n return log;\n },\n stripPaths: function(log) {\n return log.replace(/\\/home\\/vagrant\\/builds(\\/[^\\/\\n]+){2}\\//g, '');\n },\n escape: function(log) {\n return Handlebars.Utils.escapeExpression(log);\n },\n escapeRuby: function(log) {\n return log.replace(/#<(\\w+.*?)>/, '#<$1>');\n },\n number: function(log, path) {\n var result;\n path = \"\" + path + \"/\";\n result = '';\n $.each(log.trim().split('\\n'), function(ix, line) {\n var number, pathWithNumber;\n number = ix + 1;\n pathWithNumber = \"\" + path + \"#L\" + number;\n return result += '%@ %@
\\n'.fmt(pathWithNumber, number, number, number, line);\n });\n return result.trim();\n },\n deansi: function(log) {\n var ansi, text;\n log = log.replace(/\\r\\r/g, '\\r').replace(/\\033\\[K\\r/g, '\\r').replace(/^.*\\r(?!$)/gm, '').replace(/\u001b\\[2K/g, '').replace(/\\033\\(B/g, \"\");\n ansi = ansiparse(log);\n text = '';\n ansi.forEach(function(part) {\n var classes;\n classes = [];\n part.foreground && classes.push(part.foreground);\n part.background && classes.push('bg-' + part.background);\n part.bold && classes.push('bold');\n part.italic && classes.push('italic');\n return text += (classes.length ? '' + part.text + ' ' : part.text);\n });\n return text.replace(/\\033/g, '');\n },\n fold: function(log) {\n log = this.unfold(log);\n $.each(Travis.Log.FOLDS, function(name, pattern) {\n return log = log.replace(pattern, function() {\n return '' + arguments[1].trim() + '
';\n });\n });\n return log;\n },\n unfold: function(log) {\n return log.replace(/([\\s\\S]*?)<\\/div>/g, '$1\\n');\n },\n location: function() {\n return window.location.hash;\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/log");minispade.register('travis/model', "(function() {(function() {\n\n this.Travis.Model = DS.Model.extend({\n primaryKey: 'id',\n id: DS.attr('number'),\n init: function() {\n this.loadedAttributes = [];\n return this._super.apply(this, arguments);\n },\n get: function(name) {\n if (this.constructor.isAttribute(name) && this.get('incomplete') && !this.isAttributeLoaded(name)) {\n this.loadTheRest();\n }\n return this._super.apply(this, arguments);\n },\n refresh: function() {\n var id, store;\n if (id = this.get('id')) {\n store = this.get('store');\n return store.adapter.find(store, this.constructor, id);\n }\n },\n update: function(attrs) {\n var _this = this;\n $.each(attrs, function(key, value) {\n if (key !== 'id') {\n return _this.set(key, value);\n }\n });\n return this;\n },\n isAttributeLoaded: function(name) {\n return this.loadedAttributes.contains(name);\n },\n isComplete: (function() {\n if (this.get('incomplete')) {\n this.loadTheRest();\n return false;\n } else {\n this.set('isCompleting', false);\n return this.get('isLoaded');\n }\n }).property('incomplete', 'isLoaded'),\n loadTheRest: function() {\n if (this.get('isCompleting')) {\n return;\n }\n this.set('isCompleting', true);\n return this.refresh();\n },\n select: function() {\n return this.constructor.select(this.get('id'));\n }\n });\n\n this.Travis.Model.reopenClass({\n find: function() {\n if (arguments.length === 0) {\n return Travis.app.store.findAll(this);\n } else {\n return this._super.apply(this, arguments);\n }\n },\n filter: function(callback) {\n return Travis.app.store.filter(this, callback);\n },\n load: function(attrs) {\n return Travis.app.store.load(this, attrs);\n },\n select: function(id) {\n return this.find().forEach(function(record) {\n return record.set('selected', record.get('id') === id);\n });\n },\n buildURL: function(suffix) {\n var base, url;\n base = this.url || this.pluralName();\n Ember.assert('Base URL (' + base + ') must not start with slash', !base || base.toString().charAt(0) !== '/');\n Ember.assert('URL suffix (' + suffix + ') must not start with slash', !suffix || suffix.toString().charAt(0) !== '/');\n url = [base];\n if (suffix !== void 0) {\n url.push(suffix);\n }\n return url.join('/');\n },\n singularName: function() {\n var name, parts;\n parts = this.toString().split('.');\n name = parts[parts.length - 1];\n return name.replace(/([A-Z])/g, '_$1').toLowerCase().slice(1);\n },\n pluralName: function() {\n return Travis.app.store.adapter.pluralize(this.singularName());\n },\n isAttribute: function(name) {\n if (!this.attributesSaved) {\n this._saveAttributes();\n }\n return this.cachedAttributes.contains(name);\n },\n _saveAttributes: function() {\n var cachedAttributes;\n this.attributesSaved = true;\n cachedAttributes = [];\n this.eachComputedProperty(function(name, meta) {\n if (meta.isAttribute) {\n return cachedAttributes.pushObject(name);\n }\n });\n return this.cachedAttributes = cachedAttributes;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/model");minispade.register('travis/ticker', "(function() {(function() {\n\n this.Travis.Ticker = Ember.Object.extend({\n init: function() {\n if (this.get('interval') !== -1) {\n return this.schedule();\n }\n },\n tick: function() {\n var context, target, targets, _i, _len;\n context = this.get('context');\n targets = this.get('targets') || [this.get('target')];\n for (_i = 0, _len = targets.length; _i < _len; _i++) {\n target = targets[_i];\n if (context) {\n target = context.get(target);\n }\n if (target) {\n target.tick();\n }\n }\n return this.schedule();\n },\n schedule: function() {\n var _this = this;\n return Ember.run.later((function() {\n return _this.tick();\n }), this.get('interval') || Travis.app.TICK_INTERVAL);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ticker");minispade.register('travis', "(function() {(function() {\nminispade.require('ext/jquery');\nminispade.require('ext/ember/namespace');\n\n this.Travis = Em.Namespace.create({\n config: {\n api_endpoint: $('meta[rel=\"travis.api_endpoint\"]').attr('href'),\n pusher_key: $('meta[name=\"travis.pusher_key\"]').attr('value')\n },\n CONFIG_KEYS: ['rvm', 'gemfile', 'env', 'jdk', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala'],\n ROUTES: {\n 'profile/:login/me': ['profile', 'user'],\n 'profile/:login': ['profile', 'hooks'],\n 'profile': ['profile', 'hooks'],\n 'stats': ['stats', 'show'],\n ':owner/:name/jobs/:id/:line': ['home', 'job'],\n ':owner/:name/jobs/:id': ['home', 'job'],\n ':owner/:name/builds/:id': ['home', 'build'],\n ':owner/:name/builds': ['home', 'builds'],\n ':owner/:name/pull_requests': ['home', 'pullRequests'],\n ':owner/:name/branches': ['home', 'branches'],\n ':owner/:name': ['home', 'current'],\n '': ['home', 'index'],\n '#': ['home', 'index']\n },\n QUEUES: [\n {\n name: 'common',\n display: 'Common'\n }, {\n name: 'php',\n display: 'PHP, Perl and Python'\n }, {\n name: 'node_js',\n display: 'Node.js'\n }, {\n name: 'jvmotp',\n display: 'JVM and Erlang'\n }, {\n name: 'rails',\n display: 'Rails'\n }, {\n name: 'spree',\n display: 'Spree'\n }\n ],\n INTERVALS: {\n sponsors: -1,\n times: -1,\n updateTimes: 1000\n },\n setLocale: function(locale) {\n if (!locale) {\n return;\n }\n I18n.locale = locale;\n return localStorage.setItem('travis.config.locale', locale);\n },\n run: function(attrs) {\n if (location.hash.slice(0, 2) === '#!') {\n location.href = location.href.replace('#!/', '');\n }\n this.setLocale(localStorage.getItem('travis.config.locale'));\n return Ember.run.next(this, function() {\n var app,\n _this = this;\n app = Travis.App.create(attrs || {});\n $.each(Travis, function(key, value) {\n if (value && value.isClass && key !== 'constructor') {\n return app[key] = value;\n }\n });\n this.app = app;\n this.store = app.store;\n return $(function() {\n return app.initialize();\n });\n });\n }\n });\nminispade.require('travis/ajax');\nminispade.require('app');\n\n}).call(this);\n\n})();\n//@ sourceURL=travis");minispade.register('templates', "(function() {\nEmber.TEMPLATES['application'] = Ember.Handlebars.compile(\"{{outlet}}\\n\");\n\nEmber.TEMPLATES['auth/signin'] = Ember.Handlebars.compile(\"{{#if view.signingIn}}\\n
Signing in ... \\n
\\n Trying to authenticate with GitHub.\\n
\\n{{else}}\\n
Sign in \\n
\\n Please sign in with GitHub. \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/list'] = Ember.Handlebars.compile(\"{{#if builds.isLoaded}}\\n
\\n \\n \\n {{t builds.name}} \\n {{t builds.commit}} \\n {{t builds.message}} \\n {{t builds.duration}} \\n {{t builds.finished_at}} \\n \\n \\n\\n \\n {{#each build in builds}}\\n {{#view Travis.BuildsItemView contextBinding=\\\"build\\\"}}\\n \\n \\n {{#if id}}\\n \\n {{number}}\\n \\n {{/if}}\\n \\n \\n \\n {{formatCommit commit}}\\n \\n \\n \\n {{{formatMessage commit.message short=\\\"true\\\"}}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n
\\n {{view view.ShowMoreButton}}\\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if loading}}\\n
Loading \\n {{else}}\\n
\\n \\n
{{t builds.name}} \\n
\\n \\n {{#if build.id}}\\n {{build.number}} \\n {{/if}}\\n \\n
{{t builds.finished_at}} \\n
{{formatTime build.finishedAt}} \\n
{{t builds.duration}} \\n
{{formatDuration build.duration}} \\n
\\n\\n \\n\\n {{t builds.message}} \\n {{{formatMessage build.commit.message}}} \\n\\n {{#unless isMatrix}}\\n {{t builds.config}} \\n {{formatConfig build.config}} \\n {{/unless}}\\n \\n\\n {{#if build.isMatrix}}\\n {{view Travis.JobsView jobsBinding=\\\"build.requiredJobs\\\" required=\\\"true\\\"}}\\n {{view Travis.JobsView jobsBinding=\\\"build.allowedFailureJobs\\\"}}\\n {{else}}\\n {{view Travis.LogView contextBinding=\\\"build.jobs.firstObject\\\"}}\\n {{/if}}\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['events/list'] = Ember.Handlebars.compile(\"{{#if view.events.isLoaded}}\\n
\\n \\n \\n Time \\n Event \\n Result \\n Message \\n \\n \\n\\n \\n {{#each event in view.events}}\\n {{#view Travis.EventsItemView contextBinding=\\\"event\\\"}}\\n \\n {{formatTime createdAt}}\\n \\n \\n {{event.event_}}\\n \\n \\n {{event.result}}\\n \\n \\n {{event.message}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\\n\");\n\nEmber.TEMPLATES['jobs/list'] = Ember.Handlebars.compile(\"{{#if view.jobs.length}}\\n {{#if view.required}}\\n
\\n \\n {{t jobs.build_matrix}}\\n \\n {{else}}\\n \\n \\n {{t jobs.allowed_failures}}\\n \\n \\n {{/if}}\\n \\n \\n {{#each key in view.build.configKeys}}\\n {{key}} \\n {{/each}}\\n \\n \\n \\n {{#each job in view.jobs}}\\n {{#view Travis.JobsItemView contextBinding=\\\"job\\\"}}\\n \\n \\n {{#if job.id}}\\n {{number}} \\n {{/if}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{#each value in configValues}}\\n {{value}} \\n {{/each}}\\n {{/view}}\\n {{/each}}\\n \\n
\\n\\n {{#unless view.required}}\\n \\n {{/unless}}\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/log'] = Ember.Handlebars.compile(\"{{view.logSubscriber}}\\n\\n{{#if log.isLoaded}}\\n \\n \\n Follow logs \\n {{{formatLog log.body repo=\\\"repository\\\" item=\\\"parentView.currentItem\\\"}}} \\n\\n {{#if sponsor.name}}\\n \\n {{/if}}\\n\\n To top \\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if job.isComplete}}\\n \\n
\\n \\n
Job \\n
\\n \\n {{#if job.id}}\\n {{job.number}} \\n {{/if}}\\n \\n
{{t jobs.finished_at}} \\n
{{formatTime job.finishedAt}} \\n
{{t jobs.duration}} \\n
{{formatDuration job.duration}} \\n
\\n\\n \\n\\n {{t jobs.message}} \\n {{formatMessage commit.message}} \\n {{t jobs.config}} \\n {{formatConfig job.config}} \\n \\n\\n {{view Travis.LogView contextBinding=\\\"job\\\"}}}\\n
\\n {{else}}\\n \\n Loading \\n
\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['layouts/flash'] = Ember.Handlebars.compile(\"{{#each flash in controller}}\\n {{#view Travis.FlashItemView flashBinding=\\\"flash\\\"}}\\n {{view.message}}
\\n \\n {{/view}}\\n{{/each}}\\n\");\n\nEmber.TEMPLATES['layouts/home'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n {{outlet right}}\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/profile'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n
\\n\\n
\\n\\n
\\n
Getting started? \\n
\\n Please read our guide .\\n It will only take a few minutes :)\\n
\\n
\\n You can find detailled docs on our about site.\\n
\\n
\\n If you need help please don't hesitate to join\\n #travis on irc.freenode.net\\n or our mailinglist .\\n
\\n
\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/sidebar'] = Ember.Handlebars.compile(\"\\n\\n\\n\\n{{view view.DecksView}}\\n{{view view.WorkersView}}\\n{{view view.QueuesView}}\\n{{view view.LinksView}}\\n\\n\\n
{{t layouts.about.join}} \\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/simple'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n
\\n\\n\");\n\nEmber.TEMPLATES['layouts/top'] = Ember.Handlebars.compile(\"\\n Travis \\n \\n\\n\\n\");\n\nEmber.TEMPLATES['profile/accounts'] = Ember.Handlebars.compile(\"\\n
\\n\\n\\n\\n\\n {{#collection Travis.AccountsListView contentBinding=\\\"controller\\\"}}\\n
{{view.name}} \\n
\\n Repositories: \\n {{view.account.reposCount}} \\n
\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['profile/show'] = Ember.Handlebars.compile(\"{{view.name}} \\n\\n{{view Travis.ProfileTabsView}}\\n\\n\\n {{outlet pane}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n {{#if view.displayUser}}\\n \\n \\n \\n {{/if}}\\n \\n\");\n\nEmber.TEMPLATES['profile/tabs/hooks'] = Ember.Handlebars.compile(\"\\n {{{t profiles.show.message.your_repos}}}\\n
\\n\\n{{#if hooks.isLoaded}}\\n {{#if user.isSyncing}}\\n \\n Please wait while we sync from GitHub \\n
\\n {{else}}\\n \\n Last synchronized from GitHub: {{formatTime user.syncedAt}}\\n \\n Sync now\\n \\n
\\n\\n \\n {{#each hook in hooks}}\\n \\n {{hook.slug}} \\n {{hook.description}}
\\n\\n \\n \\n {{else}}\\n \\n You do not seem to have any repositories that we could sync.\\n \\n {{/each}}\\n \\n {{/if}}\\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs/user'] = Ember.Handlebars.compile(\" \\n\\n\\n \\n {{t profiles.show.github}}:\\n \\n \\n {{user.login}} \\n \\n \\n {{t profiles.show.email}}:\\n \\n \\n {{user.email}}\\n \\n \\n {{t profiles.show.token}}:\\n \\n \\n {{user.token}}\\n \\n \\n\\n\\n\\n\\n\");\n\nEmber.TEMPLATES['queues/list'] = Ember.Handlebars.compile(\"\\n{{#each queue in controller}}\\n \\n {{t queue}}: {{queue.name}} \\n \\n \\n{{/each}}\\n \\n\");\n\nEmber.TEMPLATES['repos/list'] = Ember.Handlebars.compile(\"\\n {{view Ember.TextField valueBinding=\\\"controller.search\\\"}}\\n
\\n\\n{{view Travis.ReposListTabsView}}\\n\\n \\n\\n\\n {{#collection Travis.ReposListView contentBinding=\\\"controller\\\"}}\\n {{#with view.repo}}\\n
\\n
\\n {{#if slug}}\\n
{{slug}} \\n {{/if}}\\n
\\n {{#if lastBuildId}}\\n
{{lastBuildNumber}} \\n {{/if}}\\n\\n
\\n {{t repositories.duration}}: \\n {{formatDuration lastBuildDuration}} ,\\n {{t repositories.finished_at}}: \\n {{formatTime lastBuildFinishedAt}} \\n
\\n\\n
\\n\\n {{#if description}}\\n
\\n {{/if}}\\n {{/with}}\\n {{else}}\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['repos/list/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\\n\");\n\nEmber.TEMPLATES['repos/show'] = Ember.Handlebars.compile(\"\\n {{#if view.isEmpty}}\\n {{view Travis.ReposEmptyView}}\\n {{else}}\\n {{#if view.repo.isComplete}}\\n {{#with view.repo}}\\n
\\n\\n
{{description}}
\\n\\n
\\n\\n {{view Travis.RepoShowTabsView}}\\n {{view Travis.RepoShowToolsView}}\\n {{/with}}\\n\\n {{else}}\\n
Loading \\n {{/if}}\\n\\n
\\n {{outlet pane}}\\n
\\n {{/if}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['repos/show/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n {{#if view.repo.slug}}\\n \\n Events\\n \\n {{/if}}\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\");\n\nEmber.TEMPLATES['repos/show/tools'] = Ember.Handlebars.compile(\"\\n\\n\\n\");\n\nEmber.TEMPLATES['sponsors/decks'] = Ember.Handlebars.compile(\"{{t layouts.application.sponsers}} \\n\\n\\n\\n\\n \\n {{{t layouts.application.sponsors_link}}}\\n \\n
\\n\");\n\nEmber.TEMPLATES['sponsors/links'] = Ember.Handlebars.compile(\"\\n\\n\");\n\nEmber.TEMPLATES['stats/show'] = Ember.Handlebars.compile(\"Sorry \\nStatistics are disabled for now.
\\n We're looking into a solution. If you want to help, please ping us!
\\n\");\n\nEmber.TEMPLATES['workers/list'] = Ember.Handlebars.compile(\"{{#view Travis.WorkersView}}\\n \\n {{t workers}}\\n \\n \\n \\n {{#each group in controller.groups}}\\n {{#view Travis.WorkersListView}}\\n \\n \\n {{group.firstObject.host}}\\n \\n \\n {{#each worker in group}}\\n {{#view Travis.WorkersItemView workerBinding=\\\"worker\\\"}}\\n \\n
\\n {{#if worker.isWorking}}\\n {{#if worker.job_id}}\\n \\n {{view.display}}\\n \\n {{/if}}\\n {{else}}\\n {{view.display}}\\n {{/if}}\\n \\n {{/view}}\\n {{/each}}\\n \\n \\n {{/view}}\\n {{else}}\\n No workers\\n {{/each}}\\n \\n{{/view}}\\n\");\n\n})();\n//@ sourceURL=templates");minispade.register('config/locales', "(function() {window.I18n = window.I18n || {}\nwindow.I18n.translations = {\"ca\":{\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"pt-BR\":\"português brasileiro\",\"ru\":\"Русский\"}},\"en\":{\"errors\":{\"messages\":{\"not_found\":\"not found\",\"already_confirmed\":\"was already confirmed\",\"not_locked\":\"was not locked\"}},\"devise\":{\"failure\":{\"unauthenticated\":\"You need to sign in or sign up before continuing.\",\"unconfirmed\":\"You have to confirm your account before continuing.\",\"locked\":\"Your account is locked.\",\"invalid\":\"Invalid email or password.\",\"invalid_token\":\"Invalid authentication token.\",\"timeout\":\"Your session expired, please sign in again to continue.\",\"inactive\":\"Your account was not activated yet.\"},\"sessions\":{\"signed_in\":\"Signed in successfully.\",\"signed_out\":\"Signed out successfully.\"},\"passwords\":{\"send_instructions\":\"You will receive an email with instructions about how to reset your password in a few minutes.\",\"updated\":\"Your password was changed successfully. You are now signed in.\"},\"confirmations\":{\"send_instructions\":\"You will receive an email with instructions about how to confirm your account in a few minutes.\",\"confirmed\":\"Your account was successfully confirmed. You are now signed in.\"},\"registrations\":{\"signed_up\":\"You have signed up successfully. If enabled, a confirmation was sent to your e-mail.\",\"updated\":\"You updated your account successfully.\",\"destroyed\":\"Bye! Your account was successfully cancelled. We hope to see you again soon.\"},\"unlocks\":{\"send_instructions\":\"You will receive an email with instructions about how to unlock your account in a few minutes.\",\"unlocked\":\"Your account was successfully unlocked. You are now signed in.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Confirmation instructions\"},\"reset_password_instructions\":{\"subject\":\"Reset password instructions\"},\"unlock_instructions\":{\"subject\":\"Unlock Instructions\"}}},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hour\",\"other\":\"%{count} hours\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} second\",\"other\":\"%{count} seconds\"}}},\"workers\":\"Workers\",\"queue\":\"Queue\",\"no_job\":\"There are no jobs\",\"repositories\":{\"branch\":\"Branch\",\"image_url\":\"Image URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"tabs\":{\"current\":\"Current\",\"build_history\":\"Build History\",\"branches\":\"Branch Summary\",\"pull_requests\":\"Pull Requests\",\"build\":\"Build\",\"job\":\"Job\"}},\"build\":{\"job\":\"Job\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"show_more\":\"Show more\"},\"layouts\":{\"top\":{\"home\":\"Home\",\"blog\":\"Blog\",\"docs\":\"Docs\",\"stats\":\"Stats\",\"github_login\":\"Sign in with Github\",\"profile\":\"Profile\",\"sign_out\":\"Sign Out\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Recent\",\"search\":\"Search\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"See all of our amazing sponsors →\",\"my_repositories\":\"My Repositories\"},\"about\":{\"alpha\":\"This stuff is alpha.\",\"messages\":{\"alpha\":\"Please do not consider this a stable service. We're still far from that! More info here. \"},\"join\":\"Join us and help!\",\"mailing_list\":\"Mailing List\",\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Author\",\"build\":\"Build\",\"build_matrix\":\"Build Matrix\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Compare\",\"config\":\"Config\",\"duration\":\"Duration\",\"finished_at\":\"Finished at\",\"job\":\"Job\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Flick the switches below to turn on the Travis service hook for your projects, then push to GitHub.\",\"config\":\"how to configure custom build options\"},\"messages\":{\"notice\":\"To get started, please read our Getting Started guide .\\n It will only take a couple of minutes. \"},\"token\":\"Token\",\"your_repos\":\"Your Repositories\",\"update\":\"Update\",\"update_locale\":\"Update\",\"your_locale\":\"Your Locale\"}},\"statistics\":{\"index\":{\"count\":\"Count\",\"repo_growth\":\"Repository Growth\",\"total_projects\":\"Total Projects/Repositories\",\"build_count\":\"Build Count\",\"last_month\":\"last month\",\"total_builds\":\"Total Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"es\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"workers\":\"Procesos\",\"queue\":\"Cola\",\"no_job\":\"No hay trabajos\",\"repositories\":{\"branch\":\"Rama\",\"image_url\":\"Imagen URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"tabs\":{\"current\":\"Actual\",\"build_history\":\"Histórico\",\"branches\":\"Ramas\",\"build\":\"Builds\",\"job\":\"Trabajo\"}},\"build\":{\"job\":\"Trabajo\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"sponsored_by\":\"Patrocinado por\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"layouts\":{\"top\":{\"home\":\"Inicio\",\"blog\":\"Blog\",\"docs\":\"Documentación\",\"stats\":\"Estadísticas\",\"github_login\":\"Iniciar sesión con Github\",\"profile\":\"Perfil\",\"sign_out\":\"Desconectar\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Hazme un Fork en Github\",\"recent\":\"Reciente\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Ver todos nuestros patrocinadores →\",\"my_repositories\":\"Mis Repositorios\"},\"about\":{\"alpha\":\"Esto es alpha.\",\"messages\":{\"alpha\":\"Por favor no considereis esto un servicio estable. Estamos estamos aún lejos de ello! Más información aquí. \"},\"join\":\"Únetenos y ayudanos!\",\"mailing_list\":\"Lista de Correos\",\"repository\":\"Repositorio\",\"twitter\":\"Twitter\"}},\"profiles\":{\"show\":{\"email\":\"Correo electrónico\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Activa los interruptores para inicial el Travis service hook para tus proyectos, y haz un Push en GitHub. \\n Para probar varias versiones de ruby, mira\",\"config\":\"como configurar tus propias opciones para el Build\"},\"messages\":{\"notice\":\"Para comenzar, por favor lee nuestra Guía de Inicio .\\n Solo tomará unos pocos minutos. \"},\"token\":\"Token\",\"your_repos\":\"Tus repositorios\",\"update\":\"Actualizar\",\"update_locale\":\"Actualizar\",\"your_locale\":\"Tu Idioma\"}},\"statistics\":{\"index\":{\"count\":\"Número\",\"repo_growth\":\"Crecimiento de Repositorios\",\"total_projects\":\"Total de Proyectos/Repositorios\",\"build_count\":\"Número de Builds\",\"last_month\":\"mes anterior\",\"total_builds\":\"Total de Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"fr\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} heure\",\"other\":\"%{count} heures\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} secondes\"}}},\"workers\":\"Processus\",\"queue\":\"File\",\"no_job\":\"Pas de tâches\",\"repositories\":{\"branch\":\"Branche\",\"image_url\":\"Image\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"tabs\":{\"current\":\"Actuel\",\"build_history\":\"Historique des tâches\",\"branches\":\"Résumé des branches\",\"build\":\"Construction\",\"job\":\"Tâche\"}},\"build\":{\"job\":\"Tâche\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"builds\":{\"name\":\"Version\",\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"layouts\":{\"top\":{\"home\":\"Accueil\",\"blog\":\"Blog\",\"docs\":\"Documentation\",\"stats\":\"Statistiques\",\"github_login\":\"Connection Github\",\"profile\":\"Profil\",\"sign_out\":\"Déconnection\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Faites un Fork sur Github\",\"recent\":\"Récent\",\"search\":\"Chercher\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Voir tous nos extraordinaire sponsors →\",\"my_repositories\":\"Mes dépôts\"},\"about\":{\"alpha\":\"Ceci est en alpha.\",\"messages\":{\"alpha\":\"S'il vous plaît ne considérez pas ce service comme étant stable. Nous sommes loin de ça! Plus d'infos ici. \"},\"join\":\"Joignez-vous à nous et aidez-nous!\",\"mailing_list\":\"Liste de distribution\",\"repository\":\"Dépôt\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Version\",\"build_matrix\":\"Matrice des versions\",\"commit\":\"Commit\",\"committer\":\"Committeur\",\"compare\":\"Comparer\",\"config\":\"Config\",\"duration\":\"Durée\",\"finished_at\":\"Terminé à\",\"job\":\"Tâche\",\"log\":\"Journal\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"message\":{\"your_repos\":\"Utilisez les boutons ci-dessous pour activer Travis sur vos projets puis déployez sur GitHub. \\nPour tester sur plus de versions de ruby, voir\",\"config\":\"comment configurer des options de version personnalisées\"},\"messages\":{\"notice\":\"Pour commencer, veuillez lire notre guide de démarrage .\\n Cela ne vous prendra que quelques minutes. \"},\"token\":\"Jeton\",\"your_repos\":\"Vos dépôts\",\"email\":\"Courriel\",\"update\":\"Modifier\",\"update_locale\":\"Modifier\",\"your_locale\":\"Votre langue\"}},\"statistics\":{\"index\":{\"count\":\"Décompte\",\"repo_growth\":\"Croissance de dépôt\",\"total_projects\":\"Total des projets/dépôts\",\"build_count\":\"Décompte des versions\",\"last_month\":\"mois dernier\",\"total_builds\":\"Total des versions\"}},\"admin\":{\"actions\":{\"create\":\"créer\",\"created\":\"créé\",\"delete\":\"supprimer\",\"deleted\":\"supprimé\",\"update\":\"mise à jour\",\"updated\":\"mis à jour\"},\"credentials\":{\"log_out\":\"Déconnection\"},\"delete\":{\"confirmation\":\"Oui, je suis sure\",\"flash_confirmation\":\"%{name} a été détruit avec succès\"},\"flash\":{\"error\":\"%{name} n'a pas pu être %{action}\",\"noaction\":\"Aucune action n'a été entreprise\",\"successful\":\"%{name} a réussi à %{action}\"},\"history\":{\"name\":\"Historique\",\"no_activity\":\"Aucune activité\",\"page_name\":\"Historique pour %{name}\"},\"list\":{\"add_new\":\"Ajouter un nouveau\",\"delete_action\":\"Supprimer\",\"delete_selected\":\"Supprimer la sélection\",\"edit_action\":\"Modifier\",\"search\":\"Rechercher\",\"select\":\"Sélectionner le %{name} à modifier\",\"select_action\":\"Sélectionner\",\"show_all\":\"Montrer tout\"},\"new\":{\"basic_info\":\"Information de base\",\"cancel\":\"Annuler\",\"chosen\":\"%{name} choisi\",\"chose_all\":\"Choisir tout\",\"clear_all\":\"Déselectionner tout\",\"many_chars\":\"caractères ou moins\",\"one_char\":\"caractère.\",\"optional\":\"Optionnel\",\"required\":\"Requis\",\"save\":\"Sauvegarder\",\"save_and_add_another\":\"Sauvegarder et en ajouter un autre\",\"save_and_edit\":\"Sauvegarder et modifier\",\"select_choice\":\"Faites vos choix et cliquez\"},\"dashboard\":{\"add_new\":\"Ajouter un nouveau\",\"last_used\":\"Dernière utilisation\",\"model_name\":\"Nom du modèle\",\"modify\":\"Modification\",\"name\":\"Tableau de bord\",\"pagename\":\"Administration du site\",\"records\":\"Enregistrements\",\"show\":\"Voir\",\"ago\":\"plus tôt\"}},\"home\":{\"name\":\"accueil\"},\"repository\":{\"duration\":\"Durée\"},\"devise\":{\"confirmations\":{\"confirmed\":\"Votre compte a été crée avec succès. Vous être maintenant connecté.\",\"send_instructions\":\"Vous allez recevoir un courriel avec les instructions de confirmation de votre compte dans quelques minutes.\"},\"failure\":{\"inactive\":\"Votre compte n'a pas encore été activé.\",\"invalid\":\"Adresse courriel ou mot de passe invalide.\",\"invalid_token\":\"Jeton d'authentification invalide.\",\"locked\":\"Votre compte est bloqué.\",\"timeout\":\"Votre session est expirée, veuillez vous reconnecter pour continuer.\",\"unauthenticated\":\"Vous devez vous connecter ou vous enregistrer afin de continuer\",\"unconfirmed\":\"Vous devez confirmer votre compte avant de continuer.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instructions de confirmations\"},\"reset_password_instructions\":{\"subject\":\"Instruction de remise à zéro du mot de passe\"},\"unlock_instructions\":{\"subject\":\"Instruction de débloquage\"}},\"passwords\":{\"send_instructions\":\"Vous recevrez un courriel avec les instructions de remise à zéro du mot de passe dans quelques minutes.\",\"updated\":\"Votre mot de passe a été changé avec succès. Vous êtes maintenant connecté.\"},\"registrations\":{\"destroyed\":\"Au revoir! Votre compte a été annulé avec succès. Nous espérons vous revoir bientôt.\",\"signed_up\":\"Vous êtes enregistré avec succès. Si activé, une confirmation vous a été envoyé par courriel.\",\"updated\":\"Votre compte a été mis a jour avec succès\"},\"sessions\":{\"signed_in\":\"Connecté avec succès\",\"signed_out\":\"Déconnecté avec succès\"},\"unlocks\":{\"send_instructions\":\"Vous recevrez un courriel contenant les instructions pour débloquer votre compte dans quelques minutes.\",\"unlocked\":\"Votre compte a été débloqué avec succès.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"étais déja confirmé\",\"not_found\":\"n'a pas été trouvé\",\"not_locked\":\"n'étais pas bloqué\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"ja\":{\"workers\":\"ワーカー\",\"queue\":\"キュー\",\"no_job\":\"ジョブはありません\",\"repositories\":{\"branch\":\"ブランチ\",\"image_url\":\"画像URL\",\"markdown\":\".md\",\"textile\":\".textile\",\"rdoc\":\".rdoc\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"tabs\":{\"current\":\"最新\",\"build_history\":\"ビルド履歴\",\"branches\":\"ブランチまとめ\",\"build\":\"ビルド\",\"job\":\"ジョブ\"}},\"build\":{\"job\":\"ジョブ\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"ビルドマトリクス\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"builds\":{\"name\":\"ビルド\",\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"失敗許容範囲外\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"layouts\":{\"about\":{\"alpha\":\"まだアルファですよ!\",\"join\":\"参加してみよう!\",\"mailing_list\":\"メールリスト\",\"messages\":{\"alpha\":\"Travis-ciは安定したサービスまで後一歩!詳しくはこちら \"},\"repository\":\"リポジトリ\",\"twitter\":\"ツイッター\"},\"application\":{\"fork_me\":\"Githubでフォークしよう\",\"my_repositories\":\"マイリポジトリ\",\"recent\":\"最近\",\"search\":\"検索\",\"sponsers\":\"スポンサー\",\"sponsors_link\":\"スポンサーをもっと見る →\"},\"top\":{\"blog\":\"ブログ\",\"docs\":\"Travisとは?\",\"github_login\":\"Githubでログイン\",\"home\":\"ホーム\",\"profile\":\"プロフィール\",\"sign_out\":\"ログアウト\",\"stats\":\"統計\",\"admin\":\"管理\"},\"mobile\":{\"author\":\"制作者\",\"build\":\"ビルド\",\"build_matrix\":\"ビルドマトリクス\",\"commit\":\"コミット\",\"committer\":\"コミット者\",\"compare\":\"比較\",\"config\":\"設定\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"job\":\"ジョブ\",\"log\":\"ログ\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"email\":\"メール\",\"message\":{\"config\":\"詳細設定\",\"your_repos\":\"以下のスイッチを設定し、Travis-ciを有効にします。Githubへプッシュしたらビルドは自動的に開始します。複数バーションや細かい設定はこちらへ:\"},\"messages\":{\"notice\":\"まずはTravisのはじめ方 を参照してください。\"},\"token\":\"トークン\",\"your_repos\":\"リポジトリ\",\"update\":\"更新\",\"update_locale\":\"更新\",\"your_locale\":\"言語設定\"}},\"statistics\":{\"index\":{\"build_count\":\"ビルド数\",\"count\":\"数\",\"last_month\":\"先月\",\"repo_growth\":\"リポジトリ\",\"total_builds\":\"合計ビルド数\",\"total_projects\":\"合計リポジトリ\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nb\":{\"admin\":{\"actions\":{\"create\":\"opprett\",\"created\":\"opprettet\",\"delete\":\"slett\",\"deleted\":\"slettet\",\"update\":\"oppdater\",\"updated\":\"oppdatert\"},\"credentials\":{\"log_out\":\"Logg ut\"},\"dashboard\":{\"add_new\":\"Legg til ny\",\"ago\":\"siden\",\"last_used\":\"Sist brukt\",\"model_name\":\"Modell\",\"modify\":\"Rediger\",\"name\":\"Dashbord\",\"pagename\":\"Nettstedsadministrasjon\",\"records\":\"Oppføringer\",\"show\":\"Vis\"},\"delete\":{\"confirmation\":\"Ja, jeg er sikker\",\"flash_confirmation\":\"%{name} ble slettet\"},\"flash\":{\"error\":\"%{name} kunne ikke bli %{action}\",\"noaction\":\"Ingen handlinger ble utført\",\"successful\":\"%{name} ble %{action}\"},\"history\":{\"name\":\"Logg\",\"no_activity\":\"Ingen aktivitet\",\"page_name\":\"Logg for %{name}\"},\"list\":{\"add_new\":\"Legg til ny\",\"delete_action\":\"Slett\",\"delete_selected\":\"Slett valgte\",\"edit_action\":\"Rediger\",\"search\":\"Søk\",\"select\":\"Velg %{name} for å redigere\",\"select_action\":\"Velg\",\"show_all\":\"Vis alle \"},\"new\":{\"basic_info\":\"Basisinformasjon\",\"cancel\":\"Avbryt\",\"chosen\":\"Valgt %{name}\",\"chose_all\":\"Velg alle\",\"clear_all\":\"Fjern alle\",\"many_chars\":\"eller færre tegn.\",\"one_char\":\"tegn.\",\"optional\":\"Valgfri\",\"required\":\"Påkrevd\",\"save\":\"Lagre\",\"save_and_add_another\":\"Lagre og legg til ny\",\"save_and_edit\":\"Lagre og rediger\",\"select_choice\":\"Kryss av for dine valg og klikk\"}},\"build\":{\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\"},\"builds\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testen ble kjørt på en maskin sponset av\"},\"name\":\"Jobb\",\"started_at\":\"Startet\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} time\",\"other\":\"%{count} timer\"},\"minutes_exact\":{\"one\":\"%{count} minutt\",\"other\":\"%{count} minutter\"},\"seconds_exact\":{\"one\":\"%{count} sekund\",\"other\":\"%{count} sekunder\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Din konto er aktivert og du er nå innlogget.\",\"send_instructions\":\"Om noen få minutter så vil du få en e-post med informasjon om hvordan du bekrefter kontoen din.\"},\"failure\":{\"inactive\":\"Kontoen din har ikke blitt aktivert enda.\",\"invalid\":\"Ugyldig e-post eller passord.\",\"invalid_token\":\"Ugyldig autentiseringskode.\",\"locked\":\"Kontoen din er låst.\",\"timeout\":\"Du ble logget ut siden på grunn av mangel på aktivitet, vennligst logg inn på nytt.\",\"unauthenticated\":\"Du må logge inn eller registrere deg for å fortsette.\",\"unconfirmed\":\"Du må bekrefte kontoen din før du kan fortsette.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bekreftelsesinformasjon\"},\"reset_password_instructions\":{\"subject\":\"Instruksjoner for å få nytt passord\"},\"unlock_instructions\":{\"subject\":\"Opplåsningsinstruksjoner\"}},\"passwords\":{\"send_instructions\":\"Om noen få minutter så vil du få en epost med informasjon om hvordan du kan få et nytt passord.\",\"updated\":\"Passordet ditt ble endret, og du er logget inn.\"},\"registrations\":{\"destroyed\":\"Adjø! Kontoen din ble kansellert. Vi håper vi ser deg igjen snart.\",\"signed_up\":\"Du er nå registrert.\",\"updated\":\"Kontoen din ble oppdatert.\"},\"sessions\":{\"signed_in\":\"Du er nå logget inn.\",\"signed_out\":\"Du er nå logget ut.\"},\"unlocks\":{\"send_instructions\":\"Om noen få minutter så kommer du til å få en e-post med informasjon om hvordan du kan låse opp kontoen din.\",\"unlocked\":\"Kontoen din ble låst opp, og du er nå logget inn igjen.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"har allerede blitt bekreftet\",\"not_found\":\"ikke funnnet\",\"not_locked\":\"var ikke låst\"}},\"home\":{\"name\":\"hjem\"},\"jobs\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testserien ble kjørt på en maskin sponset av\"},\"started_at\":\"Startet\"},\"layouts\":{\"about\":{\"alpha\":\"Dette er alfa-greier.\",\"join\":\"Bli med og hjelp oss!\",\"mailing_list\":\"E-postliste\",\"messages\":{\"alpha\":\"Dette er ikke en stabil tjeneste. Vi har fremdeles et stykke igjen! Mer informasjon finner du her .\"},\"repository\":\"Kodelager\",\"twitter\":\"Twitter.\"},\"application\":{\"fork_me\":\"Se koden på Github\",\"my_repositories\":\"Mine kodelagre\",\"recent\":\"Nylig\",\"search\":\"Søk\",\"sponsers\":\"Sponsorer\",\"sponsors_link\":\"Se alle de flotte sponsorene våre →\"},\"mobile\":{\"author\":\"Forfatter\",\"build\":\"Jobb\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\",\"log\":\"Logg\"},\"top\":{\"admin\":\"Administrator\",\"blog\":\"Blogg\",\"docs\":\"Dokumentasjon\",\"github_login\":\"Logg inn med Github\",\"home\":\"Hjem\",\"profile\":\"Profil\",\"sign_out\":\"Logg ut\",\"stats\":\"Statistikk\"}},\"no_job\":\"Ingen jobber finnnes\",\"profiles\":{\"show\":{\"email\":\"E-post\",\"github\":\"Github\",\"message\":{\"config\":\"hvordan sette opp egne jobbinnstillinger\",\"your_repos\":\"Slå\\u0010 på Travis for prosjektene dine ved å dra i bryterne under, og send koden til Github. \\nFor å teste mot flere ruby-versjoner, se dokumentasjonen for\"},\"messages\":{\"notice\":\"For å komme i gang, vennligst les kom-i-gang-veivisereren vår. Det tar bare et par minutter. \"},\"token\":\"Kode\",\"update\":\"Oppdater\",\"update_locale\":\"Oppdater\",\"your_locale\":\"Ditt språk\",\"your_repos\":\"Dine kodelagre\"}},\"queue\":\"Kø\",\"repositories\":{\"branch\":\"Gren\",\"commit\":\"Innsender\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"image_url\":\"Bilde-URL\",\"markdown\":\"Markdown\",\"message\":\"Beskrivelse\",\"rdoc\":\"RDOC\",\"started_at\":\"Startet\",\"tabs\":{\"branches\":\"Grensammendrag\",\"build\":\"Jobb\",\"build_history\":\"Jobblogg\",\"current\":\"Siste\",\"job\":\"Jobb\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Varighet\"},\"statistics\":{\"index\":{\"build_count\":\"Antall jobber\",\"count\":\"Antall\",\"last_month\":\"siste måned\",\"repo_growth\":\"Vekst i kodelager\",\"total_builds\":\"Totale jobber\",\"total_projects\":\"Antall prosjekter/kodelagre\"}},\"workers\":\"Arbeidere\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nl\":{\"admin\":{\"actions\":{\"create\":\"aanmaken\",\"created\":\"aangemaakt\",\"delete\":\"verwijderen\",\"deleted\":\"verwijderd\",\"update\":\"bijwerken\",\"updated\":\"bijgewerkt\"},\"credentials\":{\"log_out\":\"Afmelden\"},\"dashboard\":{\"add_new\":\"Nieuwe toevoegen\",\"ago\":\"geleden\",\"last_used\":\"Laatst gebruikt\",\"model_name\":\"Model naam\",\"modify\":\"Wijzigen\",\"pagename\":\"Site administratie\",\"show\":\"Laten zien\",\"records\":\"Gegevens\"},\"delete\":{\"confirmation\":\"Ja, ik ben zeker\",\"flash_confirmation\":\"%{name} is vernietigd\"},\"flash\":{\"error\":\"%{name} kon niet worden %{action}\",\"noaction\":\"Er zijn geen acties genomen\",\"successful\":\"%{name} is %{action}\"},\"history\":{\"name\":\"Geschiedenis\",\"no_activity\":\"Geen activiteit\",\"page_name\":\"Geschiedenis van %{name}\"},\"list\":{\"add_new\":\"Nieuwe toevoegen\",\"delete_action\":\"Verwijderen\",\"delete_selected\":\"Verwijder geselecteerden\",\"edit_action\":\"Bewerken\",\"search\":\"Zoeken\",\"select\":\"Selecteer %{name} om te bewerken\",\"select_action\":\"Selecteer\",\"show_all\":\"Laat allen zien\"},\"new\":{\"basic_info\":\"Basisinfo\",\"cancel\":\"Annuleren\",\"chosen\":\"%{name} gekozen\",\"chose_all\":\"Kies allen\",\"clear_all\":\"Deselecteer allen\",\"many_chars\":\"tekens of minder.\",\"one_char\":\"teken.\",\"optional\":\"Optioneel\",\"required\":\"Vereist\",\"save\":\"Opslaan\",\"save_and_add_another\":\"Opslaan en een nieuwe toevoegen\",\"save_and_edit\":\"Opslaan en bewerken\",\"select_choice\":\"Selecteer uw keuzes en klik\"}},\"build\":{\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"job\":\"Taak\"},\"builds\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw Matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze tests zijn gedraaid op een machine gesponsord door\"},\"name\":\"Bouw\",\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} uur\",\"other\":\"%{count} uren\"},\"minutes_exact\":{\"one\":\"%{count} minuut\",\"other\":\"%{count} minuten\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} seconden\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Uw account is bevestigd. U wordt nu ingelogd.\",\"send_instructions\":\"Binnen enkele minuten zal u een email ontvangen met instructies om uw account te bevestigen.\"},\"failure\":{\"inactive\":\"Uw account is nog niet geactiveerd.\",\"invalid\":\"Ongeldig email adres of wachtwoord.\",\"invalid_token\":\"Ongeldig authenticatie token.\",\"locked\":\"Uw account is vergrendeld.\",\"timeout\":\"Uw sessie is verlopen, gelieve opnieuw in te loggen om verder te gaan.\",\"unauthenticated\":\"U moet inloggen of u registeren voordat u verder gaat.\",\"unconfirmed\":\"U moet uw account bevestigen voordat u verder gaat.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bevestigings-instructies\"},\"reset_password_instructions\":{\"subject\":\"Wachtwoord herstel instructies\"},\"unlock_instructions\":{\"subject\":\"Ontgrendel-instructies\"}},\"passwords\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw wachtwoord opnieuw in te stellen.\",\"updated\":\"Uw wachtwoord is veranderd. U wordt nu ingelogd.\"},\"registrations\":{\"destroyed\":\"Dag! Uw account is geannuleerd. We hopen u vlug terug te zien.\",\"signed_up\":\"Uw registratie is voltooid. Als het ingeschakeld is wordt een bevestiging naar uw email adres verzonden.\",\"updated\":\"Het bijwerken van uw account is gelukt.\"},\"sessions\":{\"signed_in\":\"Inloggen gelukt.\",\"signed_out\":\"Uitloggen gelukt.\"},\"unlocks\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw account te ontgrendelen.\",\"unlocked\":\"Uw account is ontgrendeld. U wordt nu ingelogd.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"was al bevestigd\",\"not_found\":\"niet gevonden\",\"not_locked\":\"was niet vergrendeld\"}},\"jobs\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze testen zijn uitgevoerd op een machine gesponsord door\"},\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"layouts\":{\"about\":{\"alpha\":\"Dit is in alfa-stadium.\",\"join\":\"Doe met ons mee en help!\",\"mailing_list\":\"Mailing lijst\",\"messages\":{\"alpha\":\"Gelieve deze service niet te beschouwen als stabiel. Daar zijn we nog lang niet! Meer info hier. \"},\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Maak een fork op Github\",\"my_repositories\":\"Mijn repositories\",\"recent\":\"Recent\",\"search\":\"Zoeken\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Bekijk al onze geweldige sponsors →\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Bouw\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid op\",\"job\":\"Taak\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"log\":\"Logboek\"},\"top\":{\"admin\":\"Administratie\",\"blog\":\"Blog\",\"docs\":\"Documentatie\",\"github_login\":\"Inloggen met Github\",\"home\":\"Home\",\"profile\":\"Profiel\",\"sign_out\":\"Uitloggen\",\"stats\":\"Statistieken\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Er zijn geen taken\",\"profiles\":{\"show\":{\"email\":\"Email adres\",\"github\":\"Github\",\"message\":{\"config\":\"hoe eigen bouw-opties in te stellen\",\"your_repos\":\"Zet de schakelaars hieronder aan om de Travis hook voor uw projecten te activeren en push daarna naar Github \\nOm te testen tegen meerdere rubies, zie\"},\"messages\":{\"notice\":\"Om te beginnen kunt u onze startersgids lezen.\\\\n Het zal maar enkele minuten van uw tijd vergen. \"},\"update\":\"Bijwerken\",\"update_locale\":\"Bijwerken\",\"your_locale\":\"Uw taal\",\"your_repos\":\"Uw repositories\",\"token\":\"Token\"}},\"queue\":\"Wachtrij\",\"repositories\":{\"branch\":\"Tak\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"image_url\":\"Afbeeldings URL\",\"message\":\"Bericht\",\"started_at\":\"Gestart\",\"tabs\":{\"branches\":\"Tak samenvatting\",\"build\":\"Bouw\",\"build_history\":\"Bouw geschiedenis\",\"current\":\"Huidig\",\"job\":\"Taak\"},\"commit\":\"Commit\",\"markdown\":\"Markdown\",\"rdoc\":\"RDOC\",\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duur\"},\"statistics\":{\"index\":{\"build_count\":\"Bouw aantal\",\"count\":\"Aantal\",\"last_month\":\"voorbije maand\",\"repo_growth\":\"Repository groei\",\"total_builds\":\"Bouw totaal\",\"total_projects\":\"Projecten/Repository totaal\"}},\"workers\":\"Machines\",\"home\":{\"name\":\"Hoofdpagina\"}},\"pl\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} godzina\",\"other\":\"%{count} godziny\"},\"minutes_exact\":{\"one\":\"%{count} minuta\",\"other\":\"%{count} minuty\"},\"seconds_exact\":{\"one\":\"%{count} sekunda\",\"other\":\"%{count} sekundy\"}}},\"workers\":\"Workers\",\"queue\":\"Kolejka\",\"no_job\":\"Brak zadań\",\"repositories\":{\"branch\":\"Gałąź\",\"image_url\":\"URL obrazka\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"tabs\":{\"current\":\"Aktualny\",\"build_history\":\"Historia Buildów\",\"branches\":\"Wszystkie Gałęzie\",\"build\":\"Build\",\"job\":\"Zadanie\"}},\"build\":{\"job\":\"Zadanie\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Committer\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Komitujący\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"layouts\":{\"top\":{\"home\":\"Start\",\"blog\":\"Blog\",\"docs\":\"Dokumentacja\",\"stats\":\"Statystki\",\"github_login\":\"Zaloguj się przy pomocy Githuba\",\"profile\":\"Profil\",\"sign_out\":\"Wyloguj się\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Ostatnie\",\"search\":\"Wyniki\",\"sponsers\":\"Sponsorzy\",\"sponsors_link\":\"Zobacz naszych wszystkich wspaniałych sponsorów →\",\"my_repositories\":\"Moje repozytoria\"},\"about\":{\"alpha\":\"To wciąż jest wersja alpha.\",\"messages\":{\"alpha\":\"Proszę nie traktuj tego jako stabilnej usługi. Wciąż nam wiele do tego brakuje! Więcej informacji znajdziesz tutaj. \"},\"join\":\"Pomóż i dołącz do nas!\",\"mailing_list\":\"Lista mailingowa\",\"repository\":\"Repozytorium\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Macierz Buildów\",\"commit\":\"Commit\",\"committer\":\"Komitujący\",\"compare\":\"Porównianie\",\"config\":\"Konfiguracja\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"job\":\"Zadanie\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Przesuń suwak poniżej, aby włączyć Travisa, dla twoich projektów, a następnie umieść swój kod na GitHubie. \\n Aby testować swój kod przy użyciu wielu wersji Rubiego, zobacz\",\"config\":\"jak skonfigurować niestandardowe opcje builda\"},\"messages\":{\"notice\":\"Aby zacząć, przeczytaj nasz Przewodnik .\\n Zajmie ci to tylko kilka minut. \"},\"token\":\"Token\",\"your_repos\":\"Twoje repozytoria\"}},\"statistics\":{\"index\":{\"count\":\"Ilość\",\"repo_growth\":\"Przyrost repozytoriów\",\"total_projects\":\"Łącznie projektów/repozytoriów\",\"build_count\":\"Liczba buildów\",\"last_month\":\"ostatni miesiąc\",\"total_builds\":\"Łącznie Buildów\"}},\"date\":{\"abbr_day_names\":[\"nie\",\"pon\",\"wto\",\"śro\",\"czw\",\"pią\",\"sob\"],\"abbr_month_names\":[\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\"],\"day_names\":[\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\"formats\":{\"default\":\"%d-%m-%Y\",\"long\":\"%B %d, %Y\",\"short\":\"%d %b\"},\"month_names\":[\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\"],\"order\":[\"day\",\"month\",\"year\"]},\"errors\":{\"format\":\"%{attribute} %{message}\",\"messages\":{\"accepted\":\"musi zostać zaakceptowane\",\"blank\":\"nie może być puste\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"pt-BR\":{\"admin\":{\"actions\":{\"create\":\"criar\",\"created\":\"criado\",\"delete\":\"deletar\",\"deleted\":\"deletado\",\"update\":\"atualizar\",\"updated\":\"atualizado\"},\"credentials\":{\"log_out\":\"Deslogar\"},\"dashboard\":{\"add_new\":\"Adicionar novo\",\"ago\":\"atrás\",\"last_used\":\"Última utilização\",\"model_name\":\"Nome do modelo\",\"modify\":\"Modificar\",\"name\":\"Dashboard\",\"pagename\":\"Administração do site\",\"records\":\"Registros\",\"show\":\"Mostrar\"},\"delete\":{\"confirmation\":\"Sim, tenho certeza\",\"flash_confirmation\":\"%{name} foi destruído com sucesso\"},\"flash\":{\"error\":\"%{name} falhou ao %{action}\",\"noaction\":\"Nenhuma ação foi tomada\",\"successful\":\"%{name} foi %{action} com sucesso\"},\"history\":{\"name\":\"Histórico\",\"no_activity\":\"Nenhuma Atividade\",\"page_name\":\"Histórico para %{name}\"},\"list\":{\"add_new\":\"Adicionar novo\",\"delete_action\":\"Deletar\",\"delete_selected\":\"Deletar selecionados\",\"edit_action\":\"Editar\",\"search\":\"Buscar\",\"select\":\"Selecionar %{name} para editar\",\"select_action\":\"Selecionar\",\"show_all\":\"Mostrar todos\"},\"new\":{\"basic_info\":\"Informações básicas\",\"cancel\":\"Cancelar\",\"chosen\":\"Escolhido %{name}\",\"chose_all\":\"Escolher todos\",\"clear_all\":\"Limpar todos\",\"many_chars\":\"caracteres ou menos.\",\"one_char\":\"caractere.\",\"optional\":\"Opcional\",\"required\":\"Requerido\",\"save\":\"Salvar\",\"save_and_add_another\":\"Salvar e adicionar outro\",\"save_and_edit\":\"Salvar e alterar\",\"select_choice\":\"Selecione e clique\"}},\"build\":{\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\"},\"builds\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"name\":\"Build\",\"started_at\":\"Iniciou em\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Sua conta foi confirmada com sucesso. Você agora está logado.\",\"send_instructions\":\"Você receberá um email com instruções de como confirmar sua conta em alguns minutos.\"},\"failure\":{\"inactive\":\"Sua conta ainda não foi ativada.\",\"invalid\":\"Email ou senha inválidos.\",\"invalid_token\":\"Token de autenticação inválido.\",\"locked\":\"Sua conta está trancada.\",\"timeout\":\"Sua sessão expirou, por favor faça seu login novamente.\",\"unauthenticated\":\"Você precisa fazer o login ou cadastrar-se antes de continuar.\",\"unconfirmed\":\"Você precisa confirmar sua conta antes de continuar.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instruções de confirmação\"},\"reset_password_instructions\":{\"subject\":\"Instruções de atualização de senha\"},\"unlock_instructions\":{\"subject\":\"Instruções de destrancamento\"}},\"passwords\":{\"send_instructions\":\"Você receberá um email com instruções de como atualizar sua senha em alguns minutos.\",\"updated\":\"Sua senha foi alterada com sucesso. Você agora está logado.\"},\"registrations\":{\"destroyed\":\"Tchau! Sua conta foi cancelada com sucesso. Esperamos vê-lo novamente em breve!\",\"signed_up\":\"Você se cadastrou com sucesso. Se ativada, uma confirmação foi enviada para seu email.\",\"updated\":\"Você atualizou sua conta com sucesso.\"},\"sessions\":{\"signed_in\":\"Logado com sucesso.\",\"signed_out\":\"Deslogado com sucesso.\"},\"unlocks\":{\"send_instructions\":\"Você receberá um email com instruções de como destrancar sua conta em alguns minutos.\",\"unlocked\":\"Sua conta foi destrancada com sucesso. Você agora está logado.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"já foi confirmado\",\"not_found\":\"não encontrado\",\"not_locked\":\"não estava trancado\"}},\"home\":{\"name\":\"home\"},\"jobs\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"started_at\":\"Iniciou em\"},\"layouts\":{\"about\":{\"alpha\":\"Isto é um alpha.\",\"join\":\"Junte-se à nós e ajude!\",\"mailing_list\":\"Lista de email\",\"messages\":{\"alpha\":\"Por favor, não considere isto um serviço estável. Estamos muito longe disso! Mais informações aqui. \"},\"repository\":\"Repositório\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Faça fork no Github\",\"my_repositories\":\"Meus Repositórios\",\"recent\":\"Recentes\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Conheça todos os nossos patrocinadores →\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\",\"log\":\"Log\"},\"top\":{\"admin\":\"Admin\",\"blog\":\"Blog\",\"docs\":\"Documentação\",\"github_login\":\"Logue com o Github\",\"home\":\"Home\",\"profile\":\"Perfil\",\"sign_out\":\"Sair\",\"stats\":\"Estatísticas\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Não há trabalhos\",\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"config\":\"como configurar opções de build\",\"your_repos\":\"Use os botões abaixo para ligar ou desligar o hook de serviço do Travis para seus projetos, e então, faça um push para o Github. Para testar com múltiplas versões do Ruby, leia\"},\"messages\":{\"notice\":\"Para começar, leia nosso Guia de início . Só leva alguns minutinhos. \"},\"token\":\"Token\",\"update\":\"Atualizar\",\"update_locale\":\"Atualizar\",\"your_locale\":\"Sua língua\",\"your_repos\":\"Seus Repositórios\"}},\"queue\":\"Fila\",\"repositories\":{\"branch\":\"Branch\",\"commit\":\"Commit\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"image_url\":\"URL da imagem\",\"markdown\":\"Markdown\",\"message\":\"Mensagem\",\"rdoc\":\"RDOC\",\"started_at\":\"Iniciou em\",\"tabs\":{\"branches\":\"Sumário do Branch\",\"build\":\"Build\",\"build_history\":\"Histórico de Build\",\"current\":\"Atual\",\"job\":\"Trabalho\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duração\"},\"statistics\":{\"index\":{\"build_count\":\"Número de Builds\",\"count\":\"Número\",\"last_month\":\"último mês\",\"repo_growth\":\"Crescimento de Repositório\",\"total_builds\":\"Total de Builds\",\"total_projects\":\"Total de Projetos/Repositórios\"}},\"workers\":\"Processos\"},\"ru\":{\"admin\":{\"actions\":{\"create\":\"создать\",\"created\":\"создано\",\"delete\":\"удалить\",\"deleted\":\"удалено\",\"update\":\"обновить\",\"updated\":\"обновлено\"},\"credentials\":{\"log_out\":\"Выход\"},\"dashboard\":{\"add_new\":\"Добавить\",\"ago\":\"назад\",\"last_used\":\"Использовалось в последний раз\",\"model_name\":\"Имя модели\",\"modify\":\"Изменить\",\"name\":\"Панель управления\",\"pagename\":\"Управление сайтом\",\"records\":\"Записи\",\"show\":\"Показать\"},\"delete\":{\"confirmation\":\"Да, я уверен\",\"flash_confirmation\":\"%{name} успешно удалено\"},\"history\":{\"name\":\"История\",\"no_activity\":\"Нет активности\",\"page_name\":\"История %{name}\"},\"list\":{\"add_new\":\"Добавить\",\"delete_action\":\"Удалить\",\"delete_selected\":\"Удалить выбранные\",\"edit_action\":\"Редактировать\",\"search\":\"Поиск\",\"select\":\"Для редактирования выберите %{name}\",\"select_action\":\"Выбрать\",\"show_all\":\"Показать все\"},\"new\":{\"basic_info\":\"Основная информация\",\"cancel\":\"Отмена\",\"chosen\":\"Выбрано %{name}\",\"chose_all\":\"Выбрать все\",\"clear_all\":\"Очистить все\",\"one_char\":\"символ.\",\"optional\":\"Необязательно\",\"required\":\"Обязательно\",\"save\":\"Сохранить\",\"save_and_add_another\":\"Сохранить и добавить другое\",\"save_and_edit\":\"Сохранить и продолжить редактирование\",\"select_choice\":\"Выберите и кликните\",\"many_chars\":\"символов или меньше.\"},\"flash\":{\"error\":\"%{name} не удалось %{action}\",\"noaction\":\"Никаких действий не произведено\",\"successful\":\"%{name} было успешно %{action}\"}},\"build\":{\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\"},\"builds\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Дифф\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине, спонсируемой\"},\"name\":\"Билд\",\"started_at\":\"Начало\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} час\",\"few\":\"%{count} часа\",\"many\":\"%{count} часов\",\"other\":\"%{count} часа\"},\"minutes_exact\":{\"one\":\"%{count} минута\",\"few\":\"%{count} минуты\",\"many\":\"%{count} минут\",\"other\":\"%{count} минуты\"},\"seconds_exact\":{\"one\":\"%{count} секунда\",\"few\":\"%{count} секунды\",\"many\":\"%{count} секунд\",\"other\":\"%{count} секунды\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Ваш аккаунт успешно подтвержден. Приветствуем!\",\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для прохождения процедуры подтверждения аккаунта.\"},\"failure\":{\"inactive\":\"Ваш аккаунт еще не активирован.\",\"invalid\":\"Ошибка в адресе почты или пароле.\",\"invalid_token\":\"Неправильный токен аутентификации.\",\"locked\":\"Ваш аккаунт заблокирован.\",\"timeout\":\"Сессия окончена. Для продолжения работы войдите снова.\",\"unauthenticated\":\"Вам нужно войти или зарегистрироваться.\",\"unconfirmed\":\"Вы должны сначала подтвердить свой аккаунт.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Инструкции для подтверждению аккаунта\"},\"reset_password_instructions\":{\"subject\":\"Инструкции для сброса пароля\"},\"unlock_instructions\":{\"subject\":\"Инструкции для разблокирования аккаунта\"}},\"passwords\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для сброса пароля.\",\"updated\":\"Ваш пароль успешно изменен. Приветствуем!\"},\"registrations\":{\"destroyed\":\"Ваш аккаунт был успешно удален. Живите долго и процветайте!\",\"signed_up\":\"Вы успешно прошли регистрацию. Инструкции для подтверждения аккаунта отправлены на ваш электронный адрес.\",\"updated\":\"Аккаунт успешно обновлен.\"},\"sessions\":{\"signed_in\":\"Приветствуем!\",\"signed_out\":\"Удачи!\"},\"unlocks\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциям для разблокировния аккаунта.\",\"unlocked\":\"Ваш аккаунт успешно разблокирован. Приветствуем!\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"уже подтвержден\",\"not_found\":\"не найден\",\"not_locked\":\"не заблокирован\"}},\"home\":{\"name\":\"Главная\"},\"jobs\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине спонсируемой\"},\"started_at\":\"Начало\"},\"layouts\":{\"about\":{\"alpha\":\"Это альфа-версия\",\"join\":\"Присоединяйтесь к нам и помогайте!\",\"mailing_list\":\"Лист рассылки\",\"messages\":{\"alpha\":\"Пожалуйста, не считайте данный сервис стабильным. Мы еще очень далеки от стабильности! Подробности \"},\"repository\":\"Репозиторий\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"my_repositories\":\"Мои репозитории\",\"recent\":\"Недавние\",\"search\":\"Поиск\",\"sponsers\":\"Спонсоры\",\"sponsors_link\":\"Список всех наших замечательных спонсоров →\"},\"mobile\":{\"author\":\"Автор\",\"build\":\"Сборка\",\"build_matrix\":\"Матрица сборок\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\",\"log\":\"Журнал\"},\"top\":{\"admin\":\"Управление\",\"blog\":\"Блог\",\"docs\":\"Документация\",\"github_login\":\"Войти через Github\",\"home\":\"Главная\",\"profile\":\"Профиль\",\"sign_out\":\"Выход\",\"stats\":\"Статистика\"}},\"no_job\":\"Очередь пуста\",\"profiles\":{\"show\":{\"email\":\"Электронная почта\",\"github\":\"Github\",\"message\":{\"config\":\"как настроить специальные опции билда\",\"your_repos\":\"Используйте переключатели, чтобы включить Travis service hook для вашего проекта, а потом отправьте код на GitHub. \\nДля тестирования на нескольких версиях Ruby смотрите\"},\"messages\":{\"notice\":\"Перед началом, пожалуйста, прочтите Руководство для быстрого старта . Это займет всего несколько минут. \"},\"token\":\"Токен\",\"update\":\"Обновить\",\"update_locale\":\"Обновить\",\"your_locale\":\"Ваш язык\",\"your_repos\":\"Ваши репозитории\"}},\"queue\":\"Очередь\",\"repositories\":{\"branch\":\"Ветка\",\"commit\":\"Коммит\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"image_url\":\"URL изображения\",\"markdown\":\"Markdown\",\"message\":\"Комментарий\",\"rdoc\":\"RDOC\",\"started_at\":\"Начало\",\"tabs\":{\"branches\":\"Статус веток\",\"build\":\"Билд\",\"build_history\":\"История\",\"current\":\"Текущий\",\"job\":\"Задача\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Длительность\"},\"statistics\":{\"index\":{\"build_count\":\"Количество билдов\",\"count\":\"Количество\",\"last_month\":\"прошлый месяц\",\"repo_growth\":\"Рост числа репозиториев\",\"total_builds\":\"Всего билдов\",\"total_projects\":\"Всего проектов/репозиториев\"}},\"workers\":\"Машины\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}}};\n\n\n})();\n//@ sourceURL=config/locales");minispade.register('ext/ember/bound_helper', "(function() {// https://gist.github.com/2018185\n// For reference: https://github.com/wagenet/ember.js/blob/ac66dcb8a1cbe91d736074441f853e0da474ee6e/packages/ember-handlebars/lib/views/bound_property_view.js\nvar BoundHelperView = Ember.View.extend(Ember._Metamorph, {\n\n context: null,\n options: null,\n property: null,\n // paths of the property that are also observed\n propertyPaths: [],\n\n value: Ember.K,\n\n valueForRender: function() {\n var value = this.value(Ember.get(this.context, this.property), this.options);\n if (this.options.escaped) { value = Handlebars.Utils.escapeExpression(value); }\n return value;\n },\n\n render: function(buffer) {\n buffer.push(this.valueForRender());\n },\n\n valueDidChange: function() {\n if (this.morph.isRemoved()) { return; }\n this.morph.html(this.valueForRender());\n },\n\n didInsertElement: function() {\n this.valueDidChange();\n },\n\n init: function() {\n this._super();\n Ember.addObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n Ember.addObserver(this.context, this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n },\n\n destroy: function() {\n Ember.removeObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n this.context.removeObserver(this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n this._super();\n }\n\n});\n\nEmber.registerBoundHelper = function(name, func) {\n var propertyPaths = Array.prototype.slice.call(arguments, 2);\n Ember.Handlebars.registerHelper(name, function(property, options) {\n var data = options.data,\n view = data.view,\n ctx = this;\n\n var bindView = view.createChildView(BoundHelperView, {\n property: property,\n propertyPaths: propertyPaths,\n context: ctx,\n options: options.hash,\n value: func\n });\n\n view.appendChild(bindView);\n });\n};\n\n\n})();\n//@ sourceURL=ext/ember/bound_helper");minispade.register('ext/ember/namespace', "(function() {Em.Namespace.reopen = Em.Namespace.reopenClass\n\n\n\n})();\n//@ sourceURL=ext/ember/namespace");
\ No newline at end of file
diff --git a/public/scripts/min/app.js b/public/scripts/min/app.js
index 32a1a15e..32d51138 100644
--- a/public/scripts/min/app.js
+++ b/public/scripts/min/app.js
@@ -29619,4 +29619,4 @@ var _require=function(){function c(a,c){document.addEventListener?a.addEventList
++g&&setTimeout(c,0)})}}();
(function(){!window.WebSocket&&window.MozWebSocket&&(window.WebSocket=window.MozWebSocket);if(window.WebSocket)Pusher.Transport=window.WebSocket,Pusher.TransportType="native";var c=(document.location.protocol=="http:"?Pusher.cdn_http:Pusher.cdn_https)+Pusher.VERSION,a=[];window.JSON||a.push(c+"/json2"+Pusher.dependency_suffix+".js");if(!window.WebSocket)window.WEB_SOCKET_DISABLE_AUTO_INITIALIZATION=!0,a.push(c+"/flashfallback"+Pusher.dependency_suffix+".js");var b=function(){return window.WebSocket?function(){Pusher.ready()}:
function(){window.WebSocket?(Pusher.Transport=window.WebSocket,Pusher.TransportType="flash",window.WEB_SOCKET_SWF_LOCATION=c+"/WebSocketMain.swf",WebSocket.__addTask(function(){Pusher.ready()}),WebSocket.__initialize()):(Pusher.Transport=null,Pusher.TransportType="none",Pusher.ready())}}(),e=function(a){var b=function(){document.body?a():setTimeout(b,0)};b()},g=function(){e(b)};a.length>0?_require(a,g):g()})();
-;minispade.register('app', "(function() {(function() {\nminispade.require('auth');\nminispade.require('controllers');\nminispade.require('helpers');\nminispade.require('models');\nminispade.require('pusher');\nminispade.require('routes');\nminispade.require('slider');\nminispade.require('store');\nminispade.require('tailing');\nminispade.require('templates');\nminispade.require('views');\nminispade.require('config/locales');\nminispade.require('data/sponsors');\n\n Travis.reopen({\n App: Em.Application.extend({\n autoinit: false,\n currentUserBinding: 'auth.user',\n authStateBinding: 'auth.state',\n init: function() {\n this._super.apply(this, arguments);\n this.store = Travis.Store.create();\n this.store.loadMany(Travis.Sponsor, Travis.SPONSORS);\n this.set('auth', Travis.Auth.create({\n app: this,\n endpoint: Travis.config.api_endpoint\n }));\n this.slider = new Travis.Slider();\n this.pusher = new Travis.Pusher(Travis.config.pusher_key);\n return this.tailing = new Travis.Tailing();\n },\n signIn: function() {\n return this.get('auth').signIn();\n },\n autoSignIn: function() {\n return this.get('auth').autoSignIn();\n },\n signOut: function() {\n this.get('auth').signOut();\n return this.get('router').send('afterSignOut');\n },\n receive: function() {\n return this.store.receive.apply(this.store, arguments);\n },\n toggleSidebar: function() {\n var element;\n $('body').toggleClass('maximized');\n element = $(' ');\n $('#top .profile').append(element);\n Em.run.later((function() {\n return element.remove();\n }), 10);\n element = $(' ');\n $('#repo').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=app");minispade.register('auth', "(function() {(function() {\n\n this.Travis.Auth = Ember.Object.extend({\n iframe: $('').hide(),\n timeout: 5000,\n state: 'signed-out',\n receivingEnd: \"\" + location.protocol + \"//\" + location.host,\n init: function() {\n var _this = this;\n this.iframe.appendTo('body');\n window.addEventListener('message', function(e) {\n return _this.receiveMessage(e);\n });\n return this.loadUser();\n },\n accessToken: (function() {\n return sessionStorage.getItem('travis.token');\n }).property(),\n loadUser: function() {\n var user;\n if (user = sessionStorage.getItem('travis.user')) {\n return this.setData({\n user: JSON.parse(user)\n });\n } else {\n return this.autoSignIn();\n }\n },\n signIn: function() {\n this.set('state', 'signing-in');\n this.trySignIn();\n return Ember.run.later(this, this.checkSignIn.bind(this), this.timeout);\n },\n autoSignIn: function() {\n if (localStorage.getItem('travis.auto_signin')) {\n return this.signIn();\n }\n },\n signOut: function() {\n localStorage.clear();\n sessionStorage.clear();\n return this.setData();\n },\n trySignIn: function() {\n return this.iframe.attr('src', \"\" + this.endpoint + \"/auth/post_message?origin=\" + this.receivingEnd);\n },\n checkSignIn: function() {\n if (this.get('state') === 'signing-in') {\n return this.forceSignIn();\n }\n },\n forceSignIn: function() {\n localStorage.setItem('travis.auto_signin', 'true');\n return window.location = \"\" + this.endpoint + \"/auth/handshake?redirect_uri=\" + location;\n },\n setData: function(data) {\n var router, user, _ref;\n if (typeof data === 'string') {\n data = JSON.parse(data);\n }\n if (data != null ? data.token : void 0) {\n this.storeToken(data.token);\n }\n if (data != null ? data.user : void 0) {\n user = this.storeUser(data.user);\n }\n this.set('state', user ? 'signed-in' : 'signed-out');\n this.set('user', user ? user : void 0);\n if (router = (_ref = Travis.app) != null ? _ref.get('router') : void 0) {\n return router.send('afterSignIn');\n }\n },\n storeToken: function(token) {\n sessionStorage.setItem('travis.token', token);\n return this.notifyPropertyChange('accessToken');\n },\n storeUser: function(user) {\n localStorage.setItem('travis.auto_signin', 'true');\n sessionStorage.setItem('travis.user', JSON.stringify(user));\n this.app.store.load(Travis.User, user);\n user = this.app.store.find(Travis.User, user.id);\n user.get('permissions');\n return user;\n },\n receiveMessage: function(event) {\n if (event.origin === this.expectedOrigin()) {\n if (event.data.token) {\n event.data.user.token = event.data.token;\n }\n this.setData(event.data);\n return console.log(\"signed in as \" + event.data.user.login);\n } else {\n return console.log(\"unexpected message \" + event.origin + \": \" + event.data);\n }\n },\n expectedOrigin: function() {\n if (this.endpoint[0] === '/') {\n return this.receivingEnd;\n } else {\n return this.endpoint;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=auth");minispade.register('controllers', "(function() {(function() {\nminispade.require('helpers');\nminispade.require('travis/ticker');\n\n Travis.reopen({\n Controller: Em.Controller.extend({\n connectOutlet: function() {\n var view, _connectedOutletViews;\n view = this._super.apply(this, arguments);\n if (view) {\n _connectedOutletViews = Travis.app.get('_connectedOutletViews');\n if (!_connectedOutletViews) {\n _connectedOutletViews = [];\n }\n _connectedOutletViews.pushObject(view);\n Travis.app.set('_connectedOutletViews', _connectedOutletViews);\n }\n return view;\n }\n }),\n TopController: Em.Controller.extend({\n userBinding: 'Travis.app.currentUser'\n }),\n ApplicationController: Em.Controller.extend(),\n MainController: Em.Controller.extend(),\n StatsLayoutController: Em.Controller.extend(),\n ProfileLayoutController: Em.Controller.extend(),\n AuthLayoutController: Em.Controller.extend()\n });\nminispade.require('controllers/accounts');\nminispade.require('controllers/builds');\nminispade.require('controllers/flash');\nminispade.require('controllers/home');\nminispade.require('controllers/profile');\nminispade.require('controllers/repos');\nminispade.require('controllers/repo');\nminispade.require('controllers/sidebar');\nminispade.require('controllers/stats');\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers");minispade.register('controllers/accounts', "(function() {(function() {\n\n Travis.AccountsController = Ember.ArrayController.extend({\n tab: 'accounts',\n init: function() {\n return this._super();\n },\n findByLogin: function(login) {\n return this.find(function(account) {\n return account.get('login') === login;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/accounts");minispade.register('controllers/builds', "(function() {(function() {\n\n Travis.BuildsController = Em.ArrayController.extend({\n repo: 'parent.repo',\n contentBinding: 'parent.builds'\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/builds");minispade.register('controllers/flash', "(function() {(function() {\n\n Travis.FlashController = Ember.ArrayController.extend({\n init: function() {\n this._super.apply(this, arguments);\n return this.set('content', Ember.A());\n },\n pushObjects: function(objects) {\n Ember.run.later(this, (function() {\n return this.removeObjects(objects);\n }), 10000);\n return this._super(objects);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/flash");minispade.register('controllers/home', "(function() {(function() {\n\n Travis.HomeLayoutController = Travis.Controller.extend();\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/home");minispade.register('controllers/profile', "(function() {(function() {\n\n Travis.ProfileController = Travis.Controller.extend({\n name: 'profile',\n userBinding: 'Travis.app.currentUser',\n accountsBinding: 'Travis.app.router.accountsController',\n account: (function() {\n var account, login;\n login = this.get('params.login') || Travis.app.get('currentUser.login');\n account = this.get('accounts').filter(function(account) {\n if (account.get('login') === login) {\n return account;\n }\n })[0];\n if (account) {\n account.select();\n }\n return account;\n }).property('accounts.length', 'params.login'),\n activate: function(action, params) {\n this.setParams(params || this.get('params'));\n return this[\"view\" + ($.camelize(action))]();\n },\n viewHooks: function() {\n this.connectTab('hooks');\n return this.set('hooks', Travis.Hook.find({\n owner_name: this.get('params.login') || Travis.app.get('currentUser.login')\n }));\n },\n viewUser: function() {\n return this.connectTab('user');\n },\n connectTab: function(tab) {\n var viewClass;\n viewClass = Travis[\"\" + ($.camelize(tab)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n setParams: function(params) {\n var key, value, _results;\n this.set('params', {});\n _results = [];\n for (key in params) {\n value = params[key];\n _results.push(this.set(\"params.\" + key, params[key]));\n }\n return _results;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/profile");minispade.register('controllers/repo', "(function() {(function() {\n\n Travis.RepoController = Travis.Controller.extend({\n bindings: [],\n init: function() {\n this._super.apply(this, arguments);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var build, builds, jobs;\n if (builds = this.get('builds')) {\n builds.forEach(function(b) {\n return b.updateTimes();\n });\n }\n if (build = this.get('build')) {\n build.updateTimes();\n }\n if (build && (jobs = build.get('jobs'))) {\n jobs.forEach(function(j) {\n return j.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(action) {\n this._unbind();\n return this[\"view\" + ($.camelize(action))]();\n },\n viewIndex: function() {\n this._bind('repo', 'controllers.reposController.firstObject');\n this._bind('build', 'repo.lastBuild');\n return this.connectTab('current');\n },\n viewCurrent: function() {\n this.connectTab('current');\n return this._bind('build', 'repo.lastBuild');\n },\n viewBuilds: function() {\n this.connectTab('builds');\n return this._bind('builds', 'repo.builds');\n },\n viewPullRequests: function() {\n this.connectTab('pull_requests');\n return this._bind('builds', 'repo.pullRequests');\n },\n viewBranches: function() {\n this.connectTab('branches');\n return this._bind('builds', 'repo.branches');\n },\n viewEvents: function() {\n this.connectTab('events');\n return this._bind('events', 'repo.events');\n },\n viewBuild: function() {\n return this.connectTab('build');\n },\n viewJob: function() {\n this._bind('build', 'job.build');\n return this.connectTab('job');\n },\n repoObserver: (function() {\n var repo;\n repo = this.get('repo');\n if (repo) {\n return repo.select();\n }\n }).observes('repo.id'),\n connectTab: function(tab) {\n var name, viewClass;\n name = tab === 'current' ? 'build' : tab;\n viewClass = name === 'builds' || name === 'branches' || name === 'pull_requests' ? Travis.BuildsView : Travis[\"\" + ($.camelize(name)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n _bind: function(to, from) {\n return this.bindings.push(Ember.oneWay(this, to, from));\n },\n _unbind: function() {\n var binding, _i, _len, _ref;\n _ref = this.bindings;\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n binding = _ref[_i];\n binding.disconnect(this);\n }\n return this.bindings.length = 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repo");minispade.register('controllers/repos', "(function() {(function() {\nminispade.require('travis/limited_array');\n\n Travis.ReposController = Ember.ArrayController.extend({\n defaultTab: 'recent',\n sortProperties: ['sortOrder'],\n init: function() {\n this.activate(this.defaultTab);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var content;\n if (content = this.get('content')) {\n content.forEach(function(r) {\n return r.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(tab, params) {\n this.set('tab', tab);\n return this[\"view\" + ($.camelize(tab))](params);\n },\n viewRecent: function() {\n var content;\n content = Travis.LimitedArray.create({\n content: Travis.Repo.find(),\n limit: 30\n });\n return this.set('content', content);\n },\n viewOwned: function() {\n return this.set('content', Travis.Repo.accessibleBy(Travis.app.get('currentUser.login')));\n },\n viewSearch: function(params) {\n return this.set('content', Travis.Repo.search(params.search));\n },\n searchObserver: (function() {\n var search;\n search = this.get('search');\n if (search) {\n return this.searchFor(search);\n } else {\n this.activate('recent');\n return 'recent';\n }\n }).observes('search'),\n searchFor: function(phrase) {\n if (this.searchLater) {\n Ember.run.cancel(this.searchLater);\n }\n return this.searchLater = Ember.run.later(this, (function() {\n return this.activate('search', {\n search: phrase\n });\n }), 500);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repos");minispade.register('controllers/sidebar', "(function() {(function() {\n\n Travis.reopen({\n SidebarController: Em.ArrayController.extend({\n init: function() {\n this.tickables = [];\n return Travis.Ticker.create({\n target: this,\n interval: Travis.INTERVALS.sponsors\n });\n },\n tick: function() {\n var tickable, _i, _len, _ref, _results;\n _ref = this.tickables;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n tickable = _ref[_i];\n _results.push(tickable.tick());\n }\n return _results;\n }\n }),\n QueuesController: Em.ArrayController.extend(),\n WorkersController: Em.ArrayController.extend({\n groups: (function() {\n var content, groups, host, worker, _i, _len, _ref;\n if (content = this.get('arrangedContent')) {\n groups = {};\n _ref = content.toArray();\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n worker = _ref[_i];\n host = worker.get('host');\n if (!groups[host]) {\n groups[host] = Em.ArrayProxy.create(Em.SortableMixin, {\n content: [],\n sortProperties: ['nameForSort']\n });\n }\n groups[host].addObject(worker);\n }\n return $.values(groups);\n }\n }).property('length')\n }),\n SponsorsController: Em.ArrayController.extend({\n page: 0,\n arrangedContent: (function() {\n return this.get('shuffled').slice(this.start(), this.end());\n }).property('shuffled.length', 'page'),\n shuffled: (function() {\n var content;\n if (content = this.get('content')) {\n return $.shuffle(content);\n } else {\n return [];\n }\n }).property('content.length'),\n tick: function() {\n return this.set('page', this.isLast() ? 0 : this.get('page') + 1);\n },\n pages: (function() {\n var length;\n length = this.get('content.length');\n if (length) {\n return parseInt(length / this.get('perPage') + 1);\n } else {\n return 1;\n }\n }).property('length'),\n isLast: function() {\n return this.get('page') === this.get('pages') - 1;\n },\n start: function() {\n return this.get('page') * this.get('perPage');\n },\n end: function() {\n return this.start() + this.get('perPage');\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/sidebar");minispade.register('controllers/stats', "(function() {(function() {\n\n Travis.StatsController = Travis.Controller.extend({\n name: 'stats',\n init: function() {\n return this._super('top');\n },\n activate: function(action, params) {}\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/stats");minispade.register('helpers', "(function() {(function() {\nminispade.require('helpers/handlebars');\nminispade.require('helpers/helpers');\nminispade.require('helpers/urls');\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers");minispade.register('helpers/handlebars', "(function() {(function() {\n var safe;\nminispade.require('ext/ember/bound_helper');\n\n safe = function(string) {\n return new Handlebars.SafeString(string);\n };\n\n Handlebars.registerHelper('tipsy', function(text, tip) {\n return safe('' + text + ' ');\n });\n\n Handlebars.registerHelper('t', function(key) {\n return safe(I18n.t(key));\n });\n\n Ember.registerBoundHelper('formatTime', function(value, options) {\n return safe(Travis.Helpers.timeAgoInWords(value) || '-');\n });\n\n Ember.registerBoundHelper('formatDuration', function(duration, options) {\n return safe(Travis.Helpers.timeInWords(duration));\n });\n\n Ember.registerBoundHelper('formatCommit', function(commit, options) {\n if (commit) {\n return safe(Travis.Helpers.formatCommit(commit.get('sha'), commit.get('branch')));\n }\n });\n\n Ember.registerBoundHelper('formatSha', function(sha, options) {\n return safe(Travis.Helpers.formatSha(sha));\n });\n\n Ember.registerBoundHelper('pathFrom', function(url, options) {\n return safe(Travis.Helpers.pathFrom(url));\n });\n\n Ember.registerBoundHelper('formatMessage', function(message, options) {\n return safe(Travis.Helpers.formatMessage(message, options));\n });\n\n Ember.registerBoundHelper('formatConfig', function(config, options) {\n return safe(Travis.Helpers.formatConfig(config));\n });\n\n Ember.registerBoundHelper('formatLog', function(log, options) {\n var item, parentView, repo;\n parentView = this.get('parentView');\n repo = parentView.get(options.repo);\n item = parentView.get(options.item);\n return Travis.Helpers.formatLog(log, repo, item) || '';\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/handlebars");minispade.register('helpers/helpers', "(function() {(function() {\nminispade.require('travis/log');\nminispade.require('config/emoij');\n\n this.Travis.Helpers = {\n compact: function(object) {\n var key, result, value, _ref;\n result = {};\n _ref = object || {};\n for (key in _ref) {\n value = _ref[key];\n if (!$.isEmpty(value)) {\n result[key] = value;\n }\n }\n return result;\n },\n safe: function(string) {\n return new Handlebars.SafeString(string);\n },\n colorForResult: function(result) {\n if (result === 0) {\n return 'green';\n } else {\n if (result === 1) {\n return 'red';\n } else {\n return null;\n }\n }\n },\n formatCommit: function(sha, branch) {\n return Travis.Helpers.formatSha(sha) + (branch ? \" (\" + branch + \")\" : '');\n },\n formatSha: function(sha) {\n return (sha || '').substr(0, 7);\n },\n formatConfig: function(config) {\n var values;\n config = $.only(config, 'rvm', 'gemfile', 'env', 'otp_release', 'php', 'node_js', 'scala', 'jdk', 'python', 'perl');\n values = $.map(config, function(value, key) {\n value = (value && value.join ? value.join(', ') : value) || '';\n return '%@: %@'.fmt($.camelize(key), value);\n });\n if (values.length === 0) {\n return '-';\n } else {\n return values.join(', ');\n }\n },\n formatMessage: function(message, options) {\n message = message || '';\n if (options.short) {\n message = message.split(/\\n/)[0];\n }\n return this._emojize(this._escape(message)).replace(/\\n/g, ' ');\n },\n formatLog: function(log, repo, item) {\n var event, url;\n event = item.constructor === Travis.Build ? 'showBuild' : 'showJob';\n url = Travis.app.get('router').urlForEvent(event, repo, item);\n return Travis.Log.filter(log, url);\n },\n pathFrom: function(url) {\n return (url || '').split('/').pop();\n },\n timeAgoInWords: function(date) {\n return $.timeago.distanceInWords(date);\n },\n durationFrom: function(started, finished) {\n started = started && this._toUtc(new Date(this._normalizeDateString(started)));\n finished = finished ? this._toUtc(new Date(this._normalizeDateString(finished))) : this._nowUtc();\n if (started && finished) {\n return Math.round((finished - started) / 1000);\n } else {\n return 0;\n }\n },\n timeInWords: function(duration) {\n var days, hours, minutes, result, seconds;\n days = Math.floor(duration / 86400);\n hours = Math.floor(duration % 86400 / 3600);\n minutes = Math.floor(duration % 3600 / 60);\n seconds = duration % 60;\n if (days > 0) {\n return 'more than 24 hrs';\n } else {\n result = [];\n if (hours === 1) {\n result.push(hours + ' hr');\n }\n if (hours > 1) {\n result.push(hours + ' hrs');\n }\n if (minutes > 0) {\n result.push(minutes + ' min');\n }\n if (seconds > 0) {\n result.push(seconds + ' sec');\n }\n if (result.length > 0) {\n return result.join(' ');\n } else {\n return '-';\n }\n }\n },\n _normalizeDateString: function(string) {\n if (window.JHW) {\n string = string.replace('T', ' ').replace(/-/g, '/');\n string = string.replace('Z', '').replace(/\\..*$/, '');\n }\n return string;\n },\n _nowUtc: function() {\n return this._toUtc(new Date());\n },\n _toUtc: function(date) {\n return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds());\n },\n _emojize: function(text) {\n var emojis;\n emojis = text.match(/:\\S+?:/g);\n if (emojis !== null) {\n $.each(emojis.uniq(), function(ix, emoji) {\n var image, strippedEmoji;\n strippedEmoji = emoji.substring(1, emoji.length - 1);\n if (EmojiDictionary.indexOf(strippedEmoji) !== -1) {\n image = ' ';\n return text = text.replace(new RegExp(emoji, 'g'), image);\n }\n });\n }\n return text;\n },\n _escape: function(text) {\n return text.replace(/&/g, '&').replace(//g, '>');\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/helpers");minispade.register('helpers/urls', "(function() {(function() {\n\n this.Travis.Urls = {\n repo: function(slug) {\n return \"/\" + slug;\n },\n builds: function(slug) {\n return \"/\" + slug + \"/builds\";\n },\n pullRequests: function(slug) {\n return \"/\" + slug + \"/pull_requests\";\n },\n branches: function(slug) {\n return \"/\" + slug + \"/branches\";\n },\n build: function(slug, id) {\n return \"/\" + slug + \"/builds/\" + id;\n },\n job: function(slug, id) {\n return \"/\" + slug + \"/jobs/\" + id;\n },\n githubCommit: function(slug, sha) {\n return \"http://github.com/\" + slug + \"/commit/\" + sha;\n },\n githubRepo: function(slug) {\n return \"http://github.com/\" + slug;\n },\n githubWatchers: function(slug) {\n return \"http://github.com/\" + slug + \"/watchers\";\n },\n githubNetwork: function(slug) {\n return \"http://github.com/\" + slug + \"/network\";\n },\n githubAdmin: function(slug) {\n return \"http://github.com/\" + slug + \"/admin/hooks#travis_minibucket\";\n },\n statusImage: function(slug, branch) {\n return (\"https://secure.travis-ci.org/\" + slug + \".png\") + (branch ? \"?branch=\" + branch : '');\n },\n email: function(email) {\n return \"mailto:\" + email;\n },\n account: function(login) {\n return \"/profile/\" + login;\n },\n user: function(login) {\n return \"/profile/\" + login + \"/me\";\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/urls");minispade.register('models', "(function() {(function() {\nminispade.require('models/extensions');\nminispade.require('models/account');\nminispade.require('models/artifact');\nminispade.require('models/branch');\nminispade.require('models/build');\nminispade.require('models/commit');\nminispade.require('models/event');\nminispade.require('models/hook');\nminispade.require('models/job');\nminispade.require('models/repo');\nminispade.require('models/sponsor');\nminispade.require('models/user');\nminispade.require('models/worker');\n\n}).call(this);\n\n})();\n//@ sourceURL=models");minispade.register('models/account', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Account = Travis.Model.extend({\n primaryKey: 'login',\n login: DS.attr('string'),\n name: DS.attr('string'),\n type: DS.attr('string'),\n reposCount: DS.attr('number'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('login'));\n }).property()\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/account");minispade.register('models/artifact', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Artifact = Travis.Model.extend({\n body: DS.attr('string'),\n init: function() {\n this._super.apply(this, arguments);\n this.set('queue', Ember.A([]));\n this.addObserver('body', this.fetchWorker);\n return this.fetchWorker();\n },\n append: function(body) {\n if (this.get('isLoaded')) {\n return this.set('body', this.get('body') + body);\n } else {\n return this.get('queue').pushObject(body);\n }\n },\n recordDidLoad: (function() {\n var queue;\n if (this.get('isLoaded')) {\n queue = this.get('queue');\n if (queue.get('length') > 0) {\n return this.append(queue.toArray().join(''));\n }\n }\n }).observes('isLoaded'),\n fetchWorker: function() {\n var body, line, match, worker;\n if (body = this.get('body')) {\n line = body.split(\"\\n\")[0];\n if (line && (match = line.match(/Using worker: (.*)/))) {\n if (worker = match[1]) {\n worker = worker.trim().split(':')[0];\n this.set('workerName', worker);\n return this.removeObserver('body', this.fetchWorker);\n }\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/artifact");minispade.register('models/branch', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Branch = Travis.Model.extend(Travis.Helpers, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n duration: DS.attr('number'),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n commit: DS.belongsTo('Travis.Commit'),\n repo: (function() {\n if (this.get('repoId')) {\n return Travis.Repo.find(this.get('repoId'));\n }\n }).property('repoId'),\n updateTimes: function() {\n this.notifyPropertyChange('started_at');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n this.Travis.Branch.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/branch");minispade.register('models/build', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Build = Travis.Model.extend(Travis.DurationCalculations, {\n eventType: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n state: DS.attr('string'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string', {\n key: 'started_at'\n }),\n finishedAt: DS.attr('string', {\n key: 'finished_at'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n commit: DS.belongsTo('Travis.Commit'),\n jobs: DS.hasMany('Travis.Job', {\n key: 'job_ids'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n isMatrix: (function() {\n return this.get('data.job_ids.length') > 1;\n }).property('data.job_ids.length'),\n isFinished: (function() {\n return this.get('state') === 'finished';\n }).property('state'),\n requiredJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return !data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n allowedFailureJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n configKeys: (function() {\n var config, headers, key, keys;\n if (!(config = this.get('config'))) {\n return [];\n }\n keys = $.intersect($.keys(config), Travis.CONFIG_KEYS);\n headers = (function() {\n var _i, _len, _ref, _results;\n _ref = ['build.job', 'build.duration', 'build.finished_at'];\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n key = _ref[_i];\n _results.push(I18n.t(key));\n }\n return _results;\n })();\n return $.map(headers.concat(keys), function(key) {\n return $.camelize(key);\n });\n }).property('config'),\n requeue: (function() {\n return Travis.ajax.post('/requests', {\n build_id: this.get('id')\n });\n })\n });\n\n this.Travis.Build.reopenClass({\n byRepoId: function(id, parameters) {\n return this.find($.extend(parameters || {}, {\n repository_id: id\n }));\n },\n olderThanNumber: function(id, build_number) {\n return this.find({\n url: \"/builds\",\n repository_id: id,\n after_number: build_number\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/build");minispade.register('models/commit', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Commit = Travis.Model.extend({\n buildId: DS.attr('number'),\n sha: DS.attr('string'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n compareUrl: DS.attr('string'),\n authorName: DS.attr('string'),\n authorEmail: DS.attr('string'),\n committerName: DS.attr('string'),\n committerEmail: DS.attr('string'),\n build: DS.belongsTo('Travis.Build', {\n key: 'buildId'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/commit");minispade.register('models/event', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Event = Travis.Model.extend({\n event: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n sourceId: DS.attr('number', {\n key: 'source_id'\n }),\n sourceType: DS.attr('string', {\n key: 'source_type'\n }),\n createdAt: DS.attr('string', {\n key: 'created_at'\n }),\n event_: (function() {\n return this.get('event');\n }).property('event'),\n result: (function() {\n return this.get('data.data.result');\n }).property('data.data.result'),\n message: (function() {\n return this.get('data.data.message');\n }).property('data.data.message'),\n source: (function() {\n var type;\n if (type = this.get('sourceType')) {\n return Travis[type].find(this.get('sourceId'));\n }\n }).property('sourceType', 'sourceId')\n });\n\n this.Travis.Event.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/event");minispade.register('models/extensions', "(function() {(function() {\n\n Travis.DurationCalculations = Ember.Mixin.create({\n duration: (function() {\n var duration;\n if (duration = this.get('_duration')) {\n return duration;\n } else {\n return Travis.Helpers.durationFrom(this.get('startedAt'), this.get('finishedAt'));\n }\n }).property('_duration', 'finishedAt', 'startedAt'),\n updateTimes: function() {\n this.notifyPropertyChange('_duration');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/extensions");minispade.register('models/hook', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Hook = Travis.Model.extend({\n name: DS.attr('string'),\n ownerName: DS.attr('string'),\n description: DS.attr('string'),\n active: DS.attr('boolean'),\n account: (function() {\n return this.get('slug').split('/')[0];\n }).property('slug'),\n slug: (function() {\n return \"\" + (this.get('ownerName')) + \"/\" + (this.get('name'));\n }).property('ownerName', 'name'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('slug'));\n }).property(),\n urlGithubAdmin: (function() {\n return \"http://github.com/\" + (this.get('slug')) + \"/admin/hooks#travis_minibucket\";\n }).property(),\n toggle: function() {\n var transaction;\n transaction = this.get('store').transaction();\n transaction.add(this);\n this.set('active', !this.get('active'));\n return transaction.commit();\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/hook");minispade.register('models/job', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Job = Travis.Model.extend(Travis.DurationCalculations, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n buildId: DS.attr('number'),\n commitId: DS.attr('number'),\n logId: DS.attr('number'),\n queue: DS.attr('string'),\n state: DS.attr('string'),\n number: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n allowFailure: DS.attr('boolean', {\n key: 'allow_failure'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n build: DS.belongsTo('Travis.Build', {\n key: 'build_id'\n }),\n commit: DS.belongsTo('Travis.Commit', {\n key: 'commit_id'\n }),\n log: DS.belongsTo('Travis.Artifact', {\n key: 'log_id'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n sponsor: (function() {\n var worker;\n worker = this.get('log.workerName');\n if (worker && worker.length) {\n return Travis.WORKERS[worker] || {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n };\n }\n }).property('log.workerName'),\n configValues: (function() {\n var config;\n if (config = this.get('config')) {\n return $.values($.only.apply(config, Travis.CONFIG_KEYS));\n } else {\n return [];\n }\n }).property('config'),\n appendLog: function(text) {\n var log;\n if (log = this.get('log')) {\n return log.append(text);\n }\n },\n subscribe: function() {\n var id;\n if (id = this.get('id')) {\n return Travis.app.pusher.subscribe(\"job-\" + id);\n }\n },\n onStateChange: (function() {\n if (this.get('state') === 'finished') {\n return Travis.app.pusher.unsubscribe(\"job-\" + (this.get('id')));\n }\n }).observes('state')\n });\n\n this.Travis.Job.reopenClass({\n queued: function(queue) {\n this.find();\n return Travis.app.store.filter(this, function(job) {\n var queued;\n queued = ['created', 'queued'].indexOf(job.get('state')) !== -1;\n return queued && (!queue || job.get('queue') === (\"builds.\" + queue));\n });\n },\n findMany: function(ids) {\n return Travis.app.store.findMany(this, ids);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/job");minispade.register('models/repo', "(function() {(function() {\nminispade.require('travis/expandable_record_array');\nminispade.require('travis/model');\n\n this.Travis.Repo = Travis.Model.extend({\n slug: DS.attr('string'),\n description: DS.attr('string'),\n lastBuildId: DS.attr('number'),\n lastBuildNumber: DS.attr('string'),\n lastBuildResult: DS.attr('number'),\n lastBuildStartedAt: DS.attr('string'),\n lastBuildFinishedAt: DS.attr('string'),\n lastBuild: DS.belongsTo('Travis.Build'),\n builds: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'push'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n pullRequests: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'pull_request'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n branches: (function() {\n return Travis.Branch.byRepoId(this.get('id'));\n }).property(),\n events: (function() {\n return Travis.Event.byRepoId(this.get('id'));\n }).property(),\n owner: (function() {\n return (this.get('slug') || '').split('/')[0];\n }).property('slug'),\n name: (function() {\n return (this.get('slug') || '').split('/')[1];\n }).property('slug'),\n lastBuildDuration: (function() {\n var duration;\n duration = this.get('data.last_build_duration');\n if (!duration) {\n duration = Travis.Helpers.durationFrom(this.get('lastBuildStartedAt'), this.get('lastBuildFinishedAt'));\n }\n return duration;\n }).property('data.last_build_duration', 'lastBuildStartedAt', 'lastBuildFinishedAt'),\n sortOrder: (function() {\n var lastBuildFinishedAt;\n if (lastBuildFinishedAt = this.get('lastBuildFinishedAt')) {\n return -new Date(lastBuildFinishedAt).getTime();\n } else {\n return -new Date('9999').getTime() - parseInt(this.get('lastBuildId'));\n }\n }).property('lastBuildFinishedAt', 'lastBuildId'),\n stats: (function() {\n var _this = this;\n return this.get('_stats') || $.get(\"https://api.github.com/repos/\" + (this.get('slug')), function(data) {\n _this.set('_stats', data);\n return _this.notifyPropertyChange('stats');\n }) && {};\n }).property(),\n updateTimes: function() {\n return this.notifyPropertyChange('lastBuildDuration');\n }\n });\n\n this.Travis.Repo.reopenClass({\n recent: function() {\n return this.find();\n },\n ownedBy: function(login) {\n return this.find({\n owner_name: login,\n orderBy: 'name'\n });\n },\n accessibleBy: function(login) {\n return this.find({\n member: login,\n orderBy: 'name'\n });\n },\n search: function(query) {\n return this.find({\n search: query,\n orderBy: 'name'\n });\n },\n bySlug: function(slug) {\n var repo;\n repo = $.select(this.find().toArray(), function(repo) {\n return repo.get('slug') === slug;\n });\n if (repo.length > 0) {\n return repo;\n } else {\n return this.find({\n slug: slug\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/repo");minispade.register('models/sponsor', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Sponsor = Travis.Model.extend({\n type: DS.attr('string'),\n url: DS.attr('string'),\n link: DS.attr('string'),\n image: (function() {\n return \"/images/sponsors/\" + (this.get('data.image'));\n }).property('data.image')\n });\n\n Travis.Sponsor.reopenClass({\n decks: function() {\n return this.platinum().concat(this.gold());\n },\n platinum: function() {\n var platinum, sponsor, _i, _len, _results;\n platinum = this.byType('platinum').toArray();\n _results = [];\n for (_i = 0, _len = platinum.length; _i < _len; _i++) {\n sponsor = platinum[_i];\n _results.push([sponsor]);\n }\n return _results;\n },\n gold: function() {\n var gold, _results;\n gold = this.byType('gold').toArray();\n _results = [];\n while (gold.length > 0) {\n _results.push(gold.splice(0, 2));\n }\n return _results;\n },\n links: function() {\n return this.byType('silver');\n },\n byType: function() {\n var types;\n types = Array.prototype.slice.apply(arguments);\n return Travis.Sponsor.filter(function(sponsor) {\n return types.indexOf(sponsor.get('type')) !== -1;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/sponsor");minispade.register('models/user', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('travis/model');\n\n this.Travis.User = Travis.Model.extend({\n name: DS.attr('string'),\n email: DS.attr('string'),\n login: DS.attr('string'),\n token: DS.attr('string'),\n locale: DS.attr('string'),\n gravatarId: DS.attr('string'),\n isSyncing: DS.attr('boolean'),\n syncedAt: DS.attr('string'),\n repoCount: DS.attr('number'),\n init: function() {\n if (this.get('isSyncing')) {\n this.poll();\n }\n this._super();\n return Ember.run.next(this, function() {\n var transaction;\n transaction = this.get('store').transaction();\n return transaction.add(this);\n });\n },\n urlGithub: (function() {\n return \"https://github.com/\" + (this.get('login'));\n }).property(),\n permissions: (function() {\n var _this = this;\n if (!this.permissions) {\n this.permissions = Ember.ArrayProxy.create({\n content: []\n });\n Travis.ajax.get('/users/permissions', function(data) {\n return _this.permissions.set('content', data.permissions);\n });\n }\n return this.permissions;\n }).property(),\n updateLocale: function(locale) {\n var observer, self, transaction;\n this.setWithSession('locale', locale);\n transaction = this.get('transaction');\n transaction.commit();\n self = this;\n observer = function() {\n if (!self.get('isSaving')) {\n self.removeObserver('isSaving', observer);\n transaction = self.get('store').transaction();\n return transaction.add(self);\n }\n };\n return this.addObserver('isSaving', observer);\n },\n type: (function() {\n return 'user';\n }).property(),\n sync: function() {\n Travis.ajax.post('/users/sync');\n this.setWithSession('isSyncing', true);\n return this.poll();\n },\n poll: function() {\n var _this = this;\n return Travis.ajax.get('/users', function(data) {\n if (data.user.is_syncing) {\n return Ember.run.later(_this, _this.poll.bind(_this), 3000);\n } else {\n _this.set('isSyncing', false);\n return _this.setWithSession('syncedAt', data.user.synced_at);\n }\n });\n },\n setWithSession: function(name, value) {\n var user;\n this.set(name, value);\n user = JSON.parse(typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.getItem('travis.user') : void 0);\n user[$.underscore(name)] = this.get(name);\n return typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.setItem('travis.user', JSON.stringify(user)) : void 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/user");minispade.register('models/worker', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Worker = Travis.Model.extend({\n state: DS.attr('string'),\n name: DS.attr('string'),\n host: DS.attr('string'),\n lastSeenAt: DS.attr('string'),\n payload: (function() {\n return this.get('data.payload');\n }).property('data.payload'),\n number: (function() {\n return this.get('name').match(/\\d+$/)[0];\n }).property('name'),\n isWorking: (function() {\n return this.get('state') === 'working';\n }).property('state'),\n repo: (function() {\n return Travis.Repo.find(this.get('payload.repository.id') || this.get('payload.repo.id'));\n }).property('payload.repository.id', 'payload.repo.id'),\n job_id: (function() {\n return this.get('payload.job.id');\n }).property('payload.job.id'),\n job: (function() {\n return Travis.Job.find(this.get('job_id'));\n }).property('job_id'),\n nameForSort: (function() {\n var id, match, name;\n if (name = this.get('name')) {\n match = name.match(/(.*?)-(\\d+)/);\n if (match) {\n name = match[1];\n id = match[2].toString();\n if (id.length < 2) {\n id = \"00\" + id;\n } else if (id.length < 3) {\n id = \"0\" + id;\n }\n return \"\" + name + \"-\" + id;\n }\n }\n }).property('name')\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/worker");minispade.register('pusher', "(function() {(function() {\n\n Travis.Pusher = function(key) {\n if (key) {\n this.init(key);\n }\n return this;\n };\n\n $.extend(Travis.Pusher, {\n CHANNELS: ['common'],\n CHANNEL_PREFIX: ''\n });\n\n $.extend(Travis.Pusher.prototype, {\n active_channels: [],\n init: function(key) {\n var channel, _i, _len, _ref, _results;\n Pusher.warn = this.warn.bind(this);\n this.pusher = new Pusher(key);\n _ref = Travis.Pusher.CHANNELS;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n channel = _ref[_i];\n _results.push(this.subscribe(channel));\n }\n return _results;\n },\n subscribe: function(channel) {\n var _this = this;\n if (this.pusher && this.active_channels.indexOf(channel) === -1) {\n this.active_channels.push(channel);\n return this.pusher.subscribe(this.prefix(channel)).bind_all(function(event, data) {\n return _this.receive(event, data);\n });\n }\n },\n unsubscribe: function(channel) {\n var ix;\n ix = this.active_channels.indexOf(channel);\n if (this.pusher && ix === -1) {\n this.active_channels.splice(ix, 1);\n return this.pusher.unsubscribe(this.prefix(channel));\n }\n },\n prefix: function(channel) {\n return \"\" + Travis.Pusher.CHANNEL_PREFIX + channel;\n },\n receive: function(event, data) {\n if (event.substr(0, 6) === 'pusher') {\n return;\n }\n if (data.id) {\n data = this.normalize(event, data);\n }\n return Ember.run.next(function() {\n return Travis.app.store.receive(event, data);\n });\n },\n normalize: function(event, data) {\n switch (event) {\n case 'build:started':\n case 'build:finished':\n return data;\n case 'job:created':\n case 'job:started':\n case 'job:finished':\n case 'job:log':\n if (data.queue) {\n data.queue = data.queue.replace('builds.', '');\n }\n return {\n job: data\n };\n case 'worker:added':\n case 'worker:updated':\n case 'worker:removed':\n return {\n worker: data\n };\n }\n },\n warn: function(type, warning) {\n if (!this.ignoreWarning(warning)) {\n return console.warn(warning);\n }\n },\n ignoreWarning: function(warning) {\n var message, _ref;\n if (message = (_ref = warning.data) != null ? _ref.message : void 0) {\n return message.indexOf('Existing subscription') === 0 || message.indexOf('No current subscription') === 0;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=pusher");minispade.register('routes', "(function() {(function() {\n var defaultRoute, lineNumberRoute, nonHashRouteMatcher, resolvePath;\nminispade.require('travis/location');\n\n defaultRoute = Ember.Route.extend({\n route: '/',\n index: 1000\n });\n\n lineNumberRoute = Ember.Route.extend({\n route: '#L:number',\n index: 1,\n connectOutlets: function(router) {\n return router.saveLineNumberHash();\n },\n routeMatcher: Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([0-9]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(regex);\n }\n });\n }\n }).cacheable()\n });\n\n nonHashRouteMatcher = Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([^/#]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(\"^/?\" + regex);\n }\n });\n }\n }).cacheable();\n\n resolvePath = function(manager, path) {\n var childStates, match, resolvedState, state, states;\n if (this.get('isLeafRoute')) {\n return Ember.A();\n }\n childStates = this.get('childStates');\n childStates = Ember.A(childStates.filterProperty('isRoutable'));\n childStates = childStates.sort(function(a, b) {\n var aDynamicSegments, aIndex, aRoute, bDynamicSegments, bIndex, bRoute;\n aDynamicSegments = a.get('routeMatcher.identifiers.length');\n bDynamicSegments = b.get('routeMatcher.identifiers.length');\n aRoute = a.get('route');\n bRoute = b.get('route');\n aIndex = a.get('index');\n bIndex = b.get('index');\n if (aIndex && bIndex) {\n return aIndex - bIndex;\n }\n if (aRoute.indexOf(bRoute) === 0) {\n return -1;\n } else if (bRoute.indexOf(aRoute) === 0) {\n return 1;\n }\n if (aDynamicSegments !== bDynamicSegments) {\n return aDynamicSegments - bDynamicSegments;\n }\n return b.get('route.length') - a.get('route.length');\n });\n match = null;\n state = childStates.find(function(state) {\n var matcher;\n matcher = state.get('routeMatcher');\n if (match = matcher.match(path)) {\n return match;\n }\n });\n Ember.assert(\"Could not find state for path \" + path, !!state);\n resolvedState = Ember._ResolvedState.create({\n manager: manager,\n state: state,\n match: match\n });\n states = state.resolvePath(manager, match.remaining);\n return Ember.A([resolvedState]).pushObjects(states);\n };\n\n Travis.Router = Ember.Router.extend({\n location: 'travis',\n enableLogging: true,\n initialState: 'loading',\n showRoot: Ember.Route.transitionTo('root.home.show'),\n showStats: Ember.Route.transitionTo('root.stats'),\n showRepo: Ember.Route.transitionTo('root.home.repo.show'),\n showBuilds: Ember.Route.transitionTo('root.home.repo.builds.index'),\n showBuild: Ember.Route.transitionTo('root.home.repo.builds.show'),\n showPullRequests: Ember.Route.transitionTo('root.home.repo.pullRequests'),\n showBranches: Ember.Route.transitionTo('root.home.repo.branches'),\n showEvents: Ember.Route.transitionTo('root.home.repo.events'),\n showJob: Ember.Route.transitionTo('root.home.repo.job'),\n showProfile: Ember.Route.transitionTo('root.profile'),\n showAccount: Ember.Route.transitionTo('root.profile.account'),\n showUserProfile: Ember.Route.transitionTo('root.profile.account.profile'),\n saveLineNumberHash: function(path) {\n return Ember.run.next(this, function() {\n var match;\n path = path || this.get('location').getURL();\n if (match = path.match(/#L\\d+$/)) {\n return this.set('repoController.lineNumberHash', match[0]);\n }\n });\n },\n reload: function() {\n var url;\n url = this.get('location').getURL();\n this.transitionTo('loading');\n return this.route(url);\n },\n signedIn: function() {\n return !!Travis.app.get('auth.user');\n },\n needsAuth: function(path) {\n return path.indexOf('/profile') === 0;\n },\n afterSignOut: function() {\n return this.authorize('/');\n },\n authorize: function(path) {\n if (!this.signedIn() && this.needsAuth(path)) {\n sessionStorage.setItem('travis.after_signin_path', path);\n this.transitionTo('root.auth');\n return Travis.app.autoSignIn();\n } else {\n this.transitionTo('root');\n return this.route(path);\n }\n },\n loading: Ember.Route.extend({\n routePath: function(router, path) {\n router.saveLineNumberHash(path);\n return router.authorize(path);\n }\n }),\n root: Ember.Route.extend({\n route: '/',\n loading: Ember.State.extend(),\n afterSignIn: (function() {}),\n auth: Ember.Route.extend({\n route: '/auth',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('authLayout');\n $('body').attr('id', 'auth');\n router.get('authLayoutController').connectOutlet('top', 'top');\n return router.get('authLayoutController').connectOutlet('main', 'signin');\n },\n afterSignIn: function(router) {\n var path;\n path = sessionStorage.getItem('travis.after_signin_path');\n sessionStorage.removeItem('travis.after_signin_path');\n router.transitionTo('root');\n return router.route(path || '/');\n }\n }),\n stats: Ember.Route.extend({\n route: '/stats',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('statsLayout');\n $('body').attr('id', 'stats');\n router.get('statsLayoutController').connectOutlet('top', 'top');\n return router.get('statsLayoutController').connectOutlet('main', 'stats');\n }\n }),\n profile: Ember.Route.extend({\n initialState: 'index',\n route: '/profile',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('profileLayout');\n $('body').attr('id', 'profile');\n router.get('accountsController').set('content', Travis.Account.find());\n router.get('profileLayoutController').connectOutlet('top', 'top');\n return router.get('profileLayoutController').connectOutlet('left', 'accounts');\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('profileLayoutController').connectOutlet('main', 'profile');\n return router.get('profileController').activate('hooks');\n }\n }),\n account: Ember.Route.extend({\n initialState: 'index',\n route: '/:login',\n connectOutlets: function(router, account) {\n var params;\n if (account) {\n params = {\n login: account.get('login')\n };\n return router.get('profileController').setParams(params);\n } else {\n return router.send('showProfile');\n }\n },\n deserialize: function(router, params) {\n var account, controller, deferred, observer;\n controller = router.get('accountsController');\n if (!controller.get('content')) {\n controller.set('content', Travis.Account.find());\n }\n account = controller.findByLogin(params.login);\n if (account) {\n return account;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (account = controller.findByLogin(params.login)) {\n controller.removeObserver('content.length', observer);\n return deferred.resolve(account);\n }\n };\n controller.addObserver('content.length', observer);\n return deferred.promise();\n }\n },\n serialize: function(router, account) {\n if (account) {\n return {\n login: account.get('login')\n };\n } else {\n return {};\n }\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('profileController').activate('hooks');\n }\n }),\n profile: Ember.Route.extend({\n route: '/profile',\n connectOutlets: function(router) {\n return router.get('profileController').activate('user');\n }\n })\n })\n }),\n home: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('homeLayout');\n $('body').attr('id', 'home');\n router.get('homeLayoutController').connectOutlet('left', 'repos');\n router.get('homeLayoutController').connectOutlet('right', 'sidebar');\n router.get('homeLayoutController').connectOutlet('top', 'top');\n router.get('homeLayoutController').connectOutlet('main', 'repo');\n router.get('homeLayoutController').connectOutlet('flash', 'flash');\n return router.get('repoController').set('repos', router.get('reposController'));\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n showWithLineNumber: Ember.Route.extend({\n route: '/#/L:number',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n }\n }),\n repo: Ember.Route.extend({\n route: '/:owner/:name',\n routeMatcher: nonHashRouteMatcher,\n connectOutlets: function(router, repo) {\n return router.get('repoController').set('repo', repo);\n },\n deserialize: function(router, params) {\n var deferred, observer, repos, slug;\n slug = \"\" + params.owner + \"/\" + params.name;\n repos = Travis.Repo.bySlug(slug);\n deferred = $.Deferred();\n observer = function() {\n if (repos.get('isLoaded')) {\n repos.removeObserver('isLoaded', observer);\n return deferred.resolve(repos.objectAt(0));\n }\n };\n if (repos.length) {\n deferred.resolve(repos[0]);\n } else {\n repos.addObserver('isLoaded', observer);\n }\n return deferred.promise();\n },\n serialize: function(router, repo) {\n if (repo) {\n return {\n owner: repo.get('owner'),\n name: repo.get('name')\n };\n } else {\n return {};\n }\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('current');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n builds: Ember.Route.extend({\n route: '/builds',\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('builds');\n }\n }),\n show: Ember.Route.extend({\n route: '/:build_id',\n connectOutlets: function(router, build) {\n if (!build.get) {\n build = Travis.Build.find(build);\n }\n router.get('repoController').set('build', build);\n return router.get('repoController').activate('build');\n },\n serialize: function(router, build) {\n if (build.get) {\n return {\n build_id: build.get('id')\n };\n } else {\n return {\n build_id: build\n };\n }\n },\n deserialize: function(router, params) {\n var build, deferred, observer;\n build = Travis.Build.find(params.build_id);\n if (build.get('id')) {\n return build;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (build.get('id')) {\n build.removeObserver('id', observer);\n return deferred.resolve(build);\n }\n };\n build.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n }),\n pullRequests: Ember.Route.extend({\n route: '/pull_requests',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('pull_requests');\n }\n }),\n branches: Ember.Route.extend({\n route: '/branches',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('branches');\n }\n }),\n events: Ember.Route.extend({\n route: '/events',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('events');\n }\n }),\n job: Ember.Route.extend({\n route: '/jobs/:job_id',\n connectOutlets: function(router, job) {\n if (!job.get) {\n job = Travis.Job.find(job);\n }\n router.get('repoController').set('job', job);\n return router.get('repoController').activate('job');\n },\n serialize: function(router, job) {\n if (job.get) {\n return {\n job_id: job.get('id')\n };\n } else {\n return {\n job_id: job\n };\n }\n },\n deserialize: function(router, params) {\n var deferred, job, observer;\n job = Travis.Job.find(params.job_id);\n if (job.get('id')) {\n return job;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (job.get('id')) {\n job.removeObserver('id', observer);\n return deferred.resolve(job);\n }\n };\n job.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n })\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=routes");minispade.register('slider', "(function() {(function() {\n\n this.Travis.Slider = function() {\n if ((typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.getItem('travis.maximized') : void 0) === 'true') {\n this.minimize();\n }\n return this;\n };\n\n $.extend(Travis.Slider.prototype, {\n persist: function() {\n return typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.setItem('travis.maximized', this.isMinimized()) : void 0;\n },\n isMinimized: function() {\n return $('body').hasClass('maximized');\n },\n minimize: function() {\n return $('body').addClass('maximized');\n },\n toggle: function() {\n var element;\n $('body').toggleClass('maximized');\n this.persist();\n element = $(' ');\n $('#top .profile').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=slider");minispade.register('store', "(function() {(function() {\n var DATA_PROXY,\n __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };\nminispade.require('store/rest_adapter');\n\n DATA_PROXY = {\n get: function(name) {\n return this.savedData[name];\n }\n };\n\n Travis.Store = DS.Store.extend({\n revision: 4,\n adapter: Travis.RestAdapter.create(),\n load: function(type, id, hash) {\n var record, result;\n result = this._super.apply(this, arguments);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n record.set('incomplete', false);\n record.set('complete', true);\n }\n return result;\n },\n merge: function(type, id, hash) {\n var clientId, data, dataCache, primaryKey, record, recordCache, typeMap;\n if (hash === void 0) {\n hash = id;\n primaryKey = type.proto().primaryKey;\n Ember.assert(\"A data hash was loaded for a record of type \" + type.toString() + \" but no primary key '\" + primaryKey + \"' was provided.\", hash[primaryKey]);\n id = hash[primaryKey];\n }\n typeMap = this.typeMapFor(type);\n dataCache = typeMap.cidToHash;\n clientId = typeMap.idToCid[id];\n recordCache = this.get('recordCache');\n if (clientId !== void 0) {\n if (data = dataCache[clientId]) {\n $.extend(data, hash);\n } else {\n dataCache[clientId] = hash;\n }\n if (record = recordCache[clientId]) {\n record.send('didChangeData');\n }\n } else {\n clientId = this.pushHash(hash, id, type);\n }\n if (clientId) {\n DATA_PROXY.savedData = hash;\n this.updateRecordArrays(type, clientId, DATA_PROXY);\n return {\n id: id,\n clientId: clientId\n };\n }\n },\n receive: function(event, data) {\n var job, mappings, name, type, _ref;\n _ref = event.split(':'), name = _ref[0], type = _ref[1];\n mappings = this.adapter.get('mappings');\n type = mappings[name];\n if (event === 'job:log') {\n if (job = this.find(Travis.Job, data['job']['id'])) {\n return job.appendLog(data['job']['_log']);\n }\n } else if (data[type.singularName()]) {\n return this._loadOne(this, type, data);\n } else if (data[type.pluralName()]) {\n return this._loadMany(this, type, data);\n } else {\n if (!type) {\n throw \"can't load data for \" + name;\n }\n }\n },\n _loadOne: function(store, type, json) {\n var result, root;\n root = type.singularName();\n if (type === Travis.Build && json.repository) {\n result = this.loadIncomplete(Travis.Repo, json.repository);\n }\n return this.loadIncomplete(type, json[root]);\n },\n loadIncomplete: function(type, hash) {\n var record, result;\n result = this.merge(type, hash);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n if (!record.get('complete')) {\n record.set('incomplete', true);\n record.loadedAttributes = Object.keys(hash);\n }\n this._updateAssociations(type, type.singularName(), hash);\n return record;\n }\n },\n _loadMany: function(store, type, json) {\n var root;\n root = type.pluralName();\n this.adapter.sideload(store, type, json, root);\n return this.loadMany(type, json[root]);\n },\n _updateAssociations: function(type, name, data) {\n var _this = this;\n return Em.get(type, 'associationsByName').forEach(function(key, meta) {\n var clientId, dataProxy, id, ids, parent, _ref;\n if (meta.kind === 'belongsTo') {\n id = data[\"\" + key + \"_id\"];\n if (clientId = _this.typeMapFor(meta.type).idToCid[id]) {\n if (parent = _this.findByClientId(meta.type, clientId, id)) {\n dataProxy = parent.get('data');\n if (ids = dataProxy.get(\"\" + name + \"_ids\")) {\n if (_ref = data.id, __indexOf.call(ids, _ref) < 0) {\n ids.pushObject(data.id);\n }\n return parent.send('didChangeData');\n }\n }\n }\n }\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store");minispade.register('store/fixture_adapter', "(function() {(function() {\n\n this.Travis.FixtureAdapter = DS.Adapter.extend({\n find: function(store, type, id) {\n var fixtures;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n if (fixtures.hasLoaded) {\n return;\n }\n return setTimeout((function() {\n store.loadMany(type, fixtures);\n return fixtures.hasLoaded = true;\n }), 300);\n },\n findMany: function() {\n return this.find.apply(this, arguments);\n },\n findAll: function(store, type) {\n var fixtures, ids;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n ids = fixtures.map(function(item, index, self) {\n return item.id;\n });\n return store.loadMany(type, ids, fixtures);\n },\n findQuery: function(store, type, params, array) {\n var fixture, fixtures, hashes, key, matches, value;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n hashes = (function() {\n var _i, _len, _results;\n _results = [];\n for (_i = 0, _len = fixtures.length; _i < _len; _i++) {\n fixture = fixtures[_i];\n matches = (function() {\n var _results1;\n _results1 = [];\n for (key in params) {\n value = params[key];\n _results1.push(key === 'orderBy' || fixture[key] === value);\n }\n return _results1;\n })();\n if (matches.reduce(function(a, b) {\n return a && b;\n })) {\n _results.push(fixture);\n } else {\n _results.push(null);\n }\n }\n return _results;\n })();\n return array.load(hashes.compact());\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/fixture_adapter");minispade.register('store/rest_adapter', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('models');\n\n this.Travis.RestAdapter = DS.RESTAdapter.extend({\n mappings: {\n repositories: Travis.Repo,\n repository: Travis.Repo,\n repos: Travis.Repo,\n repo: Travis.Repo,\n builds: Travis.Build,\n build: Travis.Build,\n commits: Travis.Commit,\n commit: Travis.Commit,\n jobs: Travis.Job,\n job: Travis.Job,\n account: Travis.Account,\n accounts: Travis.Account,\n worker: Travis.Worker,\n workers: Travis.Worker\n },\n plurals: {\n repositories: 'repositories',\n repository: 'repositories',\n repo: 'repos',\n repos: 'repos',\n build: 'builds',\n branch: 'branches',\n job: 'jobs',\n worker: 'workers',\n profile: 'profile'\n },\n ajax: function() {\n return Travis.ajax.ajax.apply(this, arguments);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/rest_adapter");minispade.register('tailing', "(function() {(function() {\n\n this.Travis.Tailing = function() {\n this.position = $(window).scrollTop();\n $(window).scroll(this.onScroll.bind(this));\n return this;\n };\n\n $.extend(Travis.Tailing.prototype, {\n options: {\n timeout: 200\n },\n run: function() {\n this.autoScroll();\n this.positionButton();\n if (this.active()) {\n return Ember.run.later(this.run.bind(this), this.options.timeout);\n }\n },\n toggle: function(event) {\n if (this.active()) {\n return this.stop();\n } else {\n return this.start();\n }\n },\n active: function() {\n return $('#tail').hasClass('active');\n },\n start: function() {\n $('#tail').addClass('active');\n return this.run();\n },\n stop: function() {\n return $('#tail').removeClass('active');\n },\n autoScroll: function() {\n var log, logBottom, win, winBottom;\n if (!this.active()) {\n return;\n }\n win = $(window);\n log = $('#log');\n logBottom = log.offset().top + log.outerHeight() + 40;\n winBottom = win.scrollTop() + win.height();\n if (logBottom - winBottom > 0) {\n return win.scrollTop(logBottom - win.height());\n }\n },\n onScroll: function() {\n var position;\n this.positionButton();\n position = $(window).scrollTop();\n if (position < this.position) {\n this.stop();\n }\n return this.position = position;\n },\n positionButton: function() {\n var max, offset, tail;\n tail = $('#tail');\n if (tail.length === 0) {\n return;\n }\n offset = $(window).scrollTop() - $('#log').offset().top;\n max = $('#log').height() - $('#tail').height() + 5;\n if (offset > max) {\n offset = max;\n }\n if (offset > 0) {\n return tail.css({\n top: offset - 2\n });\n } else {\n return tail.css({\n top: 0\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=tailing");minispade.register('views', "(function() {(function() {\nminispade.require('ext/ember/namespace');\n\n this.Travis.reopen({\n View: Em.View.extend({\n popup: function(event) {\n this.popupCloseAll();\n return $(\"#\" + event.target.name).toggleClass('display');\n },\n popupClose: function(event) {\n return $(event.target).closest('.popup').removeClass('display');\n },\n popupCloseAll: function() {\n return $('.popup').removeClass('display');\n }\n })\n });\n\n this.Travis.reopen({\n HomeLayoutView: Travis.View.extend({\n templateName: 'layouts/home'\n }),\n AuthLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n }),\n ProfileLayoutView: Travis.View.extend({\n templateName: 'layouts/profile'\n }),\n StatsLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n })\n });\nminispade.require('views/accounts');\nminispade.require('views/application');\nminispade.require('views/build');\nminispade.require('views/events');\nminispade.require('views/flash');\nminispade.require('views/job');\nminispade.require('views/repo');\nminispade.require('views/profile');\nminispade.require('views/sidebar');\nminispade.require('views/stats');\nminispade.require('views/signin');\nminispade.require('views/top');\n\n}).call(this);\n\n})();\n//@ sourceURL=views");minispade.register('views/accounts', "(function() {(function() {\n\n this.Travis.reopen({\n AccountsView: Travis.View.extend({\n tabBinding: 'controller.tab',\n templateName: 'profile/accounts',\n classAccounts: (function() {\n if (this.get('tab') === 'accounts') {\n return 'active';\n }\n }).property('tab')\n }),\n AccountsListView: Em.CollectionView.extend({\n elementId: 'accounts',\n accountBinding: 'content',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n accountBinding: 'content',\n typeBinding: 'content.type',\n selectedBinding: 'account.selected',\n classNames: ['account'],\n classNameBindings: ['type', 'selected'],\n name: (function() {\n return this.get('content.name') || this.get('content.login');\n }).property('content.login', 'content.name'),\n urlAccount: (function() {\n return Travis.Urls.account(this.get('account.login'));\n }).property('account.login')\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/accounts");minispade.register('views/application', "(function() {(function() {\n\n this.Travis.reopen({\n ApplicationView: Travis.View.extend({\n templateName: 'application',\n classNames: ['application'],\n popup: function(event) {\n return console.log(event);\n },\n localeDidChange: (function() {\n var locale;\n if (locale = Travis.app.get('auth.user.locale')) {\n Travis.setLocale(locale);\n return Travis.app.get('router').reload();\n }\n }).observes('Travis.app.auth.user.locale'),\n click: function(event) {\n var targetAndParents;\n targetAndParents = $(event.target).parents().andSelf();\n if (!(targetAndParents.hasClass('open-popup') || targetAndParents.hasClass('popup'))) {\n this.popupCloseAll();\n }\n if (!targetAndParents.hasClass('menu')) {\n return $('.menu').removeClass('display');\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/application");minispade.register('views/build', "(function() {(function() {\n\n this.Travis.reopen({\n BuildsView: Travis.View.extend({\n templateName: 'builds/list',\n buildsBinding: 'controller.builds',\n showMore: function() {\n var id, number;\n id = this.get('controller.repo.id');\n number = this.get('builds.lastObject.number');\n return this.get('builds').load(Travis.Build.olderThanNumber(id, number));\n },\n ShowMoreButton: Em.View.extend({\n tagName: 'button',\n classNameBindings: ['isLoading'],\n attributeBindings: ['disabled'],\n isLoadingBinding: 'controller.builds.isLoading',\n template: Em.Handlebars.compile('{{view.label}}'),\n disabledBinding: 'isLoading',\n label: (function() {\n if (this.get('isLoading')) {\n return 'Loading';\n } else {\n return 'Show more';\n }\n }).property('isLoading'),\n click: function() {\n return this.get('parentView').showMore();\n }\n })\n }),\n BuildsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'controller.repo',\n buildBinding: 'context',\n commitBinding: 'build.commit',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha')\n }),\n BuildView: Travis.View.extend({\n templateName: 'builds/show',\n elementId: 'build',\n classNameBindings: ['color', 'loading'],\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n commitBinding: 'build.commit',\n currentItemBinding: 'build',\n loading: (function() {\n return !this.get('build.isComplete');\n }).property('build.isComplete'),\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/build");minispade.register('views/events', "(function() {(function() {\n\n this.Travis.reopen({\n EventsView: Travis.View.extend({\n templateName: 'events/list',\n eventsBinding: 'controller.events'\n }),\n EventsItemView: Travis.View.extend({\n tagName: 'tr'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/events");minispade.register('views/flash', "(function() {(function() {\n\n this.Travis.reopen({\n FlashView: Travis.View.extend({\n elementId: 'flash',\n tagName: 'ul',\n templateName: 'layouts/flash'\n }),\n FlashItemView: Travis.View.extend({\n tagName: 'li',\n classNameBindings: ['type'],\n type: (function() {\n return this.get('flash') && Ember.keys(this.get('flash'))[0];\n }).property('flash'),\n message: (function() {\n return this.get('flash') && this.get('flash')[this.get('type')];\n }).property('flash'),\n close: function(event) {\n return this.get('controller').removeObject(this.get('flash'));\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/flash");minispade.register('views/job', "(function() {(function() {\n\n this.Travis.reopen({\n JobsView: Travis.View.extend({\n templateName: 'jobs/list',\n buildBinding: 'controller.build'\n }),\n JobsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'context.repo',\n jobBinding: 'context',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id')\n }),\n JobView: Travis.View.extend({\n templateName: 'jobs/show',\n repoBinding: 'controller.repo',\n jobBinding: 'controller.job',\n commitBinding: 'job.commit',\n currentItemBinding: 'job',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n }),\n LogView: Travis.View.extend({\n templateName: 'jobs/log',\n logBinding: 'job.log',\n scrollTo: function(hash) {\n $('#main').scrollTop(0);\n $('html,body').scrollTop($(hash).offset().top);\n return this.set('controller.lineNumberHash', null);\n },\n lineNumberHashDidChange: (function() {\n return this.tryScrollingToHashLineNumber();\n }).observes('controller.lineNumberHash'),\n tryScrollingToHashLineNumber: function() {\n var checker, hash, self;\n if (hash = this.get('controller.lineNumberHash')) {\n self = this;\n checker = function() {\n if (self.get('isDestroyed')) {\n return;\n }\n if ($(hash).length) {\n return self.scrollTo(hash);\n } else {\n return setTimeout(checker, 100);\n }\n };\n return checker();\n }\n },\n didInsertElement: function() {\n this._super.apply(this, arguments);\n return this.tryScrollingToHashLineNumber();\n },\n click: function(event) {\n var path, target;\n target = $(event.target);\n target.closest('.fold').toggleClass('open');\n if (target.is('.log-line-number')) {\n path = target.attr('href');\n Travis.app.get('router').route(path);\n event.stopPropagation();\n return false;\n }\n },\n toTop: function() {\n return $(window).scrollTop(0);\n },\n jobBinding: 'context',\n toggleTailing: function(event) {\n Travis.app.tailing.toggle();\n return event.preventDefault();\n },\n logSubscriber: (function() {\n var job, state;\n job = this.get('job');\n state = this.get('job.state');\n if (job && state !== 'finished') {\n job.subscribe();\n }\n return null;\n }).property('job', 'job.state')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/job");minispade.register('views/left', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n tabBinding: 'controller.tab',\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/left");minispade.register('views/profile', "(function() {(function() {\n\n this.Travis.reopen({\n ProfileView: Travis.View.extend({\n templateName: 'profile/show',\n accountBinding: 'controller.account',\n name: (function() {\n return this.get('account.name') || this.get('account.login');\n }).property('account.name', 'account.login')\n }),\n ProfileTabsView: Travis.View.extend({\n templateName: 'profile/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classHooks: (function() {\n if (this.get('tab') === 'hooks') {\n return 'active';\n }\n }).property('tab'),\n classUser: (function() {\n if (this.get('tab') === 'user') {\n return 'active';\n }\n }).property('tab'),\n accountBinding: 'controller.account',\n displayUser: (function() {\n return this.get('controller.account.login') === this.get('controller.user.login');\n }).property('controller.account.login', 'controller.user.login')\n }),\n HooksView: Travis.View.extend({\n templateName: 'profile/tabs/hooks',\n userBinding: 'controller.user',\n urlGithubAdmin: (function() {\n return Travis.Urls.githubAdmin(this.get('hook.slug'));\n }).property('hook.slug')\n }),\n UserView: Travis.View.extend({\n templateName: 'profile/tabs/user',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=48&d=mm\";\n }).property('user.gravatarId'),\n locales: (function() {\n return [\n {\n key: null,\n name: ''\n }, {\n key: 'en',\n name: 'English'\n }, {\n key: 'ca',\n name: 'Catalan'\n }, {\n key: 'cs',\n name: 'Čeština'\n }, {\n key: 'es',\n name: 'Español'\n }, {\n key: 'fr',\n name: 'Français'\n }, {\n key: 'ja',\n name: '日本語'\n }, {\n key: 'nl',\n name: 'Nederlands'\n }, {\n key: 'nb',\n name: 'Norsk Bokmål'\n }, {\n key: 'pl',\n name: 'Polski'\n }, {\n key: {\n 'pt-BR': {\n name: 'Português brasileiro'\n }\n }\n }, {\n key: 'ru',\n name: 'Русский'\n }\n ];\n }).property(),\n saveLocale: function(event) {\n return this.get('user').updateLocale($('#locale').val());\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/profile");minispade.register('views/repo', "(function() {(function() {\nminispade.require('views/repo/list');\nminispade.require('views/repo/show');\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo");minispade.register('views/repo/list', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n toggleInfo: function(event) {\n return $('#repos').toggleClass('open');\n }\n }),\n ReposListView: Em.CollectionView.extend({\n elementId: 'repos',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n repoBinding: 'content',\n classNames: ['repo'],\n classNameBindings: ['color', 'selected'],\n selectedBinding: 'repo.selected',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('repo.lastBuildResult'));\n }).property('repo.lastBuildResult'),\n urlRepo: (function() {\n return Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlLastBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('repo.lastBuildId'));\n }).property('repo.slug', 'repo.lastBuildId')\n })\n }),\n ReposListTabsView: Travis.View.extend({\n templateName: 'repos/list/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.app.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/list");minispade.register('views/repo/show', "(function() {(function() {\n\n this.Travis.reopen({\n RepoView: Travis.View.extend({\n templateName: 'repos/show',\n reposBinding: 'controller.repos',\n repoBinding: 'controller.repo',\n \"class\": (function() {\n if (!this.get('repo.isComplete') && !this.get('isEmpty')) {\n return 'loading';\n }\n }).property('repo.isComplete'),\n isEmpty: (function() {\n return this.get('repos.length') === 0;\n }).property('repos.length'),\n urlGithub: (function() {\n return Travis.Urls.githubRepo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubWatchers: (function() {\n return Travis.Urls.githubWatchers(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubNetwork: (function() {\n return Travis.Urls.githubNetwork(this.get('repo.slug'));\n }).property('repo.slug')\n }),\n ReposEmptyView: Travis.View.extend({\n template: ''\n }),\n RepoShowTabsView: Travis.View.extend({\n templateName: 'repos/show/tabs',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n classCurrent: (function() {\n if (this.get('tab') === 'current') {\n return 'active';\n }\n }).property('tab'),\n classBuilds: (function() {\n if (this.get('tab') === 'builds') {\n return 'active';\n }\n }).property('tab'),\n classPullRequests: (function() {\n if (this.get('tab') === 'pull_requests') {\n return 'active';\n }\n }).property('tab'),\n classBranches: (function() {\n if (this.get('tab') === 'branches') {\n return 'active';\n }\n }).property('tab'),\n classEvents: (function() {\n if (this.get('tab') === 'events') {\n return 'active';\n }\n }).property('tab'),\n classBuild: (function() {\n var classes, tab;\n tab = this.get('tab');\n classes = [];\n if (tab === 'build') {\n classes.push('active');\n }\n if (tab === 'build' || tab === 'job') {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab'),\n classJob: (function() {\n if (this.get('tab') === 'job') {\n return 'active display-inline';\n }\n }).property('tab')\n }),\n RepoShowToolsView: Travis.View.extend({\n templateName: 'repos/show/tools',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n closeMenu: function() {\n return $('.menu').removeClass('display');\n },\n menu: function(event) {\n var element;\n this.popupCloseAll();\n element = $('#tools .menu').toggleClass('display');\n return event.stopPropagation();\n },\n requeue: function() {\n this.closeMenu();\n return this.get('build').requeue();\n },\n statusImages: function(event) {\n this.set('active', true);\n this.closeMenu();\n this.popup(event);\n return event.stopPropagation();\n },\n canPush: (function() {\n return this.get('isBuildTab') && this.get('build.isFinished') && this.get('hasPushPermissions');\n }).property('build.isFinished', 'hasPushPermissions', 'isBuildTab'),\n isBuildTab: (function() {\n return ['current', 'build', 'job'].indexOf(this.get('tab')) > -1;\n }).property('tab'),\n hasPushPermissions: (function() {\n var permissions;\n if (permissions = Travis.app.get('currentUser.permissions')) {\n return permissions.indexOf(this.get('repo.id')) > -1;\n }\n }).property('Travis.app.currentUser.permissions.length', 'repo.id'),\n branches: (function() {\n if (this.get('active')) {\n return this.get('repo.branches');\n }\n }).property('active', 'repo.branches'),\n urlRepo: (function() {\n return 'https://' + location.host + Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlStatusImage: (function() {\n return Travis.Urls.statusImage(this.get('repo.slug'), this.get('branch.commit.branch'));\n }).property('repo.slug', 'branch'),\n markdownStatusImage: (function() {\n return \"[) + \")](\" + (this.get('urlRepo')) + \")\";\n }).property('urlStatusImage'),\n textileStatusImage: (function() {\n return \"!\" + (this.get('urlStatusImage')) + \"!:\" + (this.get('urlRepo'));\n }).property('urlStatusImage'),\n rdocStatusImage: (function() {\n return \"{ }[\" + (this.get('urlRepo')) + \"]\";\n }).property('urlStatusImage')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/show");minispade.register('views/sidebar', "(function() {(function() {\n\n this.Travis.reopen({\n SidebarView: Travis.View.extend({\n templateName: 'layouts/sidebar',\n DecksView: Em.View.extend({\n templateName: \"sponsors/decks\",\n controller: Travis.SponsorsController.create({\n perPage: 1\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n Travis.app.get('router.sidebarController').tickables.push(controller);\n controller.set('content', Travis.Sponsor.decks());\n }\n return this._super.apply(this, arguments);\n }\n }),\n LinksView: Em.View.extend({\n templateName: \"sponsors/links\",\n controller: Travis.SponsorsController.create({\n perPage: 6\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n controller.set('content', Travis.Sponsor.links());\n Travis.app.get('router.sidebarController').tickables.push(controller);\n }\n return this._super.apply(this, arguments);\n }\n }),\n WorkersView: Em.View.extend({\n templateName: 'workers/list',\n controller: Travis.WorkersController.create(),\n didInsertElement: function() {\n this.set('controller.content', Travis.Worker.find());\n return this._super.apply(this, arguments);\n }\n }),\n QueuesView: Em.View.extend({\n templateName: 'queues/list',\n controller: Em.ArrayController.create(),\n didInsertElement: function() {\n var queue, queues;\n queues = (function() {\n var _i, _len, _ref, _results;\n _ref = Travis.QUEUES;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n queue = _ref[_i];\n _results.push(Em.ArrayController.create({\n content: Travis.Job.queued(queue.name),\n id: \"queue_\" + queue.name,\n name: queue.display\n }));\n }\n return _results;\n })();\n this.set('controller.content', queues);\n return this._super.apply(this, arguments);\n }\n })\n }),\n WorkersView: Travis.View.extend({\n toggleWorkers: function(event) {\n var handle;\n handle = $(event.target).toggleClass('open');\n if (handle.hasClass('open')) {\n return $('#workers li').addClass('open');\n } else {\n return $('#workers li').removeClass('open');\n }\n }\n }),\n WorkersListView: Travis.View.extend({\n toggle: function(event) {\n return $(event.target).closest('li').toggleClass('open');\n }\n }),\n WorkersItemView: Travis.View.extend({\n display: (function() {\n var name, number, payload, repo, state;\n name = (this.get('worker.name') || '').replace('travis-', '');\n state = this.get('worker.state');\n payload = this.get('worker.payload');\n if (state === 'working' && (payload != null ? payload.repository : void 0) && (payload != null ? payload.build : void 0)) {\n repo = payload.repository.slug;\n number = ' #' + payload.build.number;\n return (\"\" + name + \": \" + repo + \" \" + number).htmlSafe();\n } else {\n return \"\" + name + \": \" + state;\n }\n }).property('worker.state')\n }),\n QueueItemView: Travis.View.extend({\n tagName: 'li'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/sidebar");minispade.register('views/signin', "(function() {(function() {\n\n this.Travis.reopen({\n SigninView: Travis.View.extend({\n templateName: 'auth/signin',\n signingIn: (function() {\n return Travis.app.get('authState') === 'signing-in';\n }).property('Travis.app.authState')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/signin");minispade.register('views/stats', "(function() {(function() {\n\n this.Travis.reopen({\n StatsView: Travis.View.extend({\n templateName: 'stats/show',\n didInsertElement: function() {},\n renderChart: function(config) {\n var chart;\n chart = new Highcharts.Chart(config);\n return this.fetch(config.source, function(data) {\n var stats;\n stats = (function() {\n var _i, _len, _ref, _results;\n _ref = data.stats;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n stats = _ref[_i];\n _results.push(config.map(stats));\n }\n return _results;\n })();\n return chart.series[0].setData(stats);\n });\n },\n fetch: function(url, callback) {\n return $.ajax({\n type: 'GET',\n url: url,\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n },\n success: callback\n });\n },\n CHARTS: {\n repos: {\n source: '/api/stats/repos',\n total: 0,\n map: function(data) {\n return [Date.parse(data.date), this.total += parseInt(data.count)];\n },\n chart: {\n renderTo: \"repos_stats\"\n },\n title: {\n text: \"Total Projects/Repositories\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" repos\";\n }\n },\n series: [\n {\n name: \"Repository Growth\",\n data: []\n }\n ]\n },\n builds: {\n source: '/api/stats/tests',\n map: function(data) {\n return [Date.parse(data.date), parseInt(data.count)];\n },\n chart: {\n renderTo: \"tests_stats\",\n type: \"column\"\n },\n title: {\n text: \"Build Count\"\n },\n subtitle: {\n text: \"last month\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" builds\";\n }\n },\n series: [\n {\n name: \"Total Builds\",\n data: []\n }\n ]\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/stats");minispade.register('views/top', "(function() {(function() {\n\n this.Travis.reopen({\n TopView: Travis.View.extend({\n templateName: 'layouts/top',\n tabBinding: 'controller.tab',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=24&d=mm\";\n }).property('user.gravatarId'),\n classHome: (function() {\n if (this.get('tab') === 'home') {\n return 'active';\n }\n }).property('tab'),\n classStats: (function() {\n if (this.get('tab') === 'stats') {\n return 'active';\n }\n }).property('tab'),\n classProfile: (function() {\n var classes;\n classes = ['profile'];\n if (this.get('tab') === 'profile') {\n classes.push('active');\n }\n classes.push(Travis.app.get('authState'));\n return classes.join(' ');\n }).property('tab', 'Travis.app.authState'),\n showProfile: function() {\n return $('#top .profile ul').show();\n },\n hideProfile: function() {\n return $('#top .profile ul').hide();\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/top");minispade.register('config/emoij', "(function() {(function() {\n\n this.EmojiDictionary = ['-1', '0', '1', '109', '2', '3', '4', '5', '6', '7', '8', '8ball', '9', 'a', 'ab', 'airplane', 'alien', 'ambulance', 'angel', 'anger', 'angry', 'apple', 'aquarius', 'aries', 'arrow_backward', 'arrow_down', 'arrow_forward', 'arrow_left', 'arrow_lower_left', 'arrow_lower_right', 'arrow_right', 'arrow_up', 'arrow_upper_left', 'arrow_upper_right', 'art', 'astonished', 'atm', 'b', 'baby', 'baby_chick', 'baby_symbol', 'balloon', 'bamboo', 'bank', 'barber', 'baseball', 'basketball', 'bath', 'bear', 'beer', 'beers', 'beginner', 'bell', 'bento', 'bike', 'bikini', 'bird', 'birthday', 'black_square', 'blue_car', 'blue_heart', 'blush', 'boar', 'boat', 'bomb', 'book', 'boot', 'bouquet', 'bow', 'bowtie', 'boy', 'bread', 'briefcase', 'broken_heart', 'bug', 'bulb', 'bullettrain_front', 'bullettrain_side', 'bus', 'busstop', 'cactus', 'cake', 'calling', 'camel', 'camera', 'cancer', 'capricorn', 'car', 'cat', 'cd', 'chart', 'checkered_flag', 'cherry_blossom', 'chicken', 'christmas_tree', 'church', 'cinema', 'city_sunrise', 'city_sunset', 'clap', 'clapper', 'clock1', 'clock10', 'clock11', 'clock12', 'clock2', 'clock3', 'clock4', 'clock5', 'clock6', 'clock7', 'clock8', 'clock9', 'closed_umbrella', 'cloud', 'clubs', 'cn', 'cocktail', 'coffee', 'cold_sweat', 'computer', 'confounded', 'congratulations', 'construction', 'construction_worker', 'convenience_store', 'cool', 'cop', 'copyright', 'couple', 'couple_with_heart', 'couplekiss', 'cow', 'crossed_flags', 'crown', 'cry', 'cupid', 'currency_exchange', 'curry', 'cyclone', 'dancer', 'dancers', 'dango', 'dart', 'dash', 'de', 'department_store', 'diamonds', 'disappointed', 'dog', 'dolls', 'dolphin', 'dress', 'dvd', 'ear', 'ear_of_rice', 'egg', 'eggplant', 'egplant', 'eight_pointed_black_star', 'eight_spoked_asterisk', 'elephant', 'email', 'es', 'european_castle', 'exclamation', 'eyes', 'factory', 'fallen_leaf', 'fast_forward', 'fax', 'fearful', 'feelsgood', 'feet', 'ferris_wheel', 'finnadie', 'fire', 'fire_engine', 'fireworks', 'fish', 'fist', 'flags', 'flushed', 'football', 'fork_and_knife', 'fountain', 'four_leaf_clover', 'fr', 'fries', 'frog', 'fuelpump', 'gb', 'gem', 'gemini', 'ghost', 'gift', 'gift_heart', 'girl', 'goberserk', 'godmode', 'golf', 'green_heart', 'grey_exclamation', 'grey_question', 'grin', 'guardsman', 'guitar', 'gun', 'haircut', 'hamburger', 'hammer', 'hamster', 'hand', 'handbag', 'hankey', 'hash', 'headphones', 'heart', 'heart_decoration', 'heart_eyes', 'heartbeat', 'heartpulse', 'hearts', 'hibiscus', 'high_heel', 'horse', 'hospital', 'hotel', 'hotsprings', 'house', 'hurtrealbad', 'icecream', 'id', 'ideograph_advantage', 'imp', 'information_desk_person', 'iphone', 'it', 'jack_o_lantern', 'japanese_castle', 'joy', 'jp', 'key', 'kimono', 'kiss', 'kissing_face', 'kissing_heart', 'koala', 'koko', 'kr', 'leaves', 'leo', 'libra', 'lips', 'lipstick', 'lock', 'loop', 'loudspeaker', 'love_hotel', 'mag', 'mahjong', 'mailbox', 'man', 'man_with_gua_pi_mao', 'man_with_turban', 'maple_leaf', 'mask', 'massage', 'mega', 'memo', 'mens', 'metal', 'metro', 'microphone', 'minidisc', 'mobile_phone_off', 'moneybag', 'monkey', 'monkey_face', 'moon', 'mortar_board', 'mount_fuji', 'mouse', 'movie_camera', 'muscle', 'musical_note', 'nail_care', 'necktie', 'new', 'no_good', 'no_smoking', 'nose', 'notes', 'o', 'o2', 'ocean', 'octocat', 'octopus', 'oden', 'office', 'ok', 'ok_hand', 'ok_woman', 'older_man', 'older_woman', 'open_hands', 'ophiuchus', 'palm_tree', 'parking', 'part_alternation_mark', 'pencil', 'penguin', 'pensive', 'persevere', 'person_with_blond_hair', 'phone', 'pig', 'pill', 'pisces', 'plus1', 'point_down', 'point_left', 'point_right', 'point_up', 'point_up_2', 'police_car', 'poop', 'post_office', 'postbox', 'pray', 'princess', 'punch', 'purple_heart', 'question', 'rabbit', 'racehorse', 'radio', 'rage', 'rage1', 'rage2', 'rage3', 'rage4', 'rainbow', 'raised_hands', 'ramen', 'red_car', 'red_circle', 'registered', 'relaxed', 'relieved', 'restroom', 'rewind', 'ribbon', 'rice', 'rice_ball', 'rice_cracker', 'rice_scene', 'ring', 'rocket', 'roller_coaster', 'rose', 'ru', 'runner', 'sa', 'sagittarius', 'sailboat', 'sake', 'sandal', 'santa', 'satellite', 'satisfied', 'saxophone', 'school', 'school_satchel', 'scissors', 'scorpius', 'scream', 'seat', 'secret', 'shaved_ice', 'sheep', 'shell', 'ship', 'shipit', 'shirt', 'shit', 'shoe', 'signal_strength', 'six_pointed_star', 'ski', 'skull', 'sleepy', 'slot_machine', 'smile', 'smiley', 'smirk', 'smoking', 'snake', 'snowman', 'sob', 'soccer', 'space_invader', 'spades', 'spaghetti', 'sparkler', 'sparkles', 'speaker', 'speedboat', 'squirrel', 'star', 'star2', 'stars', 'station', 'statue_of_liberty', 'stew', 'strawberry', 'sunflower', 'sunny', 'sunrise', 'sunrise_over_mountains', 'surfer', 'sushi', 'suspect', 'sweat', 'sweat_drops', 'swimmer', 'syringe', 'tada', 'tangerine', 'taurus', 'taxi', 'tea', 'telephone', 'tennis', 'tent', 'thumbsdown', 'thumbsup', 'ticket', 'tiger', 'tm', 'toilet', 'tokyo_tower', 'tomato', 'tongue', 'top', 'tophat', 'traffic_light', 'train', 'trident', 'trophy', 'tropical_fish', 'truck', 'trumpet', 'tshirt', 'tulip', 'tv', 'u5272', 'u55b6', 'u6307', 'u6708', 'u6709', 'u6e80', 'u7121', 'u7533', 'u7a7a', 'umbrella', 'unamused', 'underage', 'unlock', 'up', 'us', 'v', 'vhs', 'vibration_mode', 'virgo', 'vs', 'walking', 'warning', 'watermelon', 'wave', 'wc', 'wedding', 'whale', 'wheelchair', 'white_square', 'wind_chime', 'wink', 'wink2', 'wolf', 'woman', 'womans_hat', 'womens', 'x', 'yellow_heart', 'zap', 'zzz'];\n\n}).call(this);\n\n})();\n//@ sourceURL=config/emoij");minispade.register('data/sponsors', "(function() {(function() {\n\n this.Travis.SPONSORS = [\n {\n type: 'platinum',\n url: \"http://www.wooga.com\",\n image: \"wooga-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://bendyworks.com\",\n image: \"bendyworks-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://cloudcontrol.com\",\n image: \"cloudcontrol-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://xing.de\",\n image: \"xing-205x130.png\"\n }, {\n type: 'gold',\n url: \"http://heroku.com\",\n image: \"heroku-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://soundcloud.com\",\n image: \"soundcloud-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://nedap.com\",\n image: \"nedap-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://mongohq.com\",\n image: \"mongohq-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://zweitag.de\",\n image: \"zweitag-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://kanbanery.com\",\n image: \"kanbanery-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://ticketevolution.com\",\n image: \"ticketevolution-205x60.jpg\"\n }, {\n type: 'gold',\n url: \"http://plan.io/travis\",\n image: \"planio-205x60.png\"\n }, {\n type: 'silver',\n link: \"Cobot : The one tool to run your coworking space \"\n }, {\n type: 'silver',\n link: \"JumpstartLab : We build developers \"\n }, {\n type: 'silver',\n link: \"Evil Martians : Agile Ruby on Rails development \"\n }, {\n type: 'silver',\n link: \"Zendesk : Love your helpdesk \"\n }, {\n type: 'silver',\n link: \"Stripe : Payments for developers \"\n }, {\n type: 'silver',\n link: \"Basho : We make Riak! \"\n }, {\n type: 'silver',\n link: \"Relevance : We deliver software solutions \"\n }, {\n type: 'silver',\n link: \"Mindmatters : Software für Menschen \"\n }, {\n type: 'silver',\n link: \"Amen : The best and worst of everything \"\n }, {\n type: 'silver',\n link: \"Site5 : Premium Web Hosting Solutions \"\n }, {\n type: 'silver',\n link: \"Crowd Interactive : Leading Rails consultancy in Mexico \"\n }, {\n type: 'silver',\n link: \"Atomic Object : Work with really smart people \"\n }, {\n type: 'silver',\n link: \"Codeminer : smart services for your startup \"\n }, {\n type: 'silver',\n link: \"Cloudant : grow into your data layer, not out of it \"\n }, {\n type: 'silver',\n link: \"Gidsy : Explore, organize & book unique things to do! \"\n }, {\n type: 'silver',\n link: \"5apps : Package & deploy HTML5 apps automatically \"\n }, {\n type: 'silver',\n link: \"Meltmedia : We are Interactive Superheroes \"\n }, {\n type: 'silver',\n link: \"Fingertips offers design and development services \"\n }, {\n type: 'silver',\n link: \"Engine Yard : Build epic apps, let us handle the rest \"\n }, {\n type: 'silver',\n link: \"Malwarebytes : Defeat Malware once and for all. \"\n }, {\n type: 'silver',\n link: \"Readmill : The best reading app on the iPad. \"\n }, {\n type: 'silver',\n link: \"Medidata : clinical tech improving quality of life \"\n }, {\n type: 'silver',\n link: \"ESM : Japan's best agile Ruby/Rails consultancy \"\n }, {\n type: 'silver',\n link: \"Twitter : instantly connects people everywhere \"\n }, {\n type: 'silver',\n link: \"AGiLE ANiMAL : we <3 Travis CI. \"\n }, {\n type: 'silver',\n link: \"Tupalo : Discover, review & share local businesses. \"\n }\n ];\n\n this.Travis.WORKERS = {\n \"jvm-otp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n },\n \"jvm-otp2.worker.travis-ci.org\": {\n name: \"Transloadit\",\n url: \"http://transloadit.com\"\n },\n \"ppp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://beta.travis-ci.com\"\n },\n \"ppp2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ppp3.worker.travis-ci.org\": {\n name: \"Alchemy CMS\",\n url: \"http://alchemy-cms.com/\"\n },\n \"rails1.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby1.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"ruby2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby3.worker.travis-ci.org\": {\n name: \"Railslove\",\n url: \"http://railslove.de\"\n },\n \"ruby4.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"spree.worker.travis-ci.org\": {\n name: \"Spree\",\n url: \"http://spreecommerce.com\"\n },\n \"staging.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=data/sponsors");minispade.register('ext/jquery', "(function() {(function() {\n\n $.fn.extend({\n outerHtml: function() {\n return $(this).wrap('
').parent().html();\n },\n outerElement: function() {\n return $($(this).outerHtml()).empty();\n },\n flash: function() {\n return Utils.flash(this);\n },\n unflash: function() {\n return Utils.unflash(this);\n },\n filterLog: function() {\n this.deansi();\n return this.foldLog();\n },\n deansi: function() {\n return this.html(Utils.deansi(this.html()));\n },\n foldLog: function() {\n return this.html(Utils.foldLog(this.html()));\n },\n unfoldLog: function() {\n return this.html(Utils.unfoldLog(this.html()));\n },\n updateTimes: function() {\n return Utils.updateTimes(this);\n },\n activateTab: function(tab) {\n return Utils.activateTab(this, tab);\n },\n timeInWords: function() {\n return $(this).each(function() {\n return $(this).text(Utils.timeInWords(parseInt($(this).attr('title'))));\n });\n },\n updateGithubStats: function(repo) {\n return Utils.updateGithubStats(repo, $(this));\n }\n });\n\n $.extend({\n isEmpty: function(obj) {\n if ($.isArray(obj)) {\n return !obj.length;\n } else if ($.isObject(obj)) {\n return !$.keys(obj).length;\n } else {\n return !obj;\n }\n },\n isObject: function(obj) {\n return Object.prototype.toString.call(obj) === '[object Object]';\n },\n keys: function(obj) {\n var keys;\n keys = [];\n $.each(obj, function(key) {\n return keys.push(key);\n });\n return keys;\n },\n values: function(obj) {\n var values;\n values = [];\n $.each(obj, function(key, value) {\n return values.push(value);\n });\n return values;\n },\n underscore: function(string) {\n return string[0].toLowerCase() + string.substring(1).replace(/([A-Z])?/g, function(match, chr) {\n if (chr) {\n return \"_\" + (chr.toUpperCase());\n } else {\n return '';\n }\n });\n },\n camelize: function(string, uppercase) {\n string = uppercase === false ? $.underscore(string) : $.capitalize(string);\n return string.replace(/_(.)?/g, function(match, chr) {\n if (chr) {\n return chr.toUpperCase();\n } else {\n return '';\n }\n });\n },\n capitalize: function(string) {\n return string[0].toUpperCase() + string.substring(1);\n },\n compact: function(object) {\n return $.grep(object, function(value) {\n return !!value;\n });\n },\n all: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return false;\n }\n i++;\n }\n return true;\n },\n detect: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return array[i];\n }\n i++;\n }\n },\n select: function(array, callback) {\n var args, i, result;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n result = [];\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n result.push(array[i]);\n }\n i++;\n }\n return result;\n },\n slice: function(object, key) {\n var keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) > -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n only: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) !== -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n except: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) === -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n intersect: function(array, other) {\n return array.filter(function(element) {\n return other.indexOf(element) !== -1;\n });\n },\n map: function(elems, callback, arg) {\n var i, isArray, key, length, ret, value;\n value = void 0;\n key = void 0;\n ret = [];\n i = 0;\n length = elems.length;\n isArray = elems instanceof jQuery || length !== void 0 && typeof length === 'number' && (length > 0 && elems[0] && elems[length - 1]) || length === 0 || jQuery.isArray(elems);\n if (isArray) {\n while (i < length) {\n value = callback(elems[i], i, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n i++;\n }\n } else {\n for (key in elems) {\n value = callback(elems[key], key, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n }\n }\n return ret.concat.apply([], ret);\n },\n shuffle: function(array) {\n var current, tmp, top;\n array = array.slice();\n top = array.length;\n while (top && --top) {\n current = Math.floor(Math.random() * (top + 1));\n tmp = array[current];\n array[current] = array[top];\n array[top] = tmp;\n }\n return array;\n },\n truncate: function(string, length) {\n if (string.length > length) {\n return string.trim().substring(0, length) + '...';\n } else {\n return string;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=ext/jquery");minispade.register('travis/ajax', "(function() {(function() {\n\n jQuery.support.cors = true;\n\n this.Travis.ajax = Em.Object.create({\n DEFAULT_OPTIONS: {\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n }\n },\n get: function(url, callback) {\n return this.ajax(url, 'get', {\n success: callback\n });\n },\n post: function(url, data, callback) {\n return this.ajax(url, 'post', {\n data: data,\n success: callback\n });\n },\n ajax: function(url, method, options) {\n var endpoint, success, token, _base,\n _this = this;\n endpoint = Travis.config.api_endpoint || '';\n options = options || {};\n if (token = sessionStorage.getItem('travis.token')) {\n options.headers || (options.headers = {});\n (_base = options.headers)['Authorization'] || (_base['Authorization'] = \"token \" + token);\n }\n options.url = \"\" + endpoint + url;\n options.type = method;\n options.dataType = 'json';\n options.contentType = 'application/json; charset=utf-8';\n options.context = this;\n if (options.data && method !== 'GET' && method !== 'get') {\n options.data = JSON.stringify(options.data);\n }\n success = options.success || (function() {});\n options.success = function(data) {\n var _ref;\n if (((_ref = Travis.app) != null ? _ref.router : void 0) && data.flash) {\n Travis.app.router.flashController.pushObjects(data.flash);\n }\n delete data.flash;\n return success.call(_this, data);\n };\n options.error = function(data) {\n if (data.flash) {\n return Travis.app.router.flashController.pushObject(data.flash);\n }\n };\n return $.ajax($.extend(options, Travis.ajax.DEFAULT_OPTIONS));\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ajax");minispade.register('travis/expandable_record_array', "(function() {(function() {\n\n Travis.ExpandableRecordArray = DS.RecordArray.extend({\n isLoaded: false,\n isLoading: false,\n load: function(array) {\n var observer, self;\n this.set('isLoading', true);\n self = this;\n observer = function() {\n var content;\n if (this.get('isLoaded')) {\n content = self.get('content');\n array.removeObserver('isLoaded', observer);\n array.forEach(function(record) {\n return self.pushObject(record);\n });\n self.set('isLoading', false);\n return self.set('isLoaded', true);\n }\n };\n return array.addObserver('isLoaded', observer);\n },\n pushObject: function(record) {\n var clientId, id, ids;\n ids = this.get('content');\n id = record.get('id');\n clientId = record.get('clientId');\n if (ids.contains(clientId)) {\n return;\n }\n return ids.pushObject(clientId);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/expandable_record_array");minispade.register('travis/limited_array', "(function() {(function() {\n\n Travis.LimitedArray = Em.ArrayProxy.extend({\n limit: 10,\n init: function() {\n return this._super.apply(this, arguments);\n },\n arrangedContent: (function() {\n var content;\n if (content = this.get('content')) {\n return content.slice(0, this.get('limit'));\n }\n }).property('content'),\n contentArrayDidChange: function(array, index, removedCount, addedCount) {\n var addedObjects, arrangedContent, length, limit, object, _i, _len;\n this._super.apply(this, arguments);\n if (addedCount > 0) {\n addedObjects = array.slice(index, index + addedCount);\n arrangedContent = this.get('arrangedContent');\n for (_i = 0, _len = addedObjects.length; _i < _len; _i++) {\n object = addedObjects[_i];\n arrangedContent.unshiftObject(object);\n }\n limit = this.get('limit');\n length = arrangedContent.get('length');\n if (length > limit) {\n return arrangedContent.replace(limit, length - limit);\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/limited_array");minispade.register('travis/location', "(function() {(function() {\n\n Travis.Location = Ember.HistoryLocation.extend({\n onUpdateURL: function(callback) {\n var guid;\n guid = Ember.guidFor(this);\n return Ember.$(window).bind('popstate.ember-location-' + guid, function(e) {\n return callback(location.pathname + location.hash);\n });\n },\n getURL: function() {\n var location;\n location = this.get('location');\n return location.pathname + location.hash;\n }\n });\n\n Ember.Location.implementations['travis'] = Travis.Location;\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/location");minispade.register('travis/log', "(function() {(function() {\n\n this.Travis.Log = {\n FOLDS: {\n schema: /(\\$ (?:bundle exec )?rake( db:create)? db:schema:load[\\s\\S]*?-- assume_migrated_upto_version[\\s\\S]*?<\\/p>\\n.*<\\/p>)/g,\n migrate: /(\\$ (?:bundle exec )?rake( db:create)? db:migrate[\\s\\S]*== +\\w+: migrated \\(.*\\) =+)/g,\n bundle: /(\\$ bundle install.*<\\/p>\\n((Updating|Using|Installing|Fetching|remote:|Receiving|Resolving).*?<\\/p>\\n|<\\/p>\\n)*)/g,\n exec: /([\\/\\w]*.rvm\\/rubies\\/[\\S]*?\\/(ruby|rbx|jruby) .*?<\\/p>)/g\n },\n filter: function(log, path) {\n log = this.escape(log);\n log = this.deansi(log);\n log = log.replace(/\\r/g, '');\n log = this.number(log, path);\n log = this.fold(log);\n log = log.replace(/\\n/g, '');\n return log;\n },\n stripPaths: function(log) {\n return log.replace(/\\/home\\/vagrant\\/builds(\\/[^\\/\\n]+){2}\\//g, '');\n },\n escape: function(log) {\n return Handlebars.Utils.escapeExpression(log);\n },\n escapeRuby: function(log) {\n return log.replace(/#<(\\w+.*?)>/, '#<$1>');\n },\n number: function(log, path) {\n var result;\n path = \"\" + path + \"/\";\n result = '';\n $.each(log.trim().split('\\n'), function(ix, line) {\n var number, pathWithNumber;\n number = ix + 1;\n pathWithNumber = \"\" + path + \"#L\" + number;\n return result += '%@ %@
\\n'.fmt(pathWithNumber, number, number, number, line);\n });\n return result.trim();\n },\n deansi: function(log) {\n var ansi, text;\n log = log.replace(/\\r\\r/g, '\\r').replace(/\\033\\[K\\r/g, '\\r').replace(/^.*\\r(?!$)/gm, '').replace(/\u001b\\[2K/g, '').replace(/\\033\\(B/g, \"\");\n ansi = ansiparse(log);\n text = '';\n ansi.forEach(function(part) {\n var classes;\n classes = [];\n part.foreground && classes.push(part.foreground);\n part.background && classes.push('bg-' + part.background);\n part.bold && classes.push('bold');\n part.italic && classes.push('italic');\n return text += (classes.length ? '' + part.text + ' ' : part.text);\n });\n return text.replace(/\\033/g, '');\n },\n fold: function(log) {\n log = this.unfold(log);\n $.each(Travis.Log.FOLDS, function(name, pattern) {\n return log = log.replace(pattern, function() {\n return '' + arguments[1].trim() + '
';\n });\n });\n return log;\n },\n unfold: function(log) {\n return log.replace(/([\\s\\S]*?)<\\/div>/g, '$1\\n');\n },\n location: function() {\n return window.location.hash;\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/log");minispade.register('travis/model', "(function() {(function() {\n\n this.Travis.Model = DS.Model.extend({\n primaryKey: 'id',\n id: DS.attr('number'),\n init: function() {\n this.loadedAttributes = [];\n return this._super.apply(this, arguments);\n },\n get: function(name) {\n if (this.constructor.isAttribute(name) && this.get('incomplete') && !this.isAttributeLoaded(name)) {\n this.loadTheRest();\n }\n return this._super.apply(this, arguments);\n },\n refresh: function() {\n var id, store;\n if (id = this.get('id')) {\n store = this.get('store');\n return store.adapter.find(store, this.constructor, id);\n }\n },\n update: function(attrs) {\n var _this = this;\n $.each(attrs, function(key, value) {\n if (key !== 'id') {\n return _this.set(key, value);\n }\n });\n return this;\n },\n isAttributeLoaded: function(name) {\n return this.loadedAttributes.contains(name);\n },\n isComplete: (function() {\n if (this.get('incomplete')) {\n this.loadTheRest();\n return false;\n } else {\n this.set('isCompleting', false);\n return this.get('isLoaded');\n }\n }).property('incomplete', 'isLoaded'),\n loadTheRest: function() {\n if (this.get('isCompleting')) {\n return;\n }\n this.set('isCompleting', true);\n return this.refresh();\n },\n select: function() {\n return this.constructor.select(this.get('id'));\n }\n });\n\n this.Travis.Model.reopenClass({\n find: function() {\n if (arguments.length === 0) {\n return Travis.app.store.findAll(this);\n } else {\n return this._super.apply(this, arguments);\n }\n },\n filter: function(callback) {\n return Travis.app.store.filter(this, callback);\n },\n load: function(attrs) {\n return Travis.app.store.load(this, attrs);\n },\n select: function(id) {\n return this.find().forEach(function(record) {\n return record.set('selected', record.get('id') === id);\n });\n },\n buildURL: function(suffix) {\n var base, url;\n base = this.url || this.pluralName();\n Ember.assert('Base URL (' + base + ') must not start with slash', !base || base.toString().charAt(0) !== '/');\n Ember.assert('URL suffix (' + suffix + ') must not start with slash', !suffix || suffix.toString().charAt(0) !== '/');\n url = [base];\n if (suffix !== void 0) {\n url.push(suffix);\n }\n return url.join('/');\n },\n singularName: function() {\n var name, parts;\n parts = this.toString().split('.');\n name = parts[parts.length - 1];\n return name.replace(/([A-Z])/g, '_$1').toLowerCase().slice(1);\n },\n pluralName: function() {\n return Travis.app.store.adapter.pluralize(this.singularName());\n },\n isAttribute: function(name) {\n if (!this.attributesSaved) {\n this._saveAttributes();\n }\n return this.cachedAttributes.contains(name);\n },\n _saveAttributes: function() {\n var cachedAttributes;\n this.attributesSaved = true;\n cachedAttributes = [];\n this.eachComputedProperty(function(name, meta) {\n if (meta.isAttribute) {\n return cachedAttributes.pushObject(name);\n }\n });\n return this.cachedAttributes = cachedAttributes;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/model");minispade.register('travis/ticker', "(function() {(function() {\n\n this.Travis.Ticker = Ember.Object.extend({\n init: function() {\n if (this.get('interval') !== -1) {\n return this.schedule();\n }\n },\n tick: function() {\n var context, target, targets, _i, _len;\n context = this.get('context');\n targets = this.get('targets') || [this.get('target')];\n for (_i = 0, _len = targets.length; _i < _len; _i++) {\n target = targets[_i];\n if (context) {\n target = context.get(target);\n }\n if (target) {\n target.tick();\n }\n }\n return this.schedule();\n },\n schedule: function() {\n var _this = this;\n return Ember.run.later((function() {\n return _this.tick();\n }), this.get('interval') || Travis.app.TICK_INTERVAL);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ticker");minispade.register('travis', "(function() {(function() {\nminispade.require('ext/jquery');\nminispade.require('ext/ember/namespace');\n\n this.Travis = Em.Namespace.create({\n config: {\n api_endpoint: $('meta[rel=\"travis.api_endpoint\"]').attr('href'),\n pusher_key: $('meta[name=\"travis.pusher_key\"]').attr('value')\n },\n CONFIG_KEYS: ['rvm', 'gemfile', 'env', 'jdk', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala'],\n ROUTES: {\n 'profile/:login/me': ['profile', 'user'],\n 'profile/:login': ['profile', 'hooks'],\n 'profile': ['profile', 'hooks'],\n 'stats': ['stats', 'show'],\n ':owner/:name/jobs/:id/:line': ['home', 'job'],\n ':owner/:name/jobs/:id': ['home', 'job'],\n ':owner/:name/builds/:id': ['home', 'build'],\n ':owner/:name/builds': ['home', 'builds'],\n ':owner/:name/pull_requests': ['home', 'pullRequests'],\n ':owner/:name/branches': ['home', 'branches'],\n ':owner/:name': ['home', 'current'],\n '': ['home', 'index'],\n '#': ['home', 'index']\n },\n QUEUES: [\n {\n name: 'common',\n display: 'Common'\n }, {\n name: 'php',\n display: 'PHP, Perl and Python'\n }, {\n name: 'node_js',\n display: 'Node.js'\n }, {\n name: 'jvmotp',\n display: 'JVM and Erlang'\n }, {\n name: 'rails',\n display: 'Rails'\n }, {\n name: 'spree',\n display: 'Spree'\n }\n ],\n INTERVALS: {\n sponsors: -1,\n times: -1,\n updateTimes: 1000\n },\n setLocale: function(locale) {\n if (!locale) {\n return;\n }\n I18n.locale = locale;\n return localStorage.setItem('travis.config.locale', locale);\n },\n run: function(attrs) {\n if (location.hash.slice(0, 2) === '#!') {\n location.href = location.href.replace('#!/', '');\n }\n this.setLocale(localStorage.getItem('travis.config.locale'));\n return Ember.run.next(this, function() {\n var app,\n _this = this;\n app = Travis.App.create(attrs || {});\n $.each(Travis, function(key, value) {\n if (value && value.isClass && key !== 'constructor') {\n return app[key] = value;\n }\n });\n this.app = app;\n this.store = app.store;\n return $(function() {\n return app.initialize();\n });\n });\n }\n });\nminispade.require('travis/ajax');\nminispade.require('app');\n\n}).call(this);\n\n})();\n//@ sourceURL=travis");minispade.register('templates', "(function() {\nEmber.TEMPLATES['application'] = Ember.Handlebars.compile(\"{{outlet}}\\n\");\n\nEmber.TEMPLATES['auth/signin'] = Ember.Handlebars.compile(\"{{#if view.signingIn}}\\n
Signing in ... \\n
\\n Trying to authenticate with GitHub.\\n
\\n{{else}}\\n
Sign in \\n
\\n Please sign in with GitHub. \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/list'] = Ember.Handlebars.compile(\"{{#if builds.isLoaded}}\\n
\\n \\n \\n {{t builds.name}} \\n {{t builds.commit}} \\n {{t builds.message}} \\n {{t builds.duration}} \\n {{t builds.finished_at}} \\n \\n \\n\\n \\n {{#each build in builds}}\\n {{#view Travis.BuildsItemView contextBinding=\\\"build\\\"}}\\n \\n \\n {{#if id}}\\n \\n {{number}}\\n \\n {{/if}}\\n \\n \\n \\n {{formatCommit commit}}\\n \\n \\n \\n {{{formatMessage commit.message short=\\\"true\\\"}}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n
\\n {{view view.ShowMoreButton}}\\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if loading}}\\n
Loading \\n {{else}}\\n
\\n \\n
{{t builds.name}} \\n
\\n \\n {{#if build.id}}\\n {{build.number}} \\n {{/if}}\\n \\n
{{t builds.finished_at}} \\n
{{formatTime build.finishedAt}} \\n
{{t builds.duration}} \\n
{{formatDuration build.duration}} \\n
\\n\\n \\n\\n {{t builds.message}} \\n {{{formatMessage build.commit.message}}} \\n\\n {{#unless isMatrix}}\\n {{t builds.config}} \\n {{formatConfig build.config}} \\n {{/unless}}\\n \\n\\n {{#if build.isMatrix}}\\n {{view Travis.JobsView jobsBinding=\\\"build.requiredJobs\\\" required=\\\"true\\\"}}\\n {{view Travis.JobsView jobsBinding=\\\"build.allowedFailureJobs\\\"}}\\n {{else}}\\n {{view Travis.LogView contextBinding=\\\"build.jobs.firstObject\\\"}}\\n {{/if}}\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['events/list'] = Ember.Handlebars.compile(\"{{#if view.events.isLoaded}}\\n
\\n \\n \\n Time \\n Event \\n Result \\n Message \\n \\n \\n\\n \\n {{#each event in view.events}}\\n {{#view Travis.EventsItemView contextBinding=\\\"event\\\"}}\\n \\n {{formatTime createdAt}}\\n \\n \\n {{event.event_}}\\n \\n \\n {{event.result}}\\n \\n \\n {{event.message}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\\n\");\n\nEmber.TEMPLATES['jobs/list'] = Ember.Handlebars.compile(\"{{#if view.jobs.length}}\\n {{#if view.required}}\\n
\\n \\n {{t jobs.build_matrix}}\\n \\n {{else}}\\n \\n \\n {{t jobs.allowed_failures}}\\n \\n \\n {{/if}}\\n \\n \\n {{#each key in view.build.configKeys}}\\n {{key}} \\n {{/each}}\\n \\n \\n \\n {{#each job in view.jobs}}\\n {{#view Travis.JobsItemView contextBinding=\\\"job\\\"}}\\n \\n \\n {{#if job.id}}\\n {{number}} \\n {{/if}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{#each value in configValues}}\\n {{value}} \\n {{/each}}\\n {{/view}}\\n {{/each}}\\n \\n
\\n\\n {{#unless view.required}}\\n \\n {{/unless}}\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/log'] = Ember.Handlebars.compile(\"{{view.logSubscriber}}\\n\\n{{#if log.isLoaded}}\\n \\n \\n Follow logs \\n {{{formatLog log.body repo=\\\"repository\\\" item=\\\"parentView.currentItem\\\"}}} \\n\\n {{#if sponsor.name}}\\n \\n {{/if}}\\n\\n To top \\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if job.isComplete}}\\n \\n
\\n \\n
Job \\n
\\n \\n {{#if job.id}}\\n {{job.number}} \\n {{/if}}\\n \\n
{{t jobs.finished_at}} \\n
{{formatTime job.finishedAt}} \\n
{{t jobs.duration}} \\n
{{formatDuration job.duration}} \\n
\\n\\n \\n\\n {{t jobs.message}} \\n {{formatMessage commit.message}} \\n {{t jobs.config}} \\n {{formatConfig job.config}} \\n \\n\\n {{view Travis.LogView contextBinding=\\\"job\\\"}}}\\n
\\n {{else}}\\n \\n Loading \\n
\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['layouts/flash'] = Ember.Handlebars.compile(\"{{#each flash in controller}}\\n {{#view Travis.FlashItemView flashBinding=\\\"flash\\\"}}\\n {{view.message}}
\\n \\n {{/view}}\\n{{/each}}\\n\");\n\nEmber.TEMPLATES['layouts/home'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n {{outlet right}}\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/profile'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n
\\n\\n
\\n\\n
\\n
Getting started? \\n
\\n Please read our guide .\\n It will only take a few minutes :)\\n
\\n
\\n You can find detailled docs on our about site.\\n
\\n
\\n If you need help please don't hesitate to join\\n #travis on irc.freenode.net\\n or our mailinglist .\\n
\\n
\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/sidebar'] = Ember.Handlebars.compile(\"\\n\\n\\n\\n{{view view.DecksView}}\\n{{view view.WorkersView}}\\n{{view view.QueuesView}}\\n{{view view.LinksView}}\\n\\n\\n
{{t layouts.about.join}} \\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/simple'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n
\\n\\n\");\n\nEmber.TEMPLATES['layouts/top'] = Ember.Handlebars.compile(\"\\n Travis \\n \\n\\n\\n\");\n\nEmber.TEMPLATES['profile/accounts'] = Ember.Handlebars.compile(\"\\n
\\n\\n\\n\\n\\n {{#collection Travis.AccountsListView contentBinding=\\\"controller\\\"}}\\n
{{view.name}} \\n
\\n Repositories: \\n {{view.account.reposCount}} \\n
\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['profile/show'] = Ember.Handlebars.compile(\"{{view.name}} \\n\\n{{view Travis.ProfileTabsView}}\\n\\n\\n {{outlet pane}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n {{#if view.displayUser}}\\n \\n \\n \\n {{/if}}\\n \\n\");\n\nEmber.TEMPLATES['profile/tabs/hooks'] = Ember.Handlebars.compile(\"\\n {{{t profiles.show.message.your_repos}}}\\n
\\n\\n{{#if hooks.isLoaded}}\\n {{#if user.isSyncing}}\\n \\n Please wait while we sync from GitHub \\n
\\n {{else}}\\n \\n Last synchronized from GitHub: {{formatTime user.syncedAt}}\\n \\n Sync now\\n \\n
\\n\\n \\n {{#each hook in hooks}}\\n \\n {{hook.slug}} \\n {{hook.description}}
\\n\\n \\n \\n {{else}}\\n \\n You do not seem to have any repositories that we could sync.\\n \\n {{/each}}\\n \\n {{/if}}\\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs/user'] = Ember.Handlebars.compile(\" \\n\\n\\n \\n {{t profiles.show.github}}:\\n \\n \\n {{user.login}} \\n \\n \\n {{t profiles.show.email}}:\\n \\n \\n {{user.email}}\\n \\n \\n {{t profiles.show.token}}:\\n \\n \\n {{user.token}}\\n \\n \\n\\n\\n\\n\\n\");\n\nEmber.TEMPLATES['queues/list'] = Ember.Handlebars.compile(\"\\n{{#each queue in controller}}\\n \\n {{t queue}}: {{queue.name}} \\n \\n \\n{{/each}}\\n \\n\");\n\nEmber.TEMPLATES['repos/list'] = Ember.Handlebars.compile(\"\\n {{view Ember.TextField valueBinding=\\\"controller.search\\\"}}\\n
\\n\\n{{view Travis.ReposListTabsView}}\\n\\n \\n\\n\\n {{#collection Travis.ReposListView contentBinding=\\\"controller\\\"}}\\n {{#with view.repo}}\\n
\\n
\\n {{#if slug}}\\n
{{slug}} \\n {{/if}}\\n
\\n {{#if lastBuildId}}\\n
{{lastBuildNumber}} \\n {{/if}}\\n\\n
\\n {{t repositories.duration}}: \\n {{formatDuration lastBuildDuration}} ,\\n {{t repositories.finished_at}}: \\n {{formatTime lastBuildFinishedAt}} \\n
\\n\\n
\\n\\n {{#if description}}\\n
\\n {{/if}}\\n {{/with}}\\n {{else}}\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['repos/list/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\\n\");\n\nEmber.TEMPLATES['repos/show'] = Ember.Handlebars.compile(\"\\n {{#if view.isEmpty}}\\n {{view Travis.ReposEmptyView}}\\n {{else}}\\n {{#if view.repo.isComplete}}\\n {{#with view.repo}}\\n
\\n\\n
{{description}}
\\n\\n
\\n\\n {{view Travis.RepoShowTabsView}}\\n {{view Travis.RepoShowToolsView}}\\n {{/with}}\\n\\n {{else}}\\n
Loading \\n {{/if}}\\n\\n
\\n {{outlet pane}}\\n
\\n {{/if}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['repos/show/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n {{#if view.repo.slug}}\\n \\n Events\\n \\n {{/if}}\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\");\n\nEmber.TEMPLATES['repos/show/tools'] = Ember.Handlebars.compile(\"\\n\\n\\n\");\n\nEmber.TEMPLATES['sponsors/decks'] = Ember.Handlebars.compile(\"{{t layouts.application.sponsers}} \\n\\n\\n\\n\\n \\n {{{t layouts.application.sponsors_link}}}\\n \\n
\\n\");\n\nEmber.TEMPLATES['sponsors/links'] = Ember.Handlebars.compile(\"\\n\\n\");\n\nEmber.TEMPLATES['stats/show'] = Ember.Handlebars.compile(\"Sorry \\nStatistics are disabled for now.
\\n We're looking into a solution. If you want to help, please ping us!
\\n\");\n\nEmber.TEMPLATES['workers/list'] = Ember.Handlebars.compile(\"{{#view Travis.WorkersView}}\\n \\n {{t workers}}\\n \\n \\n \\n {{#each group in controller.groups}}\\n {{#view Travis.WorkersListView}}\\n \\n \\n {{group.firstObject.host}}\\n \\n \\n {{#each worker in group}}\\n {{#view Travis.WorkersItemView workerBinding=\\\"worker\\\"}}\\n \\n
\\n {{#if worker.isWorking}}\\n {{#if worker.job_id}}\\n \\n {{view.display}}\\n \\n {{/if}}\\n {{else}}\\n {{view.display}}\\n {{/if}}\\n \\n {{/view}}\\n {{/each}}\\n \\n \\n {{/view}}\\n {{else}}\\n No workers\\n {{/each}}\\n \\n{{/view}}\\n\");\n\n})();\n//@ sourceURL=templates");minispade.register('config/locales', "(function() {window.I18n = window.I18n || {}\nwindow.I18n.translations = {\"ca\":{\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"pt-BR\":\"português brasileiro\",\"ru\":\"Русский\"}},\"en\":{\"errors\":{\"messages\":{\"not_found\":\"not found\",\"already_confirmed\":\"was already confirmed\",\"not_locked\":\"was not locked\"}},\"devise\":{\"failure\":{\"unauthenticated\":\"You need to sign in or sign up before continuing.\",\"unconfirmed\":\"You have to confirm your account before continuing.\",\"locked\":\"Your account is locked.\",\"invalid\":\"Invalid email or password.\",\"invalid_token\":\"Invalid authentication token.\",\"timeout\":\"Your session expired, please sign in again to continue.\",\"inactive\":\"Your account was not activated yet.\"},\"sessions\":{\"signed_in\":\"Signed in successfully.\",\"signed_out\":\"Signed out successfully.\"},\"passwords\":{\"send_instructions\":\"You will receive an email with instructions about how to reset your password in a few minutes.\",\"updated\":\"Your password was changed successfully. You are now signed in.\"},\"confirmations\":{\"send_instructions\":\"You will receive an email with instructions about how to confirm your account in a few minutes.\",\"confirmed\":\"Your account was successfully confirmed. You are now signed in.\"},\"registrations\":{\"signed_up\":\"You have signed up successfully. If enabled, a confirmation was sent to your e-mail.\",\"updated\":\"You updated your account successfully.\",\"destroyed\":\"Bye! Your account was successfully cancelled. We hope to see you again soon.\"},\"unlocks\":{\"send_instructions\":\"You will receive an email with instructions about how to unlock your account in a few minutes.\",\"unlocked\":\"Your account was successfully unlocked. You are now signed in.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Confirmation instructions\"},\"reset_password_instructions\":{\"subject\":\"Reset password instructions\"},\"unlock_instructions\":{\"subject\":\"Unlock Instructions\"}}},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hour\",\"other\":\"%{count} hours\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} second\",\"other\":\"%{count} seconds\"}}},\"workers\":\"Workers\",\"queue\":\"Queue\",\"no_job\":\"There are no jobs\",\"repositories\":{\"branch\":\"Branch\",\"image_url\":\"Image URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"tabs\":{\"current\":\"Current\",\"build_history\":\"Build History\",\"branches\":\"Branch Summary\",\"pull_requests\":\"Pull Requests\",\"build\":\"Build\",\"job\":\"Job\"}},\"build\":{\"job\":\"Job\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"show_more\":\"Show more\"},\"layouts\":{\"top\":{\"home\":\"Home\",\"blog\":\"Blog\",\"docs\":\"Docs\",\"stats\":\"Stats\",\"github_login\":\"Sign in with Github\",\"profile\":\"Profile\",\"sign_out\":\"Sign Out\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Recent\",\"search\":\"Search\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"See all of our amazing sponsors →\",\"my_repositories\":\"My Repositories\"},\"about\":{\"alpha\":\"This stuff is alpha.\",\"messages\":{\"alpha\":\"Please do not consider this a stable service. We're still far from that! More info here. \"},\"join\":\"Join us and help!\",\"mailing_list\":\"Mailing List\",\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Author\",\"build\":\"Build\",\"build_matrix\":\"Build Matrix\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Compare\",\"config\":\"Config\",\"duration\":\"Duration\",\"finished_at\":\"Finished at\",\"job\":\"Job\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Flick the switches below to turn on the Travis service hook for your projects, then push to GitHub.\",\"config\":\"how to configure custom build options\"},\"messages\":{\"notice\":\"To get started, please read our Getting Started guide .\\n It will only take a couple of minutes. \"},\"token\":\"Token\",\"your_repos\":\"Your Repositories\",\"update\":\"Update\",\"update_locale\":\"Update\",\"your_locale\":\"Your Locale\"}},\"statistics\":{\"index\":{\"count\":\"Count\",\"repo_growth\":\"Repository Growth\",\"total_projects\":\"Total Projects/Repositories\",\"build_count\":\"Build Count\",\"last_month\":\"last month\",\"total_builds\":\"Total Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"es\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"workers\":\"Procesos\",\"queue\":\"Cola\",\"no_job\":\"No hay trabajos\",\"repositories\":{\"branch\":\"Rama\",\"image_url\":\"Imagen URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"tabs\":{\"current\":\"Actual\",\"build_history\":\"Histórico\",\"branches\":\"Ramas\",\"build\":\"Builds\",\"job\":\"Trabajo\"}},\"build\":{\"job\":\"Trabajo\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"sponsored_by\":\"Patrocinado por\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"layouts\":{\"top\":{\"home\":\"Inicio\",\"blog\":\"Blog\",\"docs\":\"Documentación\",\"stats\":\"Estadísticas\",\"github_login\":\"Iniciar sesión con Github\",\"profile\":\"Perfil\",\"sign_out\":\"Desconectar\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Hazme un Fork en Github\",\"recent\":\"Reciente\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Ver todos nuestros patrocinadores →\",\"my_repositories\":\"Mis Repositorios\"},\"about\":{\"alpha\":\"Esto es alpha.\",\"messages\":{\"alpha\":\"Por favor no considereis esto un servicio estable. Estamos estamos aún lejos de ello! Más información aquí. \"},\"join\":\"Únetenos y ayudanos!\",\"mailing_list\":\"Lista de Correos\",\"repository\":\"Repositorio\",\"twitter\":\"Twitter\"}},\"profiles\":{\"show\":{\"email\":\"Correo electrónico\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Activa los interruptores para inicial el Travis service hook para tus proyectos, y haz un Push en GitHub. \\n Para probar varias versiones de ruby, mira\",\"config\":\"como configurar tus propias opciones para el Build\"},\"messages\":{\"notice\":\"Para comenzar, por favor lee nuestra Guía de Inicio .\\n Solo tomará unos pocos minutos. \"},\"token\":\"Token\",\"your_repos\":\"Tus repositorios\",\"update\":\"Actualizar\",\"update_locale\":\"Actualizar\",\"your_locale\":\"Tu Idioma\"}},\"statistics\":{\"index\":{\"count\":\"Número\",\"repo_growth\":\"Crecimiento de Repositorios\",\"total_projects\":\"Total de Proyectos/Repositorios\",\"build_count\":\"Número de Builds\",\"last_month\":\"mes anterior\",\"total_builds\":\"Total de Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"fr\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} heure\",\"other\":\"%{count} heures\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} secondes\"}}},\"workers\":\"Processus\",\"queue\":\"File\",\"no_job\":\"Pas de tâches\",\"repositories\":{\"branch\":\"Branche\",\"image_url\":\"Image\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"tabs\":{\"current\":\"Actuel\",\"build_history\":\"Historique des tâches\",\"branches\":\"Résumé des branches\",\"build\":\"Construction\",\"job\":\"Tâche\"}},\"build\":{\"job\":\"Tâche\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"builds\":{\"name\":\"Version\",\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"layouts\":{\"top\":{\"home\":\"Accueil\",\"blog\":\"Blog\",\"docs\":\"Documentation\",\"stats\":\"Statistiques\",\"github_login\":\"Connection Github\",\"profile\":\"Profil\",\"sign_out\":\"Déconnection\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Faites un Fork sur Github\",\"recent\":\"Récent\",\"search\":\"Chercher\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Voir tous nos extraordinaire sponsors →\",\"my_repositories\":\"Mes dépôts\"},\"about\":{\"alpha\":\"Ceci est en alpha.\",\"messages\":{\"alpha\":\"S'il vous plaît ne considérez pas ce service comme étant stable. Nous sommes loin de ça! Plus d'infos ici. \"},\"join\":\"Joignez-vous à nous et aidez-nous!\",\"mailing_list\":\"Liste de distribution\",\"repository\":\"Dépôt\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Version\",\"build_matrix\":\"Matrice des versions\",\"commit\":\"Commit\",\"committer\":\"Committeur\",\"compare\":\"Comparer\",\"config\":\"Config\",\"duration\":\"Durée\",\"finished_at\":\"Terminé à\",\"job\":\"Tâche\",\"log\":\"Journal\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"message\":{\"your_repos\":\"Utilisez les boutons ci-dessous pour activer Travis sur vos projets puis déployez sur GitHub. \\nPour tester sur plus de versions de ruby, voir\",\"config\":\"comment configurer des options de version personnalisées\"},\"messages\":{\"notice\":\"Pour commencer, veuillez lire notre guide de démarrage .\\n Cela ne vous prendra que quelques minutes. \"},\"token\":\"Jeton\",\"your_repos\":\"Vos dépôts\",\"email\":\"Courriel\",\"update\":\"Modifier\",\"update_locale\":\"Modifier\",\"your_locale\":\"Votre langue\"}},\"statistics\":{\"index\":{\"count\":\"Décompte\",\"repo_growth\":\"Croissance de dépôt\",\"total_projects\":\"Total des projets/dépôts\",\"build_count\":\"Décompte des versions\",\"last_month\":\"mois dernier\",\"total_builds\":\"Total des versions\"}},\"admin\":{\"actions\":{\"create\":\"créer\",\"created\":\"créé\",\"delete\":\"supprimer\",\"deleted\":\"supprimé\",\"update\":\"mise à jour\",\"updated\":\"mis à jour\"},\"credentials\":{\"log_out\":\"Déconnection\"},\"delete\":{\"confirmation\":\"Oui, je suis sure\",\"flash_confirmation\":\"%{name} a été détruit avec succès\"},\"flash\":{\"error\":\"%{name} n'a pas pu être %{action}\",\"noaction\":\"Aucune action n'a été entreprise\",\"successful\":\"%{name} a réussi à %{action}\"},\"history\":{\"name\":\"Historique\",\"no_activity\":\"Aucune activité\",\"page_name\":\"Historique pour %{name}\"},\"list\":{\"add_new\":\"Ajouter un nouveau\",\"delete_action\":\"Supprimer\",\"delete_selected\":\"Supprimer la sélection\",\"edit_action\":\"Modifier\",\"search\":\"Rechercher\",\"select\":\"Sélectionner le %{name} à modifier\",\"select_action\":\"Sélectionner\",\"show_all\":\"Montrer tout\"},\"new\":{\"basic_info\":\"Information de base\",\"cancel\":\"Annuler\",\"chosen\":\"%{name} choisi\",\"chose_all\":\"Choisir tout\",\"clear_all\":\"Déselectionner tout\",\"many_chars\":\"caractères ou moins\",\"one_char\":\"caractère.\",\"optional\":\"Optionnel\",\"required\":\"Requis\",\"save\":\"Sauvegarder\",\"save_and_add_another\":\"Sauvegarder et en ajouter un autre\",\"save_and_edit\":\"Sauvegarder et modifier\",\"select_choice\":\"Faites vos choix et cliquez\"},\"dashboard\":{\"add_new\":\"Ajouter un nouveau\",\"last_used\":\"Dernière utilisation\",\"model_name\":\"Nom du modèle\",\"modify\":\"Modification\",\"name\":\"Tableau de bord\",\"pagename\":\"Administration du site\",\"records\":\"Enregistrements\",\"show\":\"Voir\",\"ago\":\"plus tôt\"}},\"home\":{\"name\":\"accueil\"},\"repository\":{\"duration\":\"Durée\"},\"devise\":{\"confirmations\":{\"confirmed\":\"Votre compte a été crée avec succès. Vous être maintenant connecté.\",\"send_instructions\":\"Vous allez recevoir un courriel avec les instructions de confirmation de votre compte dans quelques minutes.\"},\"failure\":{\"inactive\":\"Votre compte n'a pas encore été activé.\",\"invalid\":\"Adresse courriel ou mot de passe invalide.\",\"invalid_token\":\"Jeton d'authentification invalide.\",\"locked\":\"Votre compte est bloqué.\",\"timeout\":\"Votre session est expirée, veuillez vous reconnecter pour continuer.\",\"unauthenticated\":\"Vous devez vous connecter ou vous enregistrer afin de continuer\",\"unconfirmed\":\"Vous devez confirmer votre compte avant de continuer.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instructions de confirmations\"},\"reset_password_instructions\":{\"subject\":\"Instruction de remise à zéro du mot de passe\"},\"unlock_instructions\":{\"subject\":\"Instruction de débloquage\"}},\"passwords\":{\"send_instructions\":\"Vous recevrez un courriel avec les instructions de remise à zéro du mot de passe dans quelques minutes.\",\"updated\":\"Votre mot de passe a été changé avec succès. Vous êtes maintenant connecté.\"},\"registrations\":{\"destroyed\":\"Au revoir! Votre compte a été annulé avec succès. Nous espérons vous revoir bientôt.\",\"signed_up\":\"Vous êtes enregistré avec succès. Si activé, une confirmation vous a été envoyé par courriel.\",\"updated\":\"Votre compte a été mis a jour avec succès\"},\"sessions\":{\"signed_in\":\"Connecté avec succès\",\"signed_out\":\"Déconnecté avec succès\"},\"unlocks\":{\"send_instructions\":\"Vous recevrez un courriel contenant les instructions pour débloquer votre compte dans quelques minutes.\",\"unlocked\":\"Votre compte a été débloqué avec succès.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"étais déja confirmé\",\"not_found\":\"n'a pas été trouvé\",\"not_locked\":\"n'étais pas bloqué\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"ja\":{\"workers\":\"ワーカー\",\"queue\":\"キュー\",\"no_job\":\"ジョブはありません\",\"repositories\":{\"branch\":\"ブランチ\",\"image_url\":\"画像URL\",\"markdown\":\".md\",\"textile\":\".textile\",\"rdoc\":\".rdoc\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"tabs\":{\"current\":\"最新\",\"build_history\":\"ビルド履歴\",\"branches\":\"ブランチまとめ\",\"build\":\"ビルド\",\"job\":\"ジョブ\"}},\"build\":{\"job\":\"ジョブ\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"ビルドマトリクス\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"builds\":{\"name\":\"ビルド\",\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"失敗許容範囲外\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"layouts\":{\"about\":{\"alpha\":\"まだアルファですよ!\",\"join\":\"参加してみよう!\",\"mailing_list\":\"メールリスト\",\"messages\":{\"alpha\":\"Travis-ciは安定したサービスまで後一歩!詳しくはこちら \"},\"repository\":\"リポジトリ\",\"twitter\":\"ツイッター\"},\"application\":{\"fork_me\":\"Githubでフォークしよう\",\"my_repositories\":\"マイリポジトリ\",\"recent\":\"最近\",\"search\":\"検索\",\"sponsers\":\"スポンサー\",\"sponsors_link\":\"スポンサーをもっと見る →\"},\"top\":{\"blog\":\"ブログ\",\"docs\":\"Travisとは?\",\"github_login\":\"Githubでログイン\",\"home\":\"ホーム\",\"profile\":\"プロフィール\",\"sign_out\":\"ログアウト\",\"stats\":\"統計\",\"admin\":\"管理\"},\"mobile\":{\"author\":\"制作者\",\"build\":\"ビルド\",\"build_matrix\":\"ビルドマトリクス\",\"commit\":\"コミット\",\"committer\":\"コミット者\",\"compare\":\"比較\",\"config\":\"設定\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"job\":\"ジョブ\",\"log\":\"ログ\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"email\":\"メール\",\"message\":{\"config\":\"詳細設定\",\"your_repos\":\"以下のスイッチを設定し、Travis-ciを有効にします。Githubへプッシュしたらビルドは自動的に開始します。複数バーションや細かい設定はこちらへ:\"},\"messages\":{\"notice\":\"まずはTravisのはじめ方 を参照してください。\"},\"token\":\"トークン\",\"your_repos\":\"リポジトリ\",\"update\":\"更新\",\"update_locale\":\"更新\",\"your_locale\":\"言語設定\"}},\"statistics\":{\"index\":{\"build_count\":\"ビルド数\",\"count\":\"数\",\"last_month\":\"先月\",\"repo_growth\":\"リポジトリ\",\"total_builds\":\"合計ビルド数\",\"total_projects\":\"合計リポジトリ\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nb\":{\"admin\":{\"actions\":{\"create\":\"opprett\",\"created\":\"opprettet\",\"delete\":\"slett\",\"deleted\":\"slettet\",\"update\":\"oppdater\",\"updated\":\"oppdatert\"},\"credentials\":{\"log_out\":\"Logg ut\"},\"dashboard\":{\"add_new\":\"Legg til ny\",\"ago\":\"siden\",\"last_used\":\"Sist brukt\",\"model_name\":\"Modell\",\"modify\":\"Rediger\",\"name\":\"Dashbord\",\"pagename\":\"Nettstedsadministrasjon\",\"records\":\"Oppføringer\",\"show\":\"Vis\"},\"delete\":{\"confirmation\":\"Ja, jeg er sikker\",\"flash_confirmation\":\"%{name} ble slettet\"},\"flash\":{\"error\":\"%{name} kunne ikke bli %{action}\",\"noaction\":\"Ingen handlinger ble utført\",\"successful\":\"%{name} ble %{action}\"},\"history\":{\"name\":\"Logg\",\"no_activity\":\"Ingen aktivitet\",\"page_name\":\"Logg for %{name}\"},\"list\":{\"add_new\":\"Legg til ny\",\"delete_action\":\"Slett\",\"delete_selected\":\"Slett valgte\",\"edit_action\":\"Rediger\",\"search\":\"Søk\",\"select\":\"Velg %{name} for å redigere\",\"select_action\":\"Velg\",\"show_all\":\"Vis alle \"},\"new\":{\"basic_info\":\"Basisinformasjon\",\"cancel\":\"Avbryt\",\"chosen\":\"Valgt %{name}\",\"chose_all\":\"Velg alle\",\"clear_all\":\"Fjern alle\",\"many_chars\":\"eller færre tegn.\",\"one_char\":\"tegn.\",\"optional\":\"Valgfri\",\"required\":\"Påkrevd\",\"save\":\"Lagre\",\"save_and_add_another\":\"Lagre og legg til ny\",\"save_and_edit\":\"Lagre og rediger\",\"select_choice\":\"Kryss av for dine valg og klikk\"}},\"build\":{\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\"},\"builds\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testen ble kjørt på en maskin sponset av\"},\"name\":\"Jobb\",\"started_at\":\"Startet\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} time\",\"other\":\"%{count} timer\"},\"minutes_exact\":{\"one\":\"%{count} minutt\",\"other\":\"%{count} minutter\"},\"seconds_exact\":{\"one\":\"%{count} sekund\",\"other\":\"%{count} sekunder\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Din konto er aktivert og du er nå innlogget.\",\"send_instructions\":\"Om noen få minutter så vil du få en e-post med informasjon om hvordan du bekrefter kontoen din.\"},\"failure\":{\"inactive\":\"Kontoen din har ikke blitt aktivert enda.\",\"invalid\":\"Ugyldig e-post eller passord.\",\"invalid_token\":\"Ugyldig autentiseringskode.\",\"locked\":\"Kontoen din er låst.\",\"timeout\":\"Du ble logget ut siden på grunn av mangel på aktivitet, vennligst logg inn på nytt.\",\"unauthenticated\":\"Du må logge inn eller registrere deg for å fortsette.\",\"unconfirmed\":\"Du må bekrefte kontoen din før du kan fortsette.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bekreftelsesinformasjon\"},\"reset_password_instructions\":{\"subject\":\"Instruksjoner for å få nytt passord\"},\"unlock_instructions\":{\"subject\":\"Opplåsningsinstruksjoner\"}},\"passwords\":{\"send_instructions\":\"Om noen få minutter så vil du få en epost med informasjon om hvordan du kan få et nytt passord.\",\"updated\":\"Passordet ditt ble endret, og du er logget inn.\"},\"registrations\":{\"destroyed\":\"Adjø! Kontoen din ble kansellert. Vi håper vi ser deg igjen snart.\",\"signed_up\":\"Du er nå registrert.\",\"updated\":\"Kontoen din ble oppdatert.\"},\"sessions\":{\"signed_in\":\"Du er nå logget inn.\",\"signed_out\":\"Du er nå logget ut.\"},\"unlocks\":{\"send_instructions\":\"Om noen få minutter så kommer du til å få en e-post med informasjon om hvordan du kan låse opp kontoen din.\",\"unlocked\":\"Kontoen din ble låst opp, og du er nå logget inn igjen.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"har allerede blitt bekreftet\",\"not_found\":\"ikke funnnet\",\"not_locked\":\"var ikke låst\"}},\"home\":{\"name\":\"hjem\"},\"jobs\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testserien ble kjørt på en maskin sponset av\"},\"started_at\":\"Startet\"},\"layouts\":{\"about\":{\"alpha\":\"Dette er alfa-greier.\",\"join\":\"Bli med og hjelp oss!\",\"mailing_list\":\"E-postliste\",\"messages\":{\"alpha\":\"Dette er ikke en stabil tjeneste. Vi har fremdeles et stykke igjen! Mer informasjon finner du her .\"},\"repository\":\"Kodelager\",\"twitter\":\"Twitter.\"},\"application\":{\"fork_me\":\"Se koden på Github\",\"my_repositories\":\"Mine kodelagre\",\"recent\":\"Nylig\",\"search\":\"Søk\",\"sponsers\":\"Sponsorer\",\"sponsors_link\":\"Se alle de flotte sponsorene våre →\"},\"mobile\":{\"author\":\"Forfatter\",\"build\":\"Jobb\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\",\"log\":\"Logg\"},\"top\":{\"admin\":\"Administrator\",\"blog\":\"Blogg\",\"docs\":\"Dokumentasjon\",\"github_login\":\"Logg inn med Github\",\"home\":\"Hjem\",\"profile\":\"Profil\",\"sign_out\":\"Logg ut\",\"stats\":\"Statistikk\"}},\"no_job\":\"Ingen jobber finnnes\",\"profiles\":{\"show\":{\"email\":\"E-post\",\"github\":\"Github\",\"message\":{\"config\":\"hvordan sette opp egne jobbinnstillinger\",\"your_repos\":\"Slå\\u0010 på Travis for prosjektene dine ved å dra i bryterne under, og send koden til Github. \\nFor å teste mot flere ruby-versjoner, se dokumentasjonen for\"},\"messages\":{\"notice\":\"For å komme i gang, vennligst les kom-i-gang-veivisereren vår. Det tar bare et par minutter. \"},\"token\":\"Kode\",\"update\":\"Oppdater\",\"update_locale\":\"Oppdater\",\"your_locale\":\"Ditt språk\",\"your_repos\":\"Dine kodelagre\"}},\"queue\":\"Kø\",\"repositories\":{\"branch\":\"Gren\",\"commit\":\"Innsender\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"image_url\":\"Bilde-URL\",\"markdown\":\"Markdown\",\"message\":\"Beskrivelse\",\"rdoc\":\"RDOC\",\"started_at\":\"Startet\",\"tabs\":{\"branches\":\"Grensammendrag\",\"build\":\"Jobb\",\"build_history\":\"Jobblogg\",\"current\":\"Siste\",\"job\":\"Jobb\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Varighet\"},\"statistics\":{\"index\":{\"build_count\":\"Antall jobber\",\"count\":\"Antall\",\"last_month\":\"siste måned\",\"repo_growth\":\"Vekst i kodelager\",\"total_builds\":\"Totale jobber\",\"total_projects\":\"Antall prosjekter/kodelagre\"}},\"workers\":\"Arbeidere\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nl\":{\"admin\":{\"actions\":{\"create\":\"aanmaken\",\"created\":\"aangemaakt\",\"delete\":\"verwijderen\",\"deleted\":\"verwijderd\",\"update\":\"bijwerken\",\"updated\":\"bijgewerkt\"},\"credentials\":{\"log_out\":\"Afmelden\"},\"dashboard\":{\"add_new\":\"Nieuwe toevoegen\",\"ago\":\"geleden\",\"last_used\":\"Laatst gebruikt\",\"model_name\":\"Model naam\",\"modify\":\"Wijzigen\",\"pagename\":\"Site administratie\",\"show\":\"Laten zien\",\"records\":\"Gegevens\"},\"delete\":{\"confirmation\":\"Ja, ik ben zeker\",\"flash_confirmation\":\"%{name} is vernietigd\"},\"flash\":{\"error\":\"%{name} kon niet worden %{action}\",\"noaction\":\"Er zijn geen acties genomen\",\"successful\":\"%{name} is %{action}\"},\"history\":{\"name\":\"Geschiedenis\",\"no_activity\":\"Geen activiteit\",\"page_name\":\"Geschiedenis van %{name}\"},\"list\":{\"add_new\":\"Nieuwe toevoegen\",\"delete_action\":\"Verwijderen\",\"delete_selected\":\"Verwijder geselecteerden\",\"edit_action\":\"Bewerken\",\"search\":\"Zoeken\",\"select\":\"Selecteer %{name} om te bewerken\",\"select_action\":\"Selecteer\",\"show_all\":\"Laat allen zien\"},\"new\":{\"basic_info\":\"Basisinfo\",\"cancel\":\"Annuleren\",\"chosen\":\"%{name} gekozen\",\"chose_all\":\"Kies allen\",\"clear_all\":\"Deselecteer allen\",\"many_chars\":\"tekens of minder.\",\"one_char\":\"teken.\",\"optional\":\"Optioneel\",\"required\":\"Vereist\",\"save\":\"Opslaan\",\"save_and_add_another\":\"Opslaan en een nieuwe toevoegen\",\"save_and_edit\":\"Opslaan en bewerken\",\"select_choice\":\"Selecteer uw keuzes en klik\"}},\"build\":{\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"job\":\"Taak\"},\"builds\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw Matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze tests zijn gedraaid op een machine gesponsord door\"},\"name\":\"Bouw\",\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} uur\",\"other\":\"%{count} uren\"},\"minutes_exact\":{\"one\":\"%{count} minuut\",\"other\":\"%{count} minuten\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} seconden\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Uw account is bevestigd. U wordt nu ingelogd.\",\"send_instructions\":\"Binnen enkele minuten zal u een email ontvangen met instructies om uw account te bevestigen.\"},\"failure\":{\"inactive\":\"Uw account is nog niet geactiveerd.\",\"invalid\":\"Ongeldig email adres of wachtwoord.\",\"invalid_token\":\"Ongeldig authenticatie token.\",\"locked\":\"Uw account is vergrendeld.\",\"timeout\":\"Uw sessie is verlopen, gelieve opnieuw in te loggen om verder te gaan.\",\"unauthenticated\":\"U moet inloggen of u registeren voordat u verder gaat.\",\"unconfirmed\":\"U moet uw account bevestigen voordat u verder gaat.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bevestigings-instructies\"},\"reset_password_instructions\":{\"subject\":\"Wachtwoord herstel instructies\"},\"unlock_instructions\":{\"subject\":\"Ontgrendel-instructies\"}},\"passwords\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw wachtwoord opnieuw in te stellen.\",\"updated\":\"Uw wachtwoord is veranderd. U wordt nu ingelogd.\"},\"registrations\":{\"destroyed\":\"Dag! Uw account is geannuleerd. We hopen u vlug terug te zien.\",\"signed_up\":\"Uw registratie is voltooid. Als het ingeschakeld is wordt een bevestiging naar uw email adres verzonden.\",\"updated\":\"Het bijwerken van uw account is gelukt.\"},\"sessions\":{\"signed_in\":\"Inloggen gelukt.\",\"signed_out\":\"Uitloggen gelukt.\"},\"unlocks\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw account te ontgrendelen.\",\"unlocked\":\"Uw account is ontgrendeld. U wordt nu ingelogd.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"was al bevestigd\",\"not_found\":\"niet gevonden\",\"not_locked\":\"was niet vergrendeld\"}},\"jobs\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze testen zijn uitgevoerd op een machine gesponsord door\"},\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"layouts\":{\"about\":{\"alpha\":\"Dit is in alfa-stadium.\",\"join\":\"Doe met ons mee en help!\",\"mailing_list\":\"Mailing lijst\",\"messages\":{\"alpha\":\"Gelieve deze service niet te beschouwen als stabiel. Daar zijn we nog lang niet! Meer info hier. \"},\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Maak een fork op Github\",\"my_repositories\":\"Mijn repositories\",\"recent\":\"Recent\",\"search\":\"Zoeken\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Bekijk al onze geweldige sponsors →\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Bouw\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid op\",\"job\":\"Taak\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"log\":\"Logboek\"},\"top\":{\"admin\":\"Administratie\",\"blog\":\"Blog\",\"docs\":\"Documentatie\",\"github_login\":\"Inloggen met Github\",\"home\":\"Home\",\"profile\":\"Profiel\",\"sign_out\":\"Uitloggen\",\"stats\":\"Statistieken\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Er zijn geen taken\",\"profiles\":{\"show\":{\"email\":\"Email adres\",\"github\":\"Github\",\"message\":{\"config\":\"hoe eigen bouw-opties in te stellen\",\"your_repos\":\"Zet de schakelaars hieronder aan om de Travis hook voor uw projecten te activeren en push daarna naar Github \\nOm te testen tegen meerdere rubies, zie\"},\"messages\":{\"notice\":\"Om te beginnen kunt u onze startersgids lezen.\\\\n Het zal maar enkele minuten van uw tijd vergen. \"},\"update\":\"Bijwerken\",\"update_locale\":\"Bijwerken\",\"your_locale\":\"Uw taal\",\"your_repos\":\"Uw repositories\",\"token\":\"Token\"}},\"queue\":\"Wachtrij\",\"repositories\":{\"branch\":\"Tak\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"image_url\":\"Afbeeldings URL\",\"message\":\"Bericht\",\"started_at\":\"Gestart\",\"tabs\":{\"branches\":\"Tak samenvatting\",\"build\":\"Bouw\",\"build_history\":\"Bouw geschiedenis\",\"current\":\"Huidig\",\"job\":\"Taak\"},\"commit\":\"Commit\",\"markdown\":\"Markdown\",\"rdoc\":\"RDOC\",\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duur\"},\"statistics\":{\"index\":{\"build_count\":\"Bouw aantal\",\"count\":\"Aantal\",\"last_month\":\"voorbije maand\",\"repo_growth\":\"Repository groei\",\"total_builds\":\"Bouw totaal\",\"total_projects\":\"Projecten/Repository totaal\"}},\"workers\":\"Machines\",\"home\":{\"name\":\"Hoofdpagina\"}},\"pl\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} godzina\",\"other\":\"%{count} godziny\"},\"minutes_exact\":{\"one\":\"%{count} minuta\",\"other\":\"%{count} minuty\"},\"seconds_exact\":{\"one\":\"%{count} sekunda\",\"other\":\"%{count} sekundy\"}}},\"workers\":\"Workers\",\"queue\":\"Kolejka\",\"no_job\":\"Brak zadań\",\"repositories\":{\"branch\":\"Gałąź\",\"image_url\":\"URL obrazka\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"tabs\":{\"current\":\"Aktualny\",\"build_history\":\"Historia Buildów\",\"branches\":\"Wszystkie Gałęzie\",\"build\":\"Build\",\"job\":\"Zadanie\"}},\"build\":{\"job\":\"Zadanie\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Committer\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Komitujący\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"layouts\":{\"top\":{\"home\":\"Start\",\"blog\":\"Blog\",\"docs\":\"Dokumentacja\",\"stats\":\"Statystki\",\"github_login\":\"Zaloguj się przy pomocy Githuba\",\"profile\":\"Profil\",\"sign_out\":\"Wyloguj się\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Ostatnie\",\"search\":\"Wyniki\",\"sponsers\":\"Sponsorzy\",\"sponsors_link\":\"Zobacz naszych wszystkich wspaniałych sponsorów →\",\"my_repositories\":\"Moje repozytoria\"},\"about\":{\"alpha\":\"To wciąż jest wersja alpha.\",\"messages\":{\"alpha\":\"Proszę nie traktuj tego jako stabilnej usługi. Wciąż nam wiele do tego brakuje! Więcej informacji znajdziesz tutaj. \"},\"join\":\"Pomóż i dołącz do nas!\",\"mailing_list\":\"Lista mailingowa\",\"repository\":\"Repozytorium\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Macierz Buildów\",\"commit\":\"Commit\",\"committer\":\"Komitujący\",\"compare\":\"Porównianie\",\"config\":\"Konfiguracja\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"job\":\"Zadanie\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Przesuń suwak poniżej, aby włączyć Travisa, dla twoich projektów, a następnie umieść swój kod na GitHubie. \\n Aby testować swój kod przy użyciu wielu wersji Rubiego, zobacz\",\"config\":\"jak skonfigurować niestandardowe opcje builda\"},\"messages\":{\"notice\":\"Aby zacząć, przeczytaj nasz Przewodnik .\\n Zajmie ci to tylko kilka minut. \"},\"token\":\"Token\",\"your_repos\":\"Twoje repozytoria\"}},\"statistics\":{\"index\":{\"count\":\"Ilość\",\"repo_growth\":\"Przyrost repozytoriów\",\"total_projects\":\"Łącznie projektów/repozytoriów\",\"build_count\":\"Liczba buildów\",\"last_month\":\"ostatni miesiąc\",\"total_builds\":\"Łącznie Buildów\"}},\"date\":{\"abbr_day_names\":[\"nie\",\"pon\",\"wto\",\"śro\",\"czw\",\"pią\",\"sob\"],\"abbr_month_names\":[\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\"],\"day_names\":[\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\"formats\":{\"default\":\"%d-%m-%Y\",\"long\":\"%B %d, %Y\",\"short\":\"%d %b\"},\"month_names\":[\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\"],\"order\":[\"day\",\"month\",\"year\"]},\"errors\":{\"format\":\"%{attribute} %{message}\",\"messages\":{\"accepted\":\"musi zostać zaakceptowane\",\"blank\":\"nie może być puste\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"pt-BR\":{\"admin\":{\"actions\":{\"create\":\"criar\",\"created\":\"criado\",\"delete\":\"deletar\",\"deleted\":\"deletado\",\"update\":\"atualizar\",\"updated\":\"atualizado\"},\"credentials\":{\"log_out\":\"Deslogar\"},\"dashboard\":{\"add_new\":\"Adicionar novo\",\"ago\":\"atrás\",\"last_used\":\"Última utilização\",\"model_name\":\"Nome do modelo\",\"modify\":\"Modificar\",\"name\":\"Dashboard\",\"pagename\":\"Administração do site\",\"records\":\"Registros\",\"show\":\"Mostrar\"},\"delete\":{\"confirmation\":\"Sim, tenho certeza\",\"flash_confirmation\":\"%{name} foi destruído com sucesso\"},\"flash\":{\"error\":\"%{name} falhou ao %{action}\",\"noaction\":\"Nenhuma ação foi tomada\",\"successful\":\"%{name} foi %{action} com sucesso\"},\"history\":{\"name\":\"Histórico\",\"no_activity\":\"Nenhuma Atividade\",\"page_name\":\"Histórico para %{name}\"},\"list\":{\"add_new\":\"Adicionar novo\",\"delete_action\":\"Deletar\",\"delete_selected\":\"Deletar selecionados\",\"edit_action\":\"Editar\",\"search\":\"Buscar\",\"select\":\"Selecionar %{name} para editar\",\"select_action\":\"Selecionar\",\"show_all\":\"Mostrar todos\"},\"new\":{\"basic_info\":\"Informações básicas\",\"cancel\":\"Cancelar\",\"chosen\":\"Escolhido %{name}\",\"chose_all\":\"Escolher todos\",\"clear_all\":\"Limpar todos\",\"many_chars\":\"caracteres ou menos.\",\"one_char\":\"caractere.\",\"optional\":\"Opcional\",\"required\":\"Requerido\",\"save\":\"Salvar\",\"save_and_add_another\":\"Salvar e adicionar outro\",\"save_and_edit\":\"Salvar e alterar\",\"select_choice\":\"Selecione e clique\"}},\"build\":{\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\"},\"builds\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"name\":\"Build\",\"started_at\":\"Iniciou em\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Sua conta foi confirmada com sucesso. Você agora está logado.\",\"send_instructions\":\"Você receberá um email com instruções de como confirmar sua conta em alguns minutos.\"},\"failure\":{\"inactive\":\"Sua conta ainda não foi ativada.\",\"invalid\":\"Email ou senha inválidos.\",\"invalid_token\":\"Token de autenticação inválido.\",\"locked\":\"Sua conta está trancada.\",\"timeout\":\"Sua sessão expirou, por favor faça seu login novamente.\",\"unauthenticated\":\"Você precisa fazer o login ou cadastrar-se antes de continuar.\",\"unconfirmed\":\"Você precisa confirmar sua conta antes de continuar.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instruções de confirmação\"},\"reset_password_instructions\":{\"subject\":\"Instruções de atualização de senha\"},\"unlock_instructions\":{\"subject\":\"Instruções de destrancamento\"}},\"passwords\":{\"send_instructions\":\"Você receberá um email com instruções de como atualizar sua senha em alguns minutos.\",\"updated\":\"Sua senha foi alterada com sucesso. Você agora está logado.\"},\"registrations\":{\"destroyed\":\"Tchau! Sua conta foi cancelada com sucesso. Esperamos vê-lo novamente em breve!\",\"signed_up\":\"Você se cadastrou com sucesso. Se ativada, uma confirmação foi enviada para seu email.\",\"updated\":\"Você atualizou sua conta com sucesso.\"},\"sessions\":{\"signed_in\":\"Logado com sucesso.\",\"signed_out\":\"Deslogado com sucesso.\"},\"unlocks\":{\"send_instructions\":\"Você receberá um email com instruções de como destrancar sua conta em alguns minutos.\",\"unlocked\":\"Sua conta foi destrancada com sucesso. Você agora está logado.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"já foi confirmado\",\"not_found\":\"não encontrado\",\"not_locked\":\"não estava trancado\"}},\"home\":{\"name\":\"home\"},\"jobs\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"started_at\":\"Iniciou em\"},\"layouts\":{\"about\":{\"alpha\":\"Isto é um alpha.\",\"join\":\"Junte-se à nós e ajude!\",\"mailing_list\":\"Lista de email\",\"messages\":{\"alpha\":\"Por favor, não considere isto um serviço estável. Estamos muito longe disso! Mais informações aqui. \"},\"repository\":\"Repositório\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Faça fork no Github\",\"my_repositories\":\"Meus Repositórios\",\"recent\":\"Recentes\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Conheça todos os nossos patrocinadores →\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\",\"log\":\"Log\"},\"top\":{\"admin\":\"Admin\",\"blog\":\"Blog\",\"docs\":\"Documentação\",\"github_login\":\"Logue com o Github\",\"home\":\"Home\",\"profile\":\"Perfil\",\"sign_out\":\"Sair\",\"stats\":\"Estatísticas\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Não há trabalhos\",\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"config\":\"como configurar opções de build\",\"your_repos\":\"Use os botões abaixo para ligar ou desligar o hook de serviço do Travis para seus projetos, e então, faça um push para o Github. Para testar com múltiplas versões do Ruby, leia\"},\"messages\":{\"notice\":\"Para começar, leia nosso Guia de início . Só leva alguns minutinhos. \"},\"token\":\"Token\",\"update\":\"Atualizar\",\"update_locale\":\"Atualizar\",\"your_locale\":\"Sua língua\",\"your_repos\":\"Seus Repositórios\"}},\"queue\":\"Fila\",\"repositories\":{\"branch\":\"Branch\",\"commit\":\"Commit\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"image_url\":\"URL da imagem\",\"markdown\":\"Markdown\",\"message\":\"Mensagem\",\"rdoc\":\"RDOC\",\"started_at\":\"Iniciou em\",\"tabs\":{\"branches\":\"Sumário do Branch\",\"build\":\"Build\",\"build_history\":\"Histórico de Build\",\"current\":\"Atual\",\"job\":\"Trabalho\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duração\"},\"statistics\":{\"index\":{\"build_count\":\"Número de Builds\",\"count\":\"Número\",\"last_month\":\"último mês\",\"repo_growth\":\"Crescimento de Repositório\",\"total_builds\":\"Total de Builds\",\"total_projects\":\"Total de Projetos/Repositórios\"}},\"workers\":\"Processos\"},\"ru\":{\"admin\":{\"actions\":{\"create\":\"создать\",\"created\":\"создано\",\"delete\":\"удалить\",\"deleted\":\"удалено\",\"update\":\"обновить\",\"updated\":\"обновлено\"},\"credentials\":{\"log_out\":\"Выход\"},\"dashboard\":{\"add_new\":\"Добавить\",\"ago\":\"назад\",\"last_used\":\"Использовалось в последний раз\",\"model_name\":\"Имя модели\",\"modify\":\"Изменить\",\"name\":\"Панель управления\",\"pagename\":\"Управление сайтом\",\"records\":\"Записи\",\"show\":\"Показать\"},\"delete\":{\"confirmation\":\"Да, я уверен\",\"flash_confirmation\":\"%{name} успешно удалено\"},\"history\":{\"name\":\"История\",\"no_activity\":\"Нет активности\",\"page_name\":\"История %{name}\"},\"list\":{\"add_new\":\"Добавить\",\"delete_action\":\"Удалить\",\"delete_selected\":\"Удалить выбранные\",\"edit_action\":\"Редактировать\",\"search\":\"Поиск\",\"select\":\"Для редактирования выберите %{name}\",\"select_action\":\"Выбрать\",\"show_all\":\"Показать все\"},\"new\":{\"basic_info\":\"Основная информация\",\"cancel\":\"Отмена\",\"chosen\":\"Выбрано %{name}\",\"chose_all\":\"Выбрать все\",\"clear_all\":\"Очистить все\",\"one_char\":\"символ.\",\"optional\":\"Необязательно\",\"required\":\"Обязательно\",\"save\":\"Сохранить\",\"save_and_add_another\":\"Сохранить и добавить другое\",\"save_and_edit\":\"Сохранить и продолжить редактирование\",\"select_choice\":\"Выберите и кликните\",\"many_chars\":\"символов или меньше.\"},\"flash\":{\"error\":\"%{name} не удалось %{action}\",\"noaction\":\"Никаких действий не произведено\",\"successful\":\"%{name} было успешно %{action}\"}},\"build\":{\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\"},\"builds\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Дифф\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине, спонсируемой\"},\"name\":\"Билд\",\"started_at\":\"Начало\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} час\",\"few\":\"%{count} часа\",\"many\":\"%{count} часов\",\"other\":\"%{count} часа\"},\"minutes_exact\":{\"one\":\"%{count} минута\",\"few\":\"%{count} минуты\",\"many\":\"%{count} минут\",\"other\":\"%{count} минуты\"},\"seconds_exact\":{\"one\":\"%{count} секунда\",\"few\":\"%{count} секунды\",\"many\":\"%{count} секунд\",\"other\":\"%{count} секунды\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Ваш аккаунт успешно подтвержден. Приветствуем!\",\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для прохождения процедуры подтверждения аккаунта.\"},\"failure\":{\"inactive\":\"Ваш аккаунт еще не активирован.\",\"invalid\":\"Ошибка в адресе почты или пароле.\",\"invalid_token\":\"Неправильный токен аутентификации.\",\"locked\":\"Ваш аккаунт заблокирован.\",\"timeout\":\"Сессия окончена. Для продолжения работы войдите снова.\",\"unauthenticated\":\"Вам нужно войти или зарегистрироваться.\",\"unconfirmed\":\"Вы должны сначала подтвердить свой аккаунт.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Инструкции для подтверждению аккаунта\"},\"reset_password_instructions\":{\"subject\":\"Инструкции для сброса пароля\"},\"unlock_instructions\":{\"subject\":\"Инструкции для разблокирования аккаунта\"}},\"passwords\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для сброса пароля.\",\"updated\":\"Ваш пароль успешно изменен. Приветствуем!\"},\"registrations\":{\"destroyed\":\"Ваш аккаунт был успешно удален. Живите долго и процветайте!\",\"signed_up\":\"Вы успешно прошли регистрацию. Инструкции для подтверждения аккаунта отправлены на ваш электронный адрес.\",\"updated\":\"Аккаунт успешно обновлен.\"},\"sessions\":{\"signed_in\":\"Приветствуем!\",\"signed_out\":\"Удачи!\"},\"unlocks\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциям для разблокировния аккаунта.\",\"unlocked\":\"Ваш аккаунт успешно разблокирован. Приветствуем!\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"уже подтвержден\",\"not_found\":\"не найден\",\"not_locked\":\"не заблокирован\"}},\"home\":{\"name\":\"Главная\"},\"jobs\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине спонсируемой\"},\"started_at\":\"Начало\"},\"layouts\":{\"about\":{\"alpha\":\"Это альфа-версия\",\"join\":\"Присоединяйтесь к нам и помогайте!\",\"mailing_list\":\"Лист рассылки\",\"messages\":{\"alpha\":\"Пожалуйста, не считайте данный сервис стабильным. Мы еще очень далеки от стабильности! Подробности \"},\"repository\":\"Репозиторий\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"my_repositories\":\"Мои репозитории\",\"recent\":\"Недавние\",\"search\":\"Поиск\",\"sponsers\":\"Спонсоры\",\"sponsors_link\":\"Список всех наших замечательных спонсоров →\"},\"mobile\":{\"author\":\"Автор\",\"build\":\"Сборка\",\"build_matrix\":\"Матрица сборок\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\",\"log\":\"Журнал\"},\"top\":{\"admin\":\"Управление\",\"blog\":\"Блог\",\"docs\":\"Документация\",\"github_login\":\"Войти через Github\",\"home\":\"Главная\",\"profile\":\"Профиль\",\"sign_out\":\"Выход\",\"stats\":\"Статистика\"}},\"no_job\":\"Очередь пуста\",\"profiles\":{\"show\":{\"email\":\"Электронная почта\",\"github\":\"Github\",\"message\":{\"config\":\"как настроить специальные опции билда\",\"your_repos\":\"Используйте переключатели, чтобы включить Travis service hook для вашего проекта, а потом отправьте код на GitHub. \\nДля тестирования на нескольких версиях Ruby смотрите\"},\"messages\":{\"notice\":\"Перед началом, пожалуйста, прочтите Руководство для быстрого старта . Это займет всего несколько минут. \"},\"token\":\"Токен\",\"update\":\"Обновить\",\"update_locale\":\"Обновить\",\"your_locale\":\"Ваш язык\",\"your_repos\":\"Ваши репозитории\"}},\"queue\":\"Очередь\",\"repositories\":{\"branch\":\"Ветка\",\"commit\":\"Коммит\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"image_url\":\"URL изображения\",\"markdown\":\"Markdown\",\"message\":\"Комментарий\",\"rdoc\":\"RDOC\",\"started_at\":\"Начало\",\"tabs\":{\"branches\":\"Статус веток\",\"build\":\"Билд\",\"build_history\":\"История\",\"current\":\"Текущий\",\"job\":\"Задача\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Длительность\"},\"statistics\":{\"index\":{\"build_count\":\"Количество билдов\",\"count\":\"Количество\",\"last_month\":\"прошлый месяц\",\"repo_growth\":\"Рост числа репозиториев\",\"total_builds\":\"Всего билдов\",\"total_projects\":\"Всего проектов/репозиториев\"}},\"workers\":\"Машины\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}}};\n\n\n})();\n//@ sourceURL=config/locales");minispade.register('ext/ember/bound_helper', "(function() {// https://gist.github.com/2018185\n// For reference: https://github.com/wagenet/ember.js/blob/ac66dcb8a1cbe91d736074441f853e0da474ee6e/packages/ember-handlebars/lib/views/bound_property_view.js\nvar BoundHelperView = Ember.View.extend(Ember._Metamorph, {\n\n context: null,\n options: null,\n property: null,\n // paths of the property that are also observed\n propertyPaths: [],\n\n value: Ember.K,\n\n valueForRender: function() {\n var value = this.value(Ember.get(this.context, this.property), this.options);\n if (this.options.escaped) { value = Handlebars.Utils.escapeExpression(value); }\n return value;\n },\n\n render: function(buffer) {\n buffer.push(this.valueForRender());\n },\n\n valueDidChange: function() {\n if (this.morph.isRemoved()) { return; }\n this.morph.html(this.valueForRender());\n },\n\n didInsertElement: function() {\n this.valueDidChange();\n },\n\n init: function() {\n this._super();\n Ember.addObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n Ember.addObserver(this.context, this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n },\n\n destroy: function() {\n Ember.removeObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n this.context.removeObserver(this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n this._super();\n }\n\n});\n\nEmber.registerBoundHelper = function(name, func) {\n var propertyPaths = Array.prototype.slice.call(arguments, 2);\n Ember.Handlebars.registerHelper(name, function(property, options) {\n var data = options.data,\n view = data.view,\n ctx = this;\n\n var bindView = view.createChildView(BoundHelperView, {\n property: property,\n propertyPaths: propertyPaths,\n context: ctx,\n options: options.hash,\n value: func\n });\n\n view.appendChild(bindView);\n });\n};\n\n\n})();\n//@ sourceURL=ext/ember/bound_helper");minispade.register('ext/ember/namespace', "(function() {Em.Namespace.reopen = Em.Namespace.reopenClass\n\n\n\n})();\n//@ sourceURL=ext/ember/namespace");
\ No newline at end of file
+;minispade.register('app', "(function() {(function() {\nminispade.require('auth');\nminispade.require('controllers');\nminispade.require('helpers');\nminispade.require('models');\nminispade.require('pusher');\nminispade.require('routes');\nminispade.require('slider');\nminispade.require('store');\nminispade.require('tailing');\nminispade.require('templates');\nminispade.require('views');\nminispade.require('config/locales');\nminispade.require('data/sponsors');\n\n Travis.reopen({\n App: Em.Application.extend({\n autoinit: false,\n currentUserBinding: 'auth.user',\n authStateBinding: 'auth.state',\n init: function() {\n this._super.apply(this, arguments);\n this.store = Travis.Store.create();\n this.store.loadMany(Travis.Sponsor, Travis.SPONSORS);\n this.set('auth', Travis.Auth.create({\n app: this,\n endpoint: Travis.config.api_endpoint\n }));\n this.slider = new Travis.Slider();\n this.pusher = new Travis.Pusher(Travis.config.pusher_key);\n return this.tailing = new Travis.Tailing();\n },\n signIn: function() {\n return this.get('auth').signIn();\n },\n autoSignIn: function() {\n return this.get('auth').autoSignIn();\n },\n signOut: function() {\n this.get('auth').signOut();\n return this.get('router').send('afterSignOut');\n },\n receive: function() {\n return this.store.receive.apply(this.store, arguments);\n },\n toggleSidebar: function() {\n var element;\n $('body').toggleClass('maximized');\n element = $(' ');\n $('#top .profile').append(element);\n Em.run.later((function() {\n return element.remove();\n }), 10);\n element = $(' ');\n $('#repo').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=app");minispade.register('auth', "(function() {(function() {\n\n this.Travis.Auth = Ember.Object.extend({\n iframe: $('').hide(),\n timeout: 5000,\n state: 'signed-out',\n receivingEnd: \"\" + location.protocol + \"//\" + location.host,\n init: function() {\n var _this = this;\n this.iframe.appendTo('body');\n window.addEventListener('message', function(e) {\n return _this.receiveMessage(e);\n });\n return this.loadUser();\n },\n accessToken: (function() {\n return sessionStorage.getItem('travis.token');\n }).property(),\n loadUser: function() {\n var user;\n if (user = sessionStorage.getItem('travis.user')) {\n return this.setData({\n user: JSON.parse(user)\n });\n } else {\n return this.autoSignIn();\n }\n },\n signIn: function() {\n this.set('state', 'signing-in');\n this.trySignIn();\n return Ember.run.later(this, this.checkSignIn.bind(this), this.timeout);\n },\n autoSignIn: function() {\n if (localStorage.getItem('travis.auto_signin')) {\n return this.signIn();\n }\n },\n signOut: function() {\n localStorage.clear();\n sessionStorage.clear();\n return this.setData();\n },\n trySignIn: function() {\n return this.iframe.attr('src', \"\" + this.endpoint + \"/auth/post_message?origin=\" + this.receivingEnd);\n },\n checkSignIn: function() {\n if (this.get('state') === 'signing-in') {\n return this.forceSignIn();\n }\n },\n forceSignIn: function() {\n localStorage.setItem('travis.auto_signin', 'true');\n return window.location = \"\" + this.endpoint + \"/auth/handshake?redirect_uri=\" + location;\n },\n setData: function(data) {\n var router, user, _ref;\n if (typeof data === 'string') {\n data = JSON.parse(data);\n }\n if (data != null ? data.token : void 0) {\n this.storeToken(data.token);\n }\n if (data != null ? data.user : void 0) {\n user = this.storeUser(data.user);\n }\n this.set('state', user ? 'signed-in' : 'signed-out');\n this.set('user', user ? user : void 0);\n if (router = (_ref = Travis.app) != null ? _ref.get('router') : void 0) {\n return router.send('afterSignIn');\n }\n },\n storeToken: function(token) {\n sessionStorage.setItem('travis.token', token);\n return this.notifyPropertyChange('accessToken');\n },\n storeUser: function(user) {\n localStorage.setItem('travis.auto_signin', 'true');\n sessionStorage.setItem('travis.user', JSON.stringify(user));\n this.app.store.load(Travis.User, user);\n user = this.app.store.find(Travis.User, user.id);\n user.get('permissions');\n return user;\n },\n receiveMessage: function(event) {\n if (event.origin === this.expectedOrigin()) {\n if (event.data.token) {\n event.data.user.token = event.data.token;\n }\n this.setData(event.data);\n return console.log(\"signed in as \" + event.data.user.login);\n } else {\n return console.log(\"unexpected message \" + event.origin + \": \" + event.data);\n }\n },\n expectedOrigin: function() {\n if (this.endpoint[0] === '/') {\n return this.receivingEnd;\n } else {\n return this.endpoint;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=auth");minispade.register('controllers', "(function() {(function() {\nminispade.require('helpers');\nminispade.require('travis/ticker');\n\n Travis.reopen({\n Controller: Em.Controller.extend({\n connectOutlet: function() {\n var view, _connectedOutletViews;\n view = this._super.apply(this, arguments);\n if (view) {\n _connectedOutletViews = Travis.app.get('_connectedOutletViews');\n if (!_connectedOutletViews) {\n _connectedOutletViews = [];\n }\n _connectedOutletViews.pushObject(view);\n Travis.app.set('_connectedOutletViews', _connectedOutletViews);\n }\n return view;\n }\n }),\n TopController: Em.Controller.extend({\n userBinding: 'Travis.app.currentUser'\n }),\n ApplicationController: Em.Controller.extend(),\n MainController: Em.Controller.extend(),\n StatsLayoutController: Em.Controller.extend(),\n ProfileLayoutController: Em.Controller.extend(),\n AuthLayoutController: Em.Controller.extend()\n });\nminispade.require('controllers/accounts');\nminispade.require('controllers/builds');\nminispade.require('controllers/flash');\nminispade.require('controllers/home');\nminispade.require('controllers/profile');\nminispade.require('controllers/repos');\nminispade.require('controllers/repo');\nminispade.require('controllers/sidebar');\nminispade.require('controllers/stats');\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers");minispade.register('controllers/accounts', "(function() {(function() {\n\n Travis.AccountsController = Ember.ArrayController.extend({\n tab: 'accounts',\n init: function() {\n return this._super();\n },\n findByLogin: function(login) {\n return this.find(function(account) {\n return account.get('login') === login;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/accounts");minispade.register('controllers/builds', "(function() {(function() {\n\n Travis.BuildsController = Em.ArrayController.extend({\n repo: 'parent.repo',\n contentBinding: 'parent.builds'\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/builds");minispade.register('controllers/flash', "(function() {(function() {\n\n Travis.FlashController = Ember.ArrayController.extend({\n init: function() {\n this._super.apply(this, arguments);\n return this.set('content', Ember.A());\n },\n pushObjects: function(objects) {\n Ember.run.later(this, (function() {\n return this.removeObjects(objects);\n }), 10000);\n return this._super(objects);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/flash");minispade.register('controllers/home', "(function() {(function() {\n\n Travis.HomeLayoutController = Travis.Controller.extend();\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/home");minispade.register('controllers/profile', "(function() {(function() {\n\n Travis.ProfileController = Travis.Controller.extend({\n name: 'profile',\n userBinding: 'Travis.app.currentUser',\n accountsBinding: 'Travis.app.router.accountsController',\n account: (function() {\n var account, login;\n login = this.get('params.login') || Travis.app.get('currentUser.login');\n account = this.get('accounts').filter(function(account) {\n if (account.get('login') === login) {\n return account;\n }\n })[0];\n if (account) {\n account.select();\n }\n return account;\n }).property('accounts.length', 'params.login'),\n activate: function(action, params) {\n this.setParams(params || this.get('params'));\n return this[\"view\" + ($.camelize(action))]();\n },\n viewHooks: function() {\n this.connectTab('hooks');\n return this.set('hooks', Travis.Hook.find({\n owner_name: this.get('params.login') || Travis.app.get('currentUser.login')\n }));\n },\n viewUser: function() {\n return this.connectTab('user');\n },\n connectTab: function(tab) {\n var viewClass;\n viewClass = Travis[\"\" + ($.camelize(tab)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n setParams: function(params) {\n var key, value, _results;\n this.set('params', {});\n _results = [];\n for (key in params) {\n value = params[key];\n _results.push(this.set(\"params.\" + key, params[key]));\n }\n return _results;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/profile");minispade.register('controllers/repo', "(function() {(function() {\n\n Travis.RepoController = Travis.Controller.extend({\n bindings: [],\n init: function() {\n this._super.apply(this, arguments);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var build, builds, jobs;\n if (builds = this.get('builds')) {\n builds.forEach(function(b) {\n return b.updateTimes();\n });\n }\n if (build = this.get('build')) {\n build.updateTimes();\n }\n if (build && (jobs = build.get('jobs'))) {\n jobs.forEach(function(j) {\n return j.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(action) {\n this._unbind();\n return this[\"view\" + ($.camelize(action))]();\n },\n viewIndex: function() {\n this._bind('repo', 'controllers.reposController.firstObject');\n this._bind('build', 'repo.lastBuild');\n return this.connectTab('current');\n },\n viewCurrent: function() {\n this.connectTab('current');\n return this._bind('build', 'repo.lastBuild');\n },\n viewBuilds: function() {\n this.connectTab('builds');\n return this._bind('builds', 'repo.builds');\n },\n viewPullRequests: function() {\n this.connectTab('pull_requests');\n return this._bind('builds', 'repo.pullRequests');\n },\n viewBranches: function() {\n this.connectTab('branches');\n return this._bind('builds', 'repo.branches');\n },\n viewEvents: function() {\n this.connectTab('events');\n return this._bind('events', 'repo.events');\n },\n viewBuild: function() {\n return this.connectTab('build');\n },\n viewJob: function() {\n this._bind('build', 'job.build');\n return this.connectTab('job');\n },\n repoObserver: (function() {\n var repo;\n repo = this.get('repo');\n if (repo) {\n return repo.select();\n }\n }).observes('repo.id'),\n connectTab: function(tab) {\n var name, viewClass;\n name = tab === 'current' ? 'build' : tab;\n viewClass = name === 'builds' || name === 'branches' || name === 'pull_requests' ? Travis.BuildsView : Travis[\"\" + ($.camelize(name)) + \"View\"];\n this.set('tab', tab);\n return this.connectOutlet({\n outletName: 'pane',\n controller: this,\n viewClass: viewClass\n });\n },\n _bind: function(to, from) {\n return this.bindings.push(Ember.oneWay(this, to, from));\n },\n _unbind: function() {\n var binding, _i, _len, _ref;\n _ref = this.bindings;\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n binding = _ref[_i];\n binding.disconnect(this);\n }\n return this.bindings.length = 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repo");minispade.register('controllers/repos', "(function() {(function() {\nminispade.require('travis/limited_array');\n\n Travis.ReposController = Ember.ArrayController.extend({\n defaultTab: 'recent',\n sortProperties: ['sortOrder'],\n init: function() {\n this.activate(this.defaultTab);\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n updateTimes: function() {\n var content;\n if (content = this.get('content')) {\n content.forEach(function(r) {\n return r.updateTimes();\n });\n }\n return Ember.run.later(this.updateTimes.bind(this), Travis.INTERVALS.updateTimes);\n },\n activate: function(tab, params) {\n this.set('tab', tab);\n return this[\"view\" + ($.camelize(tab))](params);\n },\n viewRecent: function() {\n var content;\n content = Travis.LimitedArray.create({\n content: Travis.Repo.find(),\n limit: 30\n });\n return this.set('content', content);\n },\n viewOwned: function() {\n return this.set('content', Travis.Repo.accessibleBy(Travis.app.get('currentUser.login')));\n },\n viewSearch: function(params) {\n return this.set('content', Travis.Repo.search(params.search));\n },\n searchObserver: (function() {\n var search;\n search = this.get('search');\n if (search) {\n return this.searchFor(search);\n } else {\n this.activate('recent');\n return 'recent';\n }\n }).observes('search'),\n searchFor: function(phrase) {\n if (this.searchLater) {\n Ember.run.cancel(this.searchLater);\n }\n return this.searchLater = Ember.run.later(this, (function() {\n return this.activate('search', {\n search: phrase\n });\n }), 500);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/repos");minispade.register('controllers/sidebar', "(function() {(function() {\n\n Travis.reopen({\n SidebarController: Em.ArrayController.extend({\n init: function() {\n this.tickables = [];\n return Travis.Ticker.create({\n target: this,\n interval: Travis.INTERVALS.sponsors\n });\n },\n tick: function() {\n var tickable, _i, _len, _ref, _results;\n _ref = this.tickables;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n tickable = _ref[_i];\n _results.push(tickable.tick());\n }\n return _results;\n }\n }),\n QueuesController: Em.ArrayController.extend(),\n WorkersController: Em.ArrayController.extend({\n groups: (function() {\n var content, groups, host, worker, _i, _len, _ref;\n if (content = this.get('arrangedContent')) {\n groups = {};\n _ref = content.toArray();\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n worker = _ref[_i];\n host = worker.get('host');\n if (!groups[host]) {\n groups[host] = Em.ArrayProxy.create(Em.SortableMixin, {\n content: [],\n sortProperties: ['nameForSort']\n });\n }\n groups[host].addObject(worker);\n }\n return $.values(groups);\n }\n }).property('length')\n }),\n SponsorsController: Em.ArrayController.extend({\n page: 0,\n arrangedContent: (function() {\n return this.get('shuffled').slice(this.start(), this.end());\n }).property('shuffled.length', 'page'),\n shuffled: (function() {\n var content;\n if (content = this.get('content')) {\n return $.shuffle(content);\n } else {\n return [];\n }\n }).property('content.length'),\n tick: function() {\n return this.set('page', this.isLast() ? 0 : this.get('page') + 1);\n },\n pages: (function() {\n var length;\n length = this.get('content.length');\n if (length) {\n return parseInt(length / this.get('perPage') + 1);\n } else {\n return 1;\n }\n }).property('length'),\n isLast: function() {\n return this.get('page') === this.get('pages') - 1;\n },\n start: function() {\n return this.get('page') * this.get('perPage');\n },\n end: function() {\n return this.start() + this.get('perPage');\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/sidebar");minispade.register('controllers/stats', "(function() {(function() {\n\n Travis.StatsController = Travis.Controller.extend({\n name: 'stats',\n init: function() {\n return this._super('top');\n },\n activate: function(action, params) {}\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=controllers/stats");minispade.register('helpers', "(function() {(function() {\nminispade.require('helpers/handlebars');\nminispade.require('helpers/helpers');\nminispade.require('helpers/urls');\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers");minispade.register('helpers/handlebars', "(function() {(function() {\n var safe;\nminispade.require('ext/ember/bound_helper');\n\n safe = function(string) {\n return new Handlebars.SafeString(string);\n };\n\n Handlebars.registerHelper('tipsy', function(text, tip) {\n return safe('' + text + ' ');\n });\n\n Handlebars.registerHelper('t', function(key) {\n return safe(I18n.t(key));\n });\n\n Ember.registerBoundHelper('formatTime', function(value, options) {\n return safe(Travis.Helpers.timeAgoInWords(value) || '-');\n });\n\n Ember.registerBoundHelper('formatDuration', function(duration, options) {\n return safe(Travis.Helpers.timeInWords(duration));\n });\n\n Ember.registerBoundHelper('formatCommit', function(commit, options) {\n if (commit) {\n return safe(Travis.Helpers.formatCommit(commit.get('sha'), commit.get('branch')));\n }\n });\n\n Ember.registerBoundHelper('formatSha', function(sha, options) {\n return safe(Travis.Helpers.formatSha(sha));\n });\n\n Ember.registerBoundHelper('pathFrom', function(url, options) {\n return safe(Travis.Helpers.pathFrom(url));\n });\n\n Ember.registerBoundHelper('formatMessage', function(message, options) {\n return safe(Travis.Helpers.formatMessage(message, options));\n });\n\n Ember.registerBoundHelper('formatConfig', function(config, options) {\n return safe(Travis.Helpers.formatConfig(config));\n });\n\n Ember.registerBoundHelper('formatLog', function(log, options) {\n var item, parentView, repo;\n parentView = this.get('parentView');\n repo = parentView.get(options.repo);\n item = parentView.get(options.item);\n return Travis.Helpers.formatLog(log, repo, item) || '';\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/handlebars");minispade.register('helpers/helpers', "(function() {(function() {\nminispade.require('travis/log');\nminispade.require('config/emoij');\n\n this.Travis.Helpers = {\n compact: function(object) {\n var key, result, value, _ref;\n result = {};\n _ref = object || {};\n for (key in _ref) {\n value = _ref[key];\n if (!$.isEmpty(value)) {\n result[key] = value;\n }\n }\n return result;\n },\n safe: function(string) {\n return new Handlebars.SafeString(string);\n },\n colorForResult: function(result) {\n if (result === 0) {\n return 'green';\n } else {\n if (result === 1) {\n return 'red';\n } else {\n return null;\n }\n }\n },\n formatCommit: function(sha, branch) {\n return Travis.Helpers.formatSha(sha) + (branch ? \" (\" + branch + \")\" : '');\n },\n formatSha: function(sha) {\n return (sha || '').substr(0, 7);\n },\n formatConfig: function(config) {\n var values;\n config = $.only(config, 'rvm', 'gemfile', 'env', 'otp_release', 'php', 'node_js', 'scala', 'jdk', 'python', 'perl');\n values = $.map(config, function(value, key) {\n value = (value && value.join ? value.join(', ') : value) || '';\n return '%@: %@'.fmt($.camelize(key), value);\n });\n if (values.length === 0) {\n return '-';\n } else {\n return values.join(', ');\n }\n },\n formatMessage: function(message, options) {\n message = message || '';\n if (options.short) {\n message = message.split(/\\n/)[0];\n }\n return this._emojize(this._escape(message)).replace(/\\n/g, ' ');\n },\n formatLog: function(log, repo, item) {\n var event, url;\n event = item.constructor === Travis.Build ? 'showBuild' : 'showJob';\n url = Travis.app.get('router').urlForEvent(event, repo, item);\n return Travis.Log.filter(log, url);\n },\n pathFrom: function(url) {\n return (url || '').split('/').pop();\n },\n timeAgoInWords: function(date) {\n return $.timeago.distanceInWords(date);\n },\n durationFrom: function(started, finished) {\n started = started && this._toUtc(new Date(this._normalizeDateString(started)));\n finished = finished ? this._toUtc(new Date(this._normalizeDateString(finished))) : this._nowUtc();\n if (started && finished) {\n return Math.round((finished - started) / 1000);\n } else {\n return 0;\n }\n },\n timeInWords: function(duration) {\n var days, hours, minutes, result, seconds;\n days = Math.floor(duration / 86400);\n hours = Math.floor(duration % 86400 / 3600);\n minutes = Math.floor(duration % 3600 / 60);\n seconds = duration % 60;\n if (days > 0) {\n return 'more than 24 hrs';\n } else {\n result = [];\n if (hours === 1) {\n result.push(hours + ' hr');\n }\n if (hours > 1) {\n result.push(hours + ' hrs');\n }\n if (minutes > 0) {\n result.push(minutes + ' min');\n }\n if (seconds > 0) {\n result.push(seconds + ' sec');\n }\n if (result.length > 0) {\n return result.join(' ');\n } else {\n return '-';\n }\n }\n },\n _normalizeDateString: function(string) {\n if (window.JHW) {\n string = string.replace('T', ' ').replace(/-/g, '/');\n string = string.replace('Z', '').replace(/\\..*$/, '');\n }\n return string;\n },\n _nowUtc: function() {\n return this._toUtc(new Date());\n },\n _toUtc: function(date) {\n return Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds(), date.getMilliseconds());\n },\n _emojize: function(text) {\n var emojis;\n emojis = text.match(/:\\S+?:/g);\n if (emojis !== null) {\n $.each(emojis.uniq(), function(ix, emoji) {\n var image, strippedEmoji;\n strippedEmoji = emoji.substring(1, emoji.length - 1);\n if (EmojiDictionary.indexOf(strippedEmoji) !== -1) {\n image = ' ';\n return text = text.replace(new RegExp(emoji, 'g'), image);\n }\n });\n }\n return text;\n },\n _escape: function(text) {\n return text.replace(/&/g, '&').replace(//g, '>');\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/helpers");minispade.register('helpers/urls', "(function() {(function() {\n\n this.Travis.Urls = {\n repo: function(slug) {\n return \"/\" + slug;\n },\n builds: function(slug) {\n return \"/\" + slug + \"/builds\";\n },\n pullRequests: function(slug) {\n return \"/\" + slug + \"/pull_requests\";\n },\n branches: function(slug) {\n return \"/\" + slug + \"/branches\";\n },\n build: function(slug, id) {\n return \"/\" + slug + \"/builds/\" + id;\n },\n job: function(slug, id) {\n return \"/\" + slug + \"/jobs/\" + id;\n },\n githubCommit: function(slug, sha) {\n return \"http://github.com/\" + slug + \"/commit/\" + sha;\n },\n githubRepo: function(slug) {\n return \"http://github.com/\" + slug;\n },\n githubWatchers: function(slug) {\n return \"http://github.com/\" + slug + \"/watchers\";\n },\n githubNetwork: function(slug) {\n return \"http://github.com/\" + slug + \"/network\";\n },\n githubAdmin: function(slug) {\n return \"http://github.com/\" + slug + \"/admin/hooks#travis_minibucket\";\n },\n statusImage: function(slug, branch) {\n return (\"https://secure.travis-ci.org/\" + slug + \".png\") + (branch ? \"?branch=\" + branch : '');\n },\n email: function(email) {\n return \"mailto:\" + email;\n },\n account: function(login) {\n return \"/profile/\" + login;\n },\n user: function(login) {\n return \"/profile/\" + login + \"/me\";\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=helpers/urls");minispade.register('models', "(function() {(function() {\nminispade.require('models/extensions');\nminispade.require('models/account');\nminispade.require('models/artifact');\nminispade.require('models/branch');\nminispade.require('models/build');\nminispade.require('models/commit');\nminispade.require('models/event');\nminispade.require('models/hook');\nminispade.require('models/job');\nminispade.require('models/repo');\nminispade.require('models/sponsor');\nminispade.require('models/user');\nminispade.require('models/worker');\n\n}).call(this);\n\n})();\n//@ sourceURL=models");minispade.register('models/account', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Account = Travis.Model.extend({\n primaryKey: 'login',\n login: DS.attr('string'),\n name: DS.attr('string'),\n type: DS.attr('string'),\n reposCount: DS.attr('number'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('login'));\n }).property()\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/account");minispade.register('models/artifact', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Artifact = Travis.Model.extend({\n body: DS.attr('string'),\n init: function() {\n this._super.apply(this, arguments);\n this.set('queue', Ember.A([]));\n this.addObserver('body', this.fetchWorker);\n return this.fetchWorker();\n },\n append: function(body) {\n if (this.get('isLoaded')) {\n return this.set('body', this.get('body') + body);\n } else {\n return this.get('queue').pushObject(body);\n }\n },\n recordDidLoad: (function() {\n var queue;\n if (this.get('isLoaded')) {\n queue = this.get('queue');\n if (queue.get('length') > 0) {\n return this.append(queue.toArray().join(''));\n }\n }\n }).observes('isLoaded'),\n fetchWorker: function() {\n var body, line, match, worker;\n if (body = this.get('body')) {\n line = body.split(\"\\n\")[0];\n if (line && (match = line.match(/Using worker: (.*)/))) {\n if (worker = match[1]) {\n worker = worker.trim().split(':')[0];\n this.set('workerName', worker);\n return this.removeObserver('body', this.fetchWorker);\n }\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/artifact");minispade.register('models/branch', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Branch = Travis.Model.extend(Travis.Helpers, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n duration: DS.attr('number'),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n commit: DS.belongsTo('Travis.Commit'),\n repo: (function() {\n if (this.get('repoId')) {\n return Travis.Repo.find(this.get('repoId'));\n }\n }).property('repoId'),\n updateTimes: function() {\n this.notifyPropertyChange('started_at');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n this.Travis.Branch.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/branch");minispade.register('models/build', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Build = Travis.Model.extend(Travis.DurationCalculations, {\n eventType: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n commitId: DS.attr('number'),\n state: DS.attr('string'),\n number: DS.attr('number'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string', {\n key: 'started_at'\n }),\n finishedAt: DS.attr('string', {\n key: 'finished_at'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n commit: DS.belongsTo('Travis.Commit'),\n jobs: DS.hasMany('Travis.Job', {\n key: 'job_ids'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n isMatrix: (function() {\n return this.get('data.job_ids.length') > 1;\n }).property('data.job_ids.length'),\n isFinished: (function() {\n return this.get('state') === 'finished';\n }).property('state'),\n requiredJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return !data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n allowedFailureJobs: (function() {\n return this.get('jobs').filter(function(data) {\n return data.get('allowFailure');\n });\n }).property('jobs.@each.allowFailure'),\n configKeys: (function() {\n var config, headers, key, keys;\n if (!(config = this.get('config'))) {\n return [];\n }\n keys = $.intersect($.keys(config), Travis.CONFIG_KEYS);\n headers = (function() {\n var _i, _len, _ref, _results;\n _ref = ['build.job', 'build.duration', 'build.finished_at'];\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n key = _ref[_i];\n _results.push(I18n.t(key));\n }\n return _results;\n })();\n return $.map(headers.concat(keys), function(key) {\n return $.camelize(key);\n });\n }).property('config'),\n requeue: (function() {\n return Travis.ajax.post('/requests', {\n build_id: this.get('id')\n });\n })\n });\n\n this.Travis.Build.reopenClass({\n byRepoId: function(id, parameters) {\n return this.find($.extend(parameters || {}, {\n repository_id: id\n }));\n },\n olderThanNumber: function(id, build_number) {\n return this.find({\n url: \"/builds\",\n repository_id: id,\n after_number: build_number\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/build");minispade.register('models/commit', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Commit = Travis.Model.extend({\n buildId: DS.attr('number'),\n sha: DS.attr('string'),\n branch: DS.attr('string'),\n message: DS.attr('string'),\n compareUrl: DS.attr('string'),\n authorName: DS.attr('string'),\n authorEmail: DS.attr('string'),\n committerName: DS.attr('string'),\n committerEmail: DS.attr('string'),\n build: DS.belongsTo('Travis.Build', {\n key: 'buildId'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/commit");minispade.register('models/event', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Event = Travis.Model.extend({\n event: DS.attr('string'),\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n sourceId: DS.attr('number', {\n key: 'source_id'\n }),\n sourceType: DS.attr('string', {\n key: 'source_type'\n }),\n createdAt: DS.attr('string', {\n key: 'created_at'\n }),\n event_: (function() {\n return this.get('event');\n }).property('event'),\n result: (function() {\n return this.get('data.data.result');\n }).property('data.data.result'),\n message: (function() {\n return this.get('data.data.message');\n }).property('data.data.message'),\n source: (function() {\n var type;\n if (type = this.get('sourceType')) {\n return Travis[type].find(this.get('sourceId'));\n }\n }).property('sourceType', 'sourceId')\n });\n\n this.Travis.Event.reopenClass({\n byRepoId: function(id) {\n return this.find({\n repository_id: id\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/event");minispade.register('models/extensions', "(function() {(function() {\n\n Travis.DurationCalculations = Ember.Mixin.create({\n duration: (function() {\n var duration;\n if (duration = this.get('_duration')) {\n return duration;\n } else {\n return Travis.Helpers.durationFrom(this.get('startedAt'), this.get('finishedAt'));\n }\n }).property('_duration', 'finishedAt', 'startedAt'),\n updateTimes: function() {\n this.notifyPropertyChange('_duration');\n return this.notifyPropertyChange('finished_at');\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/extensions");minispade.register('models/hook', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Hook = Travis.Model.extend({\n name: DS.attr('string'),\n ownerName: DS.attr('string'),\n description: DS.attr('string'),\n active: DS.attr('boolean'),\n account: (function() {\n return this.get('slug').split('/')[0];\n }).property('slug'),\n slug: (function() {\n return \"\" + (this.get('ownerName')) + \"/\" + (this.get('name'));\n }).property('ownerName', 'name'),\n urlGithub: (function() {\n return \"http://github.com/\" + (this.get('slug'));\n }).property(),\n urlGithubAdmin: (function() {\n return \"http://github.com/\" + (this.get('slug')) + \"/admin/hooks#travis_minibucket\";\n }).property(),\n toggle: function() {\n var transaction;\n transaction = this.get('store').transaction();\n transaction.add(this);\n this.set('active', !this.get('active'));\n return transaction.commit();\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/hook");minispade.register('models/job', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Job = Travis.Model.extend(Travis.DurationCalculations, {\n repoId: DS.attr('number', {\n key: 'repository_id'\n }),\n buildId: DS.attr('number'),\n commitId: DS.attr('number'),\n logId: DS.attr('number'),\n queue: DS.attr('string'),\n state: DS.attr('string'),\n number: DS.attr('string'),\n result: DS.attr('number'),\n _duration: DS.attr('number', {\n key: 'duration'\n }),\n startedAt: DS.attr('string'),\n finishedAt: DS.attr('string'),\n allowFailure: DS.attr('boolean', {\n key: 'allow_failure'\n }),\n repo: DS.belongsTo('Travis.Repo', {\n key: 'repository_id'\n }),\n build: DS.belongsTo('Travis.Build', {\n key: 'build_id'\n }),\n commit: DS.belongsTo('Travis.Commit', {\n key: 'commit_id'\n }),\n log: DS.belongsTo('Travis.Artifact', {\n key: 'log_id'\n }),\n config: (function() {\n return Travis.Helpers.compact(this.get('data.config'));\n }).property('data.config'),\n sponsor: (function() {\n var worker;\n worker = this.get('log.workerName');\n if (worker && worker.length) {\n return Travis.WORKERS[worker] || {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n };\n }\n }).property('log.workerName'),\n configValues: (function() {\n var config;\n if (config = this.get('config')) {\n return $.values($.only.apply(config, Travis.CONFIG_KEYS));\n } else {\n return [];\n }\n }).property('config'),\n appendLog: function(text) {\n var log;\n if (log = this.get('log')) {\n return log.append(text);\n }\n },\n subscribe: function() {\n var id;\n if (id = this.get('id')) {\n return Travis.app.pusher.subscribe(\"job-\" + id);\n }\n },\n onStateChange: (function() {\n if (this.get('state') === 'finished') {\n return Travis.app.pusher.unsubscribe(\"job-\" + (this.get('id')));\n }\n }).observes('state')\n });\n\n this.Travis.Job.reopenClass({\n queued: function(queue) {\n this.find();\n return Travis.app.store.filter(this, function(job) {\n var queued;\n queued = ['created', 'queued'].indexOf(job.get('state')) !== -1;\n return queued && (!queue || job.get('queue') === (\"builds.\" + queue));\n });\n },\n findMany: function(ids) {\n return Travis.app.store.findMany(this, ids);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/job");minispade.register('models/repo', "(function() {(function() {\nminispade.require('travis/expandable_record_array');\nminispade.require('travis/model');\n\n this.Travis.Repo = Travis.Model.extend({\n slug: DS.attr('string'),\n description: DS.attr('string'),\n lastBuildId: DS.attr('number'),\n lastBuildNumber: DS.attr('string'),\n lastBuildResult: DS.attr('number'),\n lastBuildStartedAt: DS.attr('string'),\n lastBuildFinishedAt: DS.attr('string'),\n lastBuild: DS.belongsTo('Travis.Build'),\n builds: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'push'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n pullRequests: (function() {\n var array, builds, id;\n id = this.get('id');\n builds = Travis.Build.byRepoId(id, {\n event_type: 'pull_request'\n });\n array = Travis.ExpandableRecordArray.create({\n type: Travis.Build,\n content: Ember.A([]),\n store: this.get('store')\n });\n array.load(builds);\n return array;\n }).property(),\n branches: (function() {\n return Travis.Branch.byRepoId(this.get('id'));\n }).property(),\n events: (function() {\n return Travis.Event.byRepoId(this.get('id'));\n }).property(),\n owner: (function() {\n return (this.get('slug') || '').split('/')[0];\n }).property('slug'),\n name: (function() {\n return (this.get('slug') || '').split('/')[1];\n }).property('slug'),\n lastBuildDuration: (function() {\n var duration;\n duration = this.get('data.last_build_duration');\n if (!duration) {\n duration = Travis.Helpers.durationFrom(this.get('lastBuildStartedAt'), this.get('lastBuildFinishedAt'));\n }\n return duration;\n }).property('data.last_build_duration', 'lastBuildStartedAt', 'lastBuildFinishedAt'),\n sortOrder: (function() {\n var lastBuildFinishedAt;\n if (lastBuildFinishedAt = this.get('lastBuildFinishedAt')) {\n return -new Date(lastBuildFinishedAt).getTime();\n } else {\n return -new Date('9999').getTime() - parseInt(this.get('lastBuildId'));\n }\n }).property('lastBuildFinishedAt', 'lastBuildId'),\n stats: (function() {\n var _this = this;\n return this.get('_stats') || $.get(\"https://api.github.com/repos/\" + (this.get('slug')), function(data) {\n _this.set('_stats', data);\n return _this.notifyPropertyChange('stats');\n }) && {};\n }).property(),\n updateTimes: function() {\n return this.notifyPropertyChange('lastBuildDuration');\n }\n });\n\n this.Travis.Repo.reopenClass({\n recent: function() {\n return this.find();\n },\n ownedBy: function(login) {\n return this.find({\n owner_name: login,\n orderBy: 'name'\n });\n },\n accessibleBy: function(login) {\n return this.find({\n member: login,\n orderBy: 'name'\n });\n },\n search: function(query) {\n return this.find({\n search: query,\n orderBy: 'name'\n });\n },\n bySlug: function(slug) {\n var repo;\n repo = $.select(this.find().toArray(), function(repo) {\n return repo.get('slug') === slug;\n });\n if (repo.length > 0) {\n return repo;\n } else {\n return this.find({\n slug: slug\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/repo");minispade.register('models/sponsor', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Sponsor = Travis.Model.extend({\n type: DS.attr('string'),\n url: DS.attr('string'),\n link: DS.attr('string'),\n image: (function() {\n return \"/images/sponsors/\" + (this.get('data.image'));\n }).property('data.image')\n });\n\n Travis.Sponsor.reopenClass({\n decks: function() {\n return this.platinum().concat(this.gold());\n },\n platinum: function() {\n var platinum, sponsor, _i, _len, _results;\n platinum = this.byType('platinum').toArray();\n _results = [];\n for (_i = 0, _len = platinum.length; _i < _len; _i++) {\n sponsor = platinum[_i];\n _results.push([sponsor]);\n }\n return _results;\n },\n gold: function() {\n var gold, _results;\n gold = this.byType('gold').toArray();\n _results = [];\n while (gold.length > 0) {\n _results.push(gold.splice(0, 2));\n }\n return _results;\n },\n links: function() {\n return this.byType('silver');\n },\n byType: function() {\n var types;\n types = Array.prototype.slice.apply(arguments);\n return Travis.Sponsor.filter(function(sponsor) {\n return types.indexOf(sponsor.get('type')) !== -1;\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/sponsor");minispade.register('models/user', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('travis/model');\n\n this.Travis.User = Travis.Model.extend({\n name: DS.attr('string'),\n email: DS.attr('string'),\n login: DS.attr('string'),\n token: DS.attr('string'),\n locale: DS.attr('string'),\n gravatarId: DS.attr('string'),\n isSyncing: DS.attr('boolean'),\n syncedAt: DS.attr('string'),\n repoCount: DS.attr('number'),\n init: function() {\n if (this.get('isSyncing')) {\n this.poll();\n }\n this._super();\n return Ember.run.next(this, function() {\n var transaction;\n transaction = this.get('store').transaction();\n return transaction.add(this);\n });\n },\n urlGithub: (function() {\n return \"https://github.com/\" + (this.get('login'));\n }).property(),\n permissions: (function() {\n var _this = this;\n if (!this.permissions) {\n this.permissions = Ember.ArrayProxy.create({\n content: []\n });\n Travis.ajax.get('/users/permissions', function(data) {\n return _this.permissions.set('content', data.permissions);\n });\n }\n return this.permissions;\n }).property(),\n updateLocale: function(locale) {\n var observer, self, transaction;\n this.setWithSession('locale', locale);\n transaction = this.get('transaction');\n transaction.commit();\n self = this;\n observer = function() {\n if (!self.get('isSaving')) {\n self.removeObserver('isSaving', observer);\n transaction = self.get('store').transaction();\n return transaction.add(self);\n }\n };\n return this.addObserver('isSaving', observer);\n },\n type: (function() {\n return 'user';\n }).property(),\n sync: function() {\n Travis.ajax.post('/users/sync');\n this.setWithSession('isSyncing', true);\n return this.poll();\n },\n poll: function() {\n var _this = this;\n return Travis.ajax.get('/users', function(data) {\n if (data.user.is_syncing) {\n return Ember.run.later(_this, _this.poll.bind(_this), 3000);\n } else {\n _this.set('isSyncing', false);\n return _this.setWithSession('syncedAt', data.user.synced_at);\n }\n });\n },\n setWithSession: function(name, value) {\n var user;\n this.set(name, value);\n user = JSON.parse(typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.getItem('travis.user') : void 0);\n user[$.underscore(name)] = this.get(name);\n return typeof sessionStorage !== \"undefined\" && sessionStorage !== null ? sessionStorage.setItem('travis.user', JSON.stringify(user)) : void 0;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/user");minispade.register('models/worker', "(function() {(function() {\nminispade.require('travis/model');\n\n this.Travis.Worker = Travis.Model.extend({\n state: DS.attr('string'),\n name: DS.attr('string'),\n host: DS.attr('string'),\n lastSeenAt: DS.attr('string'),\n payload: (function() {\n return this.get('data.payload');\n }).property('data.payload'),\n number: (function() {\n return this.get('name').match(/\\d+$/)[0];\n }).property('name'),\n isWorking: (function() {\n return this.get('state') === 'working';\n }).property('state'),\n repo: (function() {\n return Travis.Repo.find(this.get('payload.repository.id') || this.get('payload.repo.id'));\n }).property('payload.repository.id', 'payload.repo.id'),\n job_id: (function() {\n return this.get('payload.job.id');\n }).property('payload.job.id'),\n job: (function() {\n return Travis.Job.find(this.get('job_id'));\n }).property('job_id'),\n nameForSort: (function() {\n var id, match, name;\n if (name = this.get('name')) {\n match = name.match(/(.*?)-(\\d+)/);\n if (match) {\n name = match[1];\n id = match[2].toString();\n if (id.length < 2) {\n id = \"00\" + id;\n } else if (id.length < 3) {\n id = \"0\" + id;\n }\n return \"\" + name + \"-\" + id;\n }\n }\n }).property('name')\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=models/worker");minispade.register('pusher', "(function() {(function() {\n\n Travis.Pusher = function(key) {\n if (key) {\n this.init(key);\n }\n return this;\n };\n\n $.extend(Travis.Pusher, {\n CHANNELS: ['common'],\n CHANNEL_PREFIX: ''\n });\n\n $.extend(Travis.Pusher.prototype, {\n active_channels: [],\n init: function(key) {\n var channel, _i, _len, _ref, _results;\n Pusher.warn = this.warn.bind(this);\n this.pusher = new Pusher(key);\n _ref = Travis.Pusher.CHANNELS;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n channel = _ref[_i];\n _results.push(this.subscribe(channel));\n }\n return _results;\n },\n subscribe: function(channel) {\n var _this = this;\n if (this.pusher && this.active_channels.indexOf(channel) === -1) {\n this.active_channels.push(channel);\n return this.pusher.subscribe(this.prefix(channel)).bind_all(function(event, data) {\n return _this.receive(event, data);\n });\n }\n },\n unsubscribe: function(channel) {\n var ix;\n ix = this.active_channels.indexOf(channel);\n if (this.pusher && ix === -1) {\n this.active_channels.splice(ix, 1);\n return this.pusher.unsubscribe(this.prefix(channel));\n }\n },\n prefix: function(channel) {\n return \"\" + Travis.Pusher.CHANNEL_PREFIX + channel;\n },\n receive: function(event, data) {\n if (event.substr(0, 6) === 'pusher') {\n return;\n }\n if (data.id) {\n data = this.normalize(event, data);\n }\n return Ember.run.next(function() {\n return Travis.app.store.receive(event, data);\n });\n },\n normalize: function(event, data) {\n switch (event) {\n case 'build:started':\n case 'build:finished':\n return data;\n case 'job:created':\n case 'job:started':\n case 'job:finished':\n case 'job:log':\n if (data.queue) {\n data.queue = data.queue.replace('builds.', '');\n }\n return {\n job: data\n };\n case 'worker:added':\n case 'worker:updated':\n case 'worker:removed':\n return {\n worker: data\n };\n }\n },\n warn: function(type, warning) {\n if (!this.ignoreWarning(warning)) {\n return console.warn(warning);\n }\n },\n ignoreWarning: function(warning) {\n var message, _ref;\n if (message = (_ref = warning.data) != null ? _ref.message : void 0) {\n return message.indexOf('Existing subscription') === 0 || message.indexOf('No current subscription') === 0;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=pusher");minispade.register('routes', "(function() {(function() {\n var defaultRoute, lineNumberRoute, nonHashRouteMatcher, resolvePath;\nminispade.require('travis/location');\n\n defaultRoute = Ember.Route.extend({\n route: '/',\n index: 1000\n });\n\n lineNumberRoute = Ember.Route.extend({\n route: '#L:number',\n index: 1,\n connectOutlets: function(router) {\n return router.saveLineNumberHash();\n },\n routeMatcher: Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([0-9]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(regex);\n }\n });\n }\n }).cacheable()\n });\n\n nonHashRouteMatcher = Ember.computed(function() {\n var route;\n if (route = this.get('route')) {\n return Ember._RouteMatcher.create({\n route: route,\n init: function() {\n var count, escapeForRegex, escaped, identifiers, regex;\n escapeForRegex = function(text) {\n return text.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^\\$|#\\s]/g, \"\\\\$&\");\n };\n route = this.route;\n identifiers = [];\n count = 1;\n if (route.charAt(0) === '/') {\n route = this.route = route.substr(1);\n }\n escaped = escapeForRegex(route);\n regex = escaped.replace(/:([a-z_]+)(?=$|\\/)/gi, function(match, id) {\n identifiers[count++] = id;\n return \"([^/#]+)\";\n });\n this.identifiers = identifiers;\n return this.regex = new RegExp(\"^/?\" + regex);\n }\n });\n }\n }).cacheable();\n\n resolvePath = function(manager, path) {\n var childStates, match, resolvedState, state, states;\n if (this.get('isLeafRoute')) {\n return Ember.A();\n }\n childStates = this.get('childStates');\n childStates = Ember.A(childStates.filterProperty('isRoutable'));\n childStates = childStates.sort(function(a, b) {\n var aDynamicSegments, aIndex, aRoute, bDynamicSegments, bIndex, bRoute;\n aDynamicSegments = a.get('routeMatcher.identifiers.length');\n bDynamicSegments = b.get('routeMatcher.identifiers.length');\n aRoute = a.get('route');\n bRoute = b.get('route');\n aIndex = a.get('index');\n bIndex = b.get('index');\n if (aIndex && bIndex) {\n return aIndex - bIndex;\n }\n if (aRoute.indexOf(bRoute) === 0) {\n return -1;\n } else if (bRoute.indexOf(aRoute) === 0) {\n return 1;\n }\n if (aDynamicSegments !== bDynamicSegments) {\n return aDynamicSegments - bDynamicSegments;\n }\n return b.get('route.length') - a.get('route.length');\n });\n match = null;\n state = childStates.find(function(state) {\n var matcher;\n matcher = state.get('routeMatcher');\n if (match = matcher.match(path)) {\n return match;\n }\n });\n Ember.assert(\"Could not find state for path \" + path, !!state);\n resolvedState = Ember._ResolvedState.create({\n manager: manager,\n state: state,\n match: match\n });\n states = state.resolvePath(manager, match.remaining);\n return Ember.A([resolvedState]).pushObjects(states);\n };\n\n Travis.Router = Ember.Router.extend({\n location: 'travis',\n enableLogging: true,\n initialState: 'loading',\n showRoot: Ember.Route.transitionTo('root.home.show'),\n showStats: Ember.Route.transitionTo('root.stats'),\n showRepo: Ember.Route.transitionTo('root.home.repo.show'),\n showBuilds: Ember.Route.transitionTo('root.home.repo.builds.index'),\n showBuild: Ember.Route.transitionTo('root.home.repo.builds.show'),\n showPullRequests: Ember.Route.transitionTo('root.home.repo.pullRequests'),\n showBranches: Ember.Route.transitionTo('root.home.repo.branches'),\n showEvents: Ember.Route.transitionTo('root.home.repo.events'),\n showJob: Ember.Route.transitionTo('root.home.repo.job'),\n showProfile: Ember.Route.transitionTo('root.profile'),\n showAccount: Ember.Route.transitionTo('root.profile.account'),\n showUserProfile: Ember.Route.transitionTo('root.profile.account.profile'),\n saveLineNumberHash: function(path) {\n return Ember.run.next(this, function() {\n var match;\n path = path || this.get('location').getURL();\n if (match = path.match(/#L\\d+$/)) {\n return this.set('repoController.lineNumberHash', match[0]);\n }\n });\n },\n reload: function() {\n var url;\n url = this.get('location').getURL();\n this.transitionTo('loading');\n return this.route(url);\n },\n signedIn: function() {\n return !!Travis.app.get('auth.user');\n },\n needsAuth: function(path) {\n return path.indexOf('/profile') === 0;\n },\n afterSignOut: function() {\n return this.authorize('/');\n },\n authorize: function(path) {\n if (!this.signedIn() && this.needsAuth(path)) {\n sessionStorage.setItem('travis.after_signin_path', path);\n this.transitionTo('root.auth');\n return Travis.app.autoSignIn();\n } else {\n this.transitionTo('root');\n return this.route(path);\n }\n },\n loading: Ember.Route.extend({\n routePath: function(router, path) {\n router.saveLineNumberHash(path);\n return router.authorize(path);\n }\n }),\n root: Ember.Route.extend({\n route: '/',\n loading: Ember.State.extend(),\n afterSignIn: (function() {}),\n auth: Ember.Route.extend({\n route: '/auth',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('authLayout');\n $('body').attr('id', 'auth');\n router.get('authLayoutController').connectOutlet('top', 'top');\n return router.get('authLayoutController').connectOutlet('main', 'signin');\n },\n afterSignIn: function(router) {\n var path;\n path = sessionStorage.getItem('travis.after_signin_path');\n sessionStorage.removeItem('travis.after_signin_path');\n return router.route(path || '/');\n }\n }),\n stats: Ember.Route.extend({\n route: '/stats',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('statsLayout');\n $('body').attr('id', 'stats');\n router.get('statsLayoutController').connectOutlet('top', 'top');\n return router.get('statsLayoutController').connectOutlet('main', 'stats');\n }\n }),\n profile: Ember.Route.extend({\n initialState: 'index',\n route: '/profile',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('profileLayout');\n $('body').attr('id', 'profile');\n router.get('accountsController').set('content', Travis.Account.find());\n router.get('profileLayoutController').connectOutlet('top', 'top');\n return router.get('profileLayoutController').connectOutlet('left', 'accounts');\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('profileLayoutController').connectOutlet('main', 'profile');\n return router.get('profileController').activate('hooks');\n }\n }),\n account: Ember.Route.extend({\n initialState: 'index',\n route: '/:login',\n connectOutlets: function(router, account) {\n var params;\n if (account) {\n params = {\n login: account.get('login')\n };\n return router.get('profileController').setParams(params);\n } else {\n return router.send('showProfile');\n }\n },\n deserialize: function(router, params) {\n var account, controller, deferred, observer;\n controller = router.get('accountsController');\n if (!controller.get('content')) {\n controller.set('content', Travis.Account.find());\n }\n account = controller.findByLogin(params.login);\n if (account) {\n return account;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (account = controller.findByLogin(params.login)) {\n controller.removeObserver('content.length', observer);\n return deferred.resolve(account);\n }\n };\n controller.addObserver('content.length', observer);\n return deferred.promise();\n }\n },\n serialize: function(router, account) {\n if (account) {\n return {\n login: account.get('login')\n };\n } else {\n return {};\n }\n },\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('profileController').activate('hooks');\n }\n }),\n profile: Ember.Route.extend({\n route: '/profile',\n connectOutlets: function(router) {\n return router.get('profileController').activate('user');\n }\n })\n })\n }),\n home: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n router.get('applicationController').connectOutlet('homeLayout');\n $('body').attr('id', 'home');\n router.get('homeLayoutController').connectOutlet('left', 'repos');\n router.get('homeLayoutController').connectOutlet('right', 'sidebar');\n router.get('homeLayoutController').connectOutlet('top', 'top');\n router.get('homeLayoutController').connectOutlet('main', 'repo');\n router.get('homeLayoutController').connectOutlet('flash', 'flash');\n return router.get('repoController').set('repos', router.get('reposController'));\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n showWithLineNumber: Ember.Route.extend({\n route: '/#/L:number',\n connectOutlets: function(router) {\n return router.get('repoController').activate('index');\n }\n }),\n repo: Ember.Route.extend({\n route: '/:owner/:name',\n routeMatcher: nonHashRouteMatcher,\n connectOutlets: function(router, repo) {\n return router.get('repoController').set('repo', repo);\n },\n deserialize: function(router, params) {\n var deferred, observer, repos, slug;\n slug = \"\" + params.owner + \"/\" + params.name;\n repos = Travis.Repo.bySlug(slug);\n deferred = $.Deferred();\n observer = function() {\n if (repos.get('isLoaded')) {\n repos.removeObserver('isLoaded', observer);\n return deferred.resolve(repos.objectAt(0));\n }\n };\n if (repos.length) {\n deferred.resolve(repos[0]);\n } else {\n repos.addObserver('isLoaded', observer);\n }\n return deferred.promise();\n },\n serialize: function(router, repo) {\n if (repo) {\n return {\n owner: repo.get('owner'),\n name: repo.get('name')\n };\n } else {\n return {};\n }\n },\n show: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router) {\n return router.get('repoController').activate('current');\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n resolvePath: resolvePath\n }),\n builds: Ember.Route.extend({\n route: '/builds',\n index: Ember.Route.extend({\n route: '/',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('builds');\n }\n }),\n show: Ember.Route.extend({\n route: '/:build_id',\n connectOutlets: function(router, build) {\n if (!build.get) {\n build = Travis.Build.find(build);\n }\n router.get('repoController').set('build', build);\n return router.get('repoController').activate('build');\n },\n serialize: function(router, build) {\n if (build.get) {\n return {\n build_id: build.get('id')\n };\n } else {\n return {\n build_id: build\n };\n }\n },\n deserialize: function(router, params) {\n var build, deferred, observer;\n build = Travis.Build.find(params.build_id);\n if (build.get('id')) {\n return build;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (build.get('id')) {\n build.removeObserver('id', observer);\n return deferred.resolve(build);\n }\n };\n build.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n }),\n pullRequests: Ember.Route.extend({\n route: '/pull_requests',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('pull_requests');\n }\n }),\n branches: Ember.Route.extend({\n route: '/branches',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('branches');\n }\n }),\n events: Ember.Route.extend({\n route: '/events',\n connectOutlets: function(router, repo) {\n return router.get('repoController').activate('events');\n }\n }),\n job: Ember.Route.extend({\n route: '/jobs/:job_id',\n connectOutlets: function(router, job) {\n if (!job.get) {\n job = Travis.Job.find(job);\n }\n router.get('repoController').set('job', job);\n return router.get('repoController').activate('job');\n },\n serialize: function(router, job) {\n if (job.get) {\n return {\n job_id: job.get('id')\n };\n } else {\n return {\n job_id: job\n };\n }\n },\n deserialize: function(router, params) {\n var deferred, job, observer;\n job = Travis.Job.find(params.job_id);\n if (job.get('id')) {\n return job;\n } else {\n deferred = $.Deferred();\n observer = function() {\n if (job.get('id')) {\n job.removeObserver('id', observer);\n return deferred.resolve(job);\n }\n };\n job.addObserver('id', observer);\n return deferred.promise();\n }\n },\n initialState: 'default',\n \"default\": defaultRoute,\n lineNumber: lineNumberRoute,\n routeMatcher: nonHashRouteMatcher,\n resolvePath: resolvePath\n })\n })\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=routes");minispade.register('slider', "(function() {(function() {\n\n this.Travis.Slider = function() {\n if ((typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.getItem('travis.maximized') : void 0) === 'true') {\n this.minimize();\n }\n return this;\n };\n\n $.extend(Travis.Slider.prototype, {\n persist: function() {\n return typeof localStorage !== \"undefined\" && localStorage !== null ? localStorage.setItem('travis.maximized', this.isMinimized()) : void 0;\n },\n isMinimized: function() {\n return $('body').hasClass('maximized');\n },\n minimize: function() {\n return $('body').addClass('maximized');\n },\n toggle: function() {\n var element;\n $('body').toggleClass('maximized');\n this.persist();\n element = $(' ');\n $('#top .profile').append(element);\n return Em.run.later((function() {\n return element.remove();\n }), 10);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=slider");minispade.register('store', "(function() {(function() {\n var DATA_PROXY,\n __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };\nminispade.require('store/rest_adapter');\n\n DATA_PROXY = {\n get: function(name) {\n return this.savedData[name];\n }\n };\n\n Travis.Store = DS.Store.extend({\n revision: 4,\n adapter: Travis.RestAdapter.create(),\n load: function(type, id, hash) {\n var record, result;\n result = this._super.apply(this, arguments);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n record.set('incomplete', false);\n record.set('complete', true);\n }\n return result;\n },\n merge: function(type, id, hash) {\n var clientId, data, dataCache, primaryKey, record, recordCache, typeMap;\n if (hash === void 0) {\n hash = id;\n primaryKey = type.proto().primaryKey;\n Ember.assert(\"A data hash was loaded for a record of type \" + type.toString() + \" but no primary key '\" + primaryKey + \"' was provided.\", hash[primaryKey]);\n id = hash[primaryKey];\n }\n typeMap = this.typeMapFor(type);\n dataCache = typeMap.cidToHash;\n clientId = typeMap.idToCid[id];\n recordCache = this.get('recordCache');\n if (clientId !== void 0) {\n if (data = dataCache[clientId]) {\n $.extend(data, hash);\n } else {\n dataCache[clientId] = hash;\n }\n if (record = recordCache[clientId]) {\n record.send('didChangeData');\n }\n } else {\n clientId = this.pushHash(hash, id, type);\n }\n if (clientId) {\n DATA_PROXY.savedData = hash;\n this.updateRecordArrays(type, clientId, DATA_PROXY);\n return {\n id: id,\n clientId: clientId\n };\n }\n },\n receive: function(event, data) {\n var job, mappings, name, type, _ref;\n _ref = event.split(':'), name = _ref[0], type = _ref[1];\n mappings = this.adapter.get('mappings');\n type = mappings[name];\n if (event === 'job:log') {\n if (job = this.find(Travis.Job, data['job']['id'])) {\n return job.appendLog(data['job']['_log']);\n }\n } else if (data[type.singularName()]) {\n return this._loadOne(this, type, data);\n } else if (data[type.pluralName()]) {\n return this._loadMany(this, type, data);\n } else {\n if (!type) {\n throw \"can't load data for \" + name;\n }\n }\n },\n _loadOne: function(store, type, json) {\n var result, root;\n root = type.singularName();\n if (type === Travis.Build && json.repository) {\n result = this.loadIncomplete(Travis.Repo, json.repository);\n }\n return this.loadIncomplete(type, json[root]);\n },\n loadIncomplete: function(type, hash) {\n var record, result;\n result = this.merge(type, hash);\n if (result && result.clientId) {\n record = this.findByClientId(type, result.clientId);\n if (!record.get('complete')) {\n record.set('incomplete', true);\n record.loadedAttributes = Object.keys(hash);\n }\n this._updateAssociations(type, type.singularName(), hash);\n return record;\n }\n },\n _loadMany: function(store, type, json) {\n var root;\n root = type.pluralName();\n this.adapter.sideload(store, type, json, root);\n return this.loadMany(type, json[root]);\n },\n _updateAssociations: function(type, name, data) {\n var _this = this;\n return Em.get(type, 'associationsByName').forEach(function(key, meta) {\n var clientId, dataProxy, id, ids, parent, _ref;\n if (meta.kind === 'belongsTo') {\n id = data[\"\" + key + \"_id\"];\n if (clientId = _this.typeMapFor(meta.type).idToCid[id]) {\n if (parent = _this.findByClientId(meta.type, clientId, id)) {\n dataProxy = parent.get('data');\n if (ids = dataProxy.get(\"\" + name + \"_ids\")) {\n if (_ref = data.id, __indexOf.call(ids, _ref) < 0) {\n ids.pushObject(data.id);\n }\n return parent.send('didChangeData');\n }\n }\n }\n }\n });\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store");minispade.register('store/fixture_adapter', "(function() {(function() {\n\n this.Travis.FixtureAdapter = DS.Adapter.extend({\n find: function(store, type, id) {\n var fixtures;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n if (fixtures.hasLoaded) {\n return;\n }\n return setTimeout((function() {\n store.loadMany(type, fixtures);\n return fixtures.hasLoaded = true;\n }), 300);\n },\n findMany: function() {\n return this.find.apply(this, arguments);\n },\n findAll: function(store, type) {\n var fixtures, ids;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n ids = fixtures.map(function(item, index, self) {\n return item.id;\n });\n return store.loadMany(type, ids, fixtures);\n },\n findQuery: function(store, type, params, array) {\n var fixture, fixtures, hashes, key, matches, value;\n fixtures = type.FIXTURES;\n Ember.assert(\"Unable to find fixtures for model type \" + type.toString(), !!fixtures);\n hashes = (function() {\n var _i, _len, _results;\n _results = [];\n for (_i = 0, _len = fixtures.length; _i < _len; _i++) {\n fixture = fixtures[_i];\n matches = (function() {\n var _results1;\n _results1 = [];\n for (key in params) {\n value = params[key];\n _results1.push(key === 'orderBy' || fixture[key] === value);\n }\n return _results1;\n })();\n if (matches.reduce(function(a, b) {\n return a && b;\n })) {\n _results.push(fixture);\n } else {\n _results.push(null);\n }\n }\n return _results;\n })();\n return array.load(hashes.compact());\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/fixture_adapter");minispade.register('store/rest_adapter', "(function() {(function() {\nminispade.require('travis/ajax');\nminispade.require('models');\n\n this.Travis.RestAdapter = DS.RESTAdapter.extend({\n mappings: {\n repositories: Travis.Repo,\n repository: Travis.Repo,\n repos: Travis.Repo,\n repo: Travis.Repo,\n builds: Travis.Build,\n build: Travis.Build,\n commits: Travis.Commit,\n commit: Travis.Commit,\n jobs: Travis.Job,\n job: Travis.Job,\n account: Travis.Account,\n accounts: Travis.Account,\n worker: Travis.Worker,\n workers: Travis.Worker\n },\n plurals: {\n repositories: 'repositories',\n repository: 'repositories',\n repo: 'repos',\n repos: 'repos',\n build: 'builds',\n branch: 'branches',\n job: 'jobs',\n worker: 'workers',\n profile: 'profile'\n },\n ajax: function() {\n return Travis.ajax.ajax.apply(this, arguments);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=store/rest_adapter");minispade.register('tailing', "(function() {(function() {\n\n this.Travis.Tailing = function() {\n this.position = $(window).scrollTop();\n $(window).scroll(this.onScroll.bind(this));\n return this;\n };\n\n $.extend(Travis.Tailing.prototype, {\n options: {\n timeout: 200\n },\n run: function() {\n this.autoScroll();\n this.positionButton();\n if (this.active()) {\n return Ember.run.later(this.run.bind(this), this.options.timeout);\n }\n },\n toggle: function(event) {\n if (this.active()) {\n return this.stop();\n } else {\n return this.start();\n }\n },\n active: function() {\n return $('#tail').hasClass('active');\n },\n start: function() {\n $('#tail').addClass('active');\n return this.run();\n },\n stop: function() {\n return $('#tail').removeClass('active');\n },\n autoScroll: function() {\n var log, logBottom, win, winBottom;\n if (!this.active()) {\n return;\n }\n win = $(window);\n log = $('#log');\n logBottom = log.offset().top + log.outerHeight() + 40;\n winBottom = win.scrollTop() + win.height();\n if (logBottom - winBottom > 0) {\n return win.scrollTop(logBottom - win.height());\n }\n },\n onScroll: function() {\n var position;\n this.positionButton();\n position = $(window).scrollTop();\n if (position < this.position) {\n this.stop();\n }\n return this.position = position;\n },\n positionButton: function() {\n var max, offset, tail;\n tail = $('#tail');\n if (tail.length === 0) {\n return;\n }\n offset = $(window).scrollTop() - $('#log').offset().top;\n max = $('#log').height() - $('#tail').height() + 5;\n if (offset > max) {\n offset = max;\n }\n if (offset > 0) {\n return tail.css({\n top: offset - 2\n });\n } else {\n return tail.css({\n top: 0\n });\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=tailing");minispade.register('views', "(function() {(function() {\nminispade.require('ext/ember/namespace');\n\n this.Travis.reopen({\n View: Em.View.extend({\n popup: function(event) {\n this.popupCloseAll();\n return $(\"#\" + event.target.name).toggleClass('display');\n },\n popupClose: function(event) {\n return $(event.target).closest('.popup').removeClass('display');\n },\n popupCloseAll: function() {\n return $('.popup').removeClass('display');\n }\n })\n });\n\n this.Travis.reopen({\n HomeLayoutView: Travis.View.extend({\n templateName: 'layouts/home'\n }),\n AuthLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n }),\n ProfileLayoutView: Travis.View.extend({\n templateName: 'layouts/profile'\n }),\n StatsLayoutView: Travis.View.extend({\n templateName: 'layouts/simple'\n })\n });\nminispade.require('views/accounts');\nminispade.require('views/application');\nminispade.require('views/build');\nminispade.require('views/events');\nminispade.require('views/flash');\nminispade.require('views/job');\nminispade.require('views/repo');\nminispade.require('views/profile');\nminispade.require('views/sidebar');\nminispade.require('views/stats');\nminispade.require('views/signin');\nminispade.require('views/top');\n\n}).call(this);\n\n})();\n//@ sourceURL=views");minispade.register('views/accounts', "(function() {(function() {\n\n this.Travis.reopen({\n AccountsView: Travis.View.extend({\n tabBinding: 'controller.tab',\n templateName: 'profile/accounts',\n classAccounts: (function() {\n if (this.get('tab') === 'accounts') {\n return 'active';\n }\n }).property('tab')\n }),\n AccountsListView: Em.CollectionView.extend({\n elementId: 'accounts',\n accountBinding: 'content',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n accountBinding: 'content',\n typeBinding: 'content.type',\n selectedBinding: 'account.selected',\n classNames: ['account'],\n classNameBindings: ['type', 'selected'],\n name: (function() {\n return this.get('content.name') || this.get('content.login');\n }).property('content.login', 'content.name'),\n urlAccount: (function() {\n return Travis.Urls.account(this.get('account.login'));\n }).property('account.login')\n })\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/accounts");minispade.register('views/application', "(function() {(function() {\n\n this.Travis.reopen({\n ApplicationView: Travis.View.extend({\n templateName: 'application',\n classNames: ['application'],\n popup: function(event) {\n return console.log(event);\n },\n localeDidChange: (function() {\n var locale;\n if (locale = Travis.app.get('auth.user.locale')) {\n Travis.setLocale(locale);\n return Travis.app.get('router').reload();\n }\n }).observes('Travis.app.auth.user.locale'),\n click: function(event) {\n var targetAndParents;\n targetAndParents = $(event.target).parents().andSelf();\n if (!(targetAndParents.hasClass('open-popup') || targetAndParents.hasClass('popup'))) {\n this.popupCloseAll();\n }\n if (!targetAndParents.hasClass('menu')) {\n return $('.menu').removeClass('display');\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/application");minispade.register('views/build', "(function() {(function() {\n\n this.Travis.reopen({\n BuildsView: Travis.View.extend({\n templateName: 'builds/list',\n buildsBinding: 'controller.builds',\n showMore: function() {\n var id, number;\n id = this.get('controller.repo.id');\n number = this.get('builds.lastObject.number');\n return this.get('builds').load(Travis.Build.olderThanNumber(id, number));\n },\n ShowMoreButton: Em.View.extend({\n tagName: 'button',\n classNameBindings: ['isLoading'],\n attributeBindings: ['disabled'],\n isLoadingBinding: 'controller.builds.isLoading',\n template: Em.Handlebars.compile('{{view.label}}'),\n disabledBinding: 'isLoading',\n label: (function() {\n if (this.get('isLoading')) {\n return 'Loading';\n } else {\n return 'Show more';\n }\n }).property('isLoading'),\n click: function() {\n return this.get('parentView').showMore();\n }\n })\n }),\n BuildsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'controller.repo',\n buildBinding: 'context',\n commitBinding: 'build.commit',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha')\n }),\n BuildView: Travis.View.extend({\n templateName: 'builds/show',\n elementId: 'build',\n classNameBindings: ['color', 'loading'],\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n commitBinding: 'build.commit',\n currentItemBinding: 'build',\n loading: (function() {\n return !this.get('build.isComplete');\n }).property('build.isComplete'),\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('build.result'));\n }).property('build.result'),\n urlBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('build.id'));\n }).property('repo.slug', 'build.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/build");minispade.register('views/events', "(function() {(function() {\n\n this.Travis.reopen({\n EventsView: Travis.View.extend({\n templateName: 'events/list',\n eventsBinding: 'controller.events'\n }),\n EventsItemView: Travis.View.extend({\n tagName: 'tr'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/events");minispade.register('views/flash', "(function() {(function() {\n\n this.Travis.reopen({\n FlashView: Travis.View.extend({\n elementId: 'flash',\n tagName: 'ul',\n templateName: 'layouts/flash'\n }),\n FlashItemView: Travis.View.extend({\n tagName: 'li',\n classNameBindings: ['type'],\n type: (function() {\n return this.get('flash') && Ember.keys(this.get('flash'))[0];\n }).property('flash'),\n message: (function() {\n return this.get('flash') && this.get('flash')[this.get('type')];\n }).property('flash'),\n close: function(event) {\n return this.get('controller').removeObject(this.get('flash'));\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/flash");minispade.register('views/job', "(function() {(function() {\n\n this.Travis.reopen({\n JobsView: Travis.View.extend({\n templateName: 'jobs/list',\n buildBinding: 'controller.build'\n }),\n JobsItemView: Travis.View.extend({\n tagName: 'tr',\n classNameBindings: ['color'],\n repoBinding: 'context.repo',\n jobBinding: 'context',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id')\n }),\n JobView: Travis.View.extend({\n templateName: 'jobs/show',\n repoBinding: 'controller.repo',\n jobBinding: 'controller.job',\n commitBinding: 'job.commit',\n currentItemBinding: 'job',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('job.result'));\n }).property('job.result'),\n urlJob: (function() {\n return Travis.Urls.job(this.get('repo.slug'), this.get('job.id'));\n }).property('repo.slug', 'job.id'),\n urlGithubCommit: (function() {\n return Travis.Urls.githubCommit(this.get('repo.slug'), this.get('commit.sha'));\n }).property('repo.slug', 'commit.sha'),\n urlAuthor: (function() {\n return Travis.Urls.email(this.get('commit.authorEmail'));\n }).property('commit.authorEmail'),\n urlCommitter: (function() {\n return Travis.Urls.email(this.get('commit.committerEmail'));\n }).property('commit.committerEmail')\n }),\n LogView: Travis.View.extend({\n templateName: 'jobs/log',\n logBinding: 'job.log',\n scrollTo: function(hash) {\n $('#main').scrollTop(0);\n $('html,body').scrollTop($(hash).offset().top);\n return this.set('controller.lineNumberHash', null);\n },\n lineNumberHashDidChange: (function() {\n return this.tryScrollingToHashLineNumber();\n }).observes('controller.lineNumberHash'),\n tryScrollingToHashLineNumber: function() {\n var checker, hash, self;\n if (hash = this.get('controller.lineNumberHash')) {\n self = this;\n checker = function() {\n if (self.get('isDestroyed')) {\n return;\n }\n if ($(hash).length) {\n return self.scrollTo(hash);\n } else {\n return setTimeout(checker, 100);\n }\n };\n return checker();\n }\n },\n didInsertElement: function() {\n this._super.apply(this, arguments);\n return this.tryScrollingToHashLineNumber();\n },\n click: function(event) {\n var path, target;\n target = $(event.target);\n target.closest('.fold').toggleClass('open');\n if (target.is('.log-line-number')) {\n path = target.attr('href');\n Travis.app.get('router').route(path);\n event.stopPropagation();\n return false;\n }\n },\n toTop: function() {\n return $(window).scrollTop(0);\n },\n jobBinding: 'context',\n toggleTailing: function(event) {\n Travis.app.tailing.toggle();\n return event.preventDefault();\n },\n logSubscriber: (function() {\n var job, state;\n job = this.get('job');\n state = this.get('job.state');\n if (job && state !== 'finished') {\n job.subscribe();\n }\n return null;\n }).property('job', 'job.state')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/job");minispade.register('views/left', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n tabBinding: 'controller.tab',\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/left");minispade.register('views/profile', "(function() {(function() {\n\n this.Travis.reopen({\n ProfileView: Travis.View.extend({\n templateName: 'profile/show',\n accountBinding: 'controller.account',\n name: (function() {\n return this.get('account.name') || this.get('account.login');\n }).property('account.name', 'account.login')\n }),\n ProfileTabsView: Travis.View.extend({\n templateName: 'profile/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classHooks: (function() {\n if (this.get('tab') === 'hooks') {\n return 'active';\n }\n }).property('tab'),\n classUser: (function() {\n if (this.get('tab') === 'user') {\n return 'active';\n }\n }).property('tab'),\n accountBinding: 'controller.account',\n displayUser: (function() {\n return this.get('controller.account.login') === this.get('controller.user.login');\n }).property('controller.account.login', 'controller.user.login')\n }),\n HooksView: Travis.View.extend({\n templateName: 'profile/tabs/hooks',\n userBinding: 'controller.user',\n urlGithubAdmin: (function() {\n return Travis.Urls.githubAdmin(this.get('hook.slug'));\n }).property('hook.slug')\n }),\n UserView: Travis.View.extend({\n templateName: 'profile/tabs/user',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=48&d=mm\";\n }).property('user.gravatarId'),\n locales: (function() {\n return [\n {\n key: null,\n name: ''\n }, {\n key: 'en',\n name: 'English'\n }, {\n key: 'ca',\n name: 'Catalan'\n }, {\n key: 'cs',\n name: 'Čeština'\n }, {\n key: 'es',\n name: 'Español'\n }, {\n key: 'fr',\n name: 'Français'\n }, {\n key: 'ja',\n name: '日本語'\n }, {\n key: 'nl',\n name: 'Nederlands'\n }, {\n key: 'nb',\n name: 'Norsk Bokmål'\n }, {\n key: 'pl',\n name: 'Polski'\n }, {\n key: {\n 'pt-BR': {\n name: 'Português brasileiro'\n }\n }\n }, {\n key: 'ru',\n name: 'Русский'\n }\n ];\n }).property(),\n saveLocale: function(event) {\n return this.get('user').updateLocale($('#locale').val());\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/profile");minispade.register('views/repo', "(function() {(function() {\nminispade.require('views/repo/list');\nminispade.require('views/repo/show');\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo");minispade.register('views/repo/list', "(function() {(function() {\n\n this.Travis.reopen({\n ReposView: Travis.View.extend({\n templateName: 'repos/list',\n toggleInfo: function(event) {\n return $('#repos').toggleClass('open');\n }\n }),\n ReposListView: Em.CollectionView.extend({\n elementId: 'repos',\n tagName: 'ul',\n emptyView: Ember.View.extend({\n template: Ember.Handlebars.compile('Loading
')\n }),\n itemViewClass: Travis.View.extend({\n repoBinding: 'content',\n classNames: ['repo'],\n classNameBindings: ['color', 'selected'],\n selectedBinding: 'repo.selected',\n color: (function() {\n return Travis.Helpers.colorForResult(this.get('repo.lastBuildResult'));\n }).property('repo.lastBuildResult'),\n urlRepo: (function() {\n return Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlLastBuild: (function() {\n return Travis.Urls.build(this.get('repo.slug'), this.get('repo.lastBuildId'));\n }).property('repo.slug', 'repo.lastBuildId')\n })\n }),\n ReposListTabsView: Travis.View.extend({\n templateName: 'repos/list/tabs',\n tabBinding: 'controller.tab',\n activate: function(event) {\n return this.get('controller').activate(event.target.name);\n },\n classRecent: (function() {\n if (this.get('tab') === 'recent') {\n return 'active';\n }\n }).property('tab'),\n classOwned: (function() {\n var classes;\n classes = [];\n if (this.get('tab') === 'owned') {\n classes.push('active');\n }\n if (Travis.app.get('currentUser')) {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab', 'Travis.app.currentUser'),\n classSearch: (function() {\n if (this.get('tab') === 'search') {\n return 'active';\n }\n }).property('tab')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/list");minispade.register('views/repo/show', "(function() {(function() {\n\n this.Travis.reopen({\n RepoView: Travis.View.extend({\n templateName: 'repos/show',\n reposBinding: 'controller.repos',\n repoBinding: 'controller.repo',\n \"class\": (function() {\n if (!this.get('repo.isComplete') && !this.get('isEmpty')) {\n return 'loading';\n }\n }).property('repo.isComplete'),\n isEmpty: (function() {\n return this.get('repos.length') === 0;\n }).property('repos.length'),\n urlGithub: (function() {\n return Travis.Urls.githubRepo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubWatchers: (function() {\n return Travis.Urls.githubWatchers(this.get('repo.slug'));\n }).property('repo.slug'),\n urlGithubNetwork: (function() {\n return Travis.Urls.githubNetwork(this.get('repo.slug'));\n }).property('repo.slug')\n }),\n ReposEmptyView: Travis.View.extend({\n template: ''\n }),\n RepoShowTabsView: Travis.View.extend({\n templateName: 'repos/show/tabs',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n classCurrent: (function() {\n if (this.get('tab') === 'current') {\n return 'active';\n }\n }).property('tab'),\n classBuilds: (function() {\n if (this.get('tab') === 'builds') {\n return 'active';\n }\n }).property('tab'),\n classPullRequests: (function() {\n if (this.get('tab') === 'pull_requests') {\n return 'active';\n }\n }).property('tab'),\n classBranches: (function() {\n if (this.get('tab') === 'branches') {\n return 'active';\n }\n }).property('tab'),\n classEvents: (function() {\n if (this.get('tab') === 'events') {\n return 'active';\n }\n }).property('tab'),\n classBuild: (function() {\n var classes, tab;\n tab = this.get('tab');\n classes = [];\n if (tab === 'build') {\n classes.push('active');\n }\n if (tab === 'build' || tab === 'job') {\n classes.push('display-inline');\n }\n return classes.join(' ');\n }).property('tab'),\n classJob: (function() {\n if (this.get('tab') === 'job') {\n return 'active display-inline';\n }\n }).property('tab')\n }),\n RepoShowToolsView: Travis.View.extend({\n templateName: 'repos/show/tools',\n repoBinding: 'controller.repo',\n buildBinding: 'controller.build',\n jobBinding: 'controller.job',\n tabBinding: 'controller.tab',\n closeMenu: function() {\n return $('.menu').removeClass('display');\n },\n menu: function(event) {\n var element;\n this.popupCloseAll();\n element = $('#tools .menu').toggleClass('display');\n return event.stopPropagation();\n },\n requeue: function() {\n this.closeMenu();\n return this.get('build').requeue();\n },\n statusImages: function(event) {\n this.set('active', true);\n this.closeMenu();\n this.popup(event);\n return event.stopPropagation();\n },\n canPush: (function() {\n return this.get('isBuildTab') && this.get('build.isFinished') && this.get('hasPushPermissions');\n }).property('build.isFinished', 'hasPushPermissions', 'isBuildTab'),\n isBuildTab: (function() {\n return ['current', 'build', 'job'].indexOf(this.get('tab')) > -1;\n }).property('tab'),\n hasPushPermissions: (function() {\n var permissions;\n if (permissions = Travis.app.get('currentUser.permissions')) {\n return permissions.indexOf(this.get('repo.id')) > -1;\n }\n }).property('Travis.app.currentUser.permissions.length', 'repo.id'),\n branches: (function() {\n if (this.get('active')) {\n return this.get('repo.branches');\n }\n }).property('active', 'repo.branches'),\n urlRepo: (function() {\n return 'https://' + location.host + Travis.Urls.repo(this.get('repo.slug'));\n }).property('repo.slug'),\n urlStatusImage: (function() {\n return Travis.Urls.statusImage(this.get('repo.slug'), this.get('branch.commit.branch'));\n }).property('repo.slug', 'branch'),\n markdownStatusImage: (function() {\n return \"[) + \")](\" + (this.get('urlRepo')) + \")\";\n }).property('urlStatusImage'),\n textileStatusImage: (function() {\n return \"!\" + (this.get('urlStatusImage')) + \"!:\" + (this.get('urlRepo'));\n }).property('urlStatusImage'),\n rdocStatusImage: (function() {\n return \"{ }[\" + (this.get('urlRepo')) + \"]\";\n }).property('urlStatusImage')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/repo/show");minispade.register('views/sidebar', "(function() {(function() {\n\n this.Travis.reopen({\n SidebarView: Travis.View.extend({\n templateName: 'layouts/sidebar',\n DecksView: Em.View.extend({\n templateName: \"sponsors/decks\",\n controller: Travis.SponsorsController.create({\n perPage: 1\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n Travis.app.get('router.sidebarController').tickables.push(controller);\n controller.set('content', Travis.Sponsor.decks());\n }\n return this._super.apply(this, arguments);\n }\n }),\n LinksView: Em.View.extend({\n templateName: \"sponsors/links\",\n controller: Travis.SponsorsController.create({\n perPage: 6\n }),\n didInsertElement: function() {\n var controller;\n controller = this.get('controller');\n if (!controller.get('content')) {\n controller.set('content', Travis.Sponsor.links());\n Travis.app.get('router.sidebarController').tickables.push(controller);\n }\n return this._super.apply(this, arguments);\n }\n }),\n WorkersView: Em.View.extend({\n templateName: 'workers/list',\n controller: Travis.WorkersController.create(),\n didInsertElement: function() {\n this.set('controller.content', Travis.Worker.find());\n return this._super.apply(this, arguments);\n }\n }),\n QueuesView: Em.View.extend({\n templateName: 'queues/list',\n controller: Em.ArrayController.create(),\n didInsertElement: function() {\n var queue, queues;\n queues = (function() {\n var _i, _len, _ref, _results;\n _ref = Travis.QUEUES;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n queue = _ref[_i];\n _results.push(Em.ArrayController.create({\n content: Travis.Job.queued(queue.name),\n id: \"queue_\" + queue.name,\n name: queue.display\n }));\n }\n return _results;\n })();\n this.set('controller.content', queues);\n return this._super.apply(this, arguments);\n }\n })\n }),\n WorkersView: Travis.View.extend({\n toggleWorkers: function(event) {\n var handle;\n handle = $(event.target).toggleClass('open');\n if (handle.hasClass('open')) {\n return $('#workers li').addClass('open');\n } else {\n return $('#workers li').removeClass('open');\n }\n }\n }),\n WorkersListView: Travis.View.extend({\n toggle: function(event) {\n return $(event.target).closest('li').toggleClass('open');\n }\n }),\n WorkersItemView: Travis.View.extend({\n display: (function() {\n var name, number, payload, repo, state;\n name = (this.get('worker.name') || '').replace('travis-', '');\n state = this.get('worker.state');\n payload = this.get('worker.payload');\n if (state === 'working' && (payload != null ? payload.repository : void 0) && (payload != null ? payload.build : void 0)) {\n repo = payload.repository.slug;\n number = ' #' + payload.build.number;\n return (\"\" + name + \": \" + repo + \" \" + number).htmlSafe();\n } else {\n return \"\" + name + \": \" + state;\n }\n }).property('worker.state')\n }),\n QueueItemView: Travis.View.extend({\n tagName: 'li'\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/sidebar");minispade.register('views/signin', "(function() {(function() {\n\n this.Travis.reopen({\n SigninView: Travis.View.extend({\n templateName: 'auth/signin',\n signingIn: (function() {\n return Travis.app.get('authState') === 'signing-in';\n }).property('Travis.app.authState')\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/signin");minispade.register('views/stats', "(function() {(function() {\n\n this.Travis.reopen({\n StatsView: Travis.View.extend({\n templateName: 'stats/show',\n didInsertElement: function() {},\n renderChart: function(config) {\n var chart;\n chart = new Highcharts.Chart(config);\n return this.fetch(config.source, function(data) {\n var stats;\n stats = (function() {\n var _i, _len, _ref, _results;\n _ref = data.stats;\n _results = [];\n for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n stats = _ref[_i];\n _results.push(config.map(stats));\n }\n return _results;\n })();\n return chart.series[0].setData(stats);\n });\n },\n fetch: function(url, callback) {\n return $.ajax({\n type: 'GET',\n url: url,\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n },\n success: callback\n });\n },\n CHARTS: {\n repos: {\n source: '/api/stats/repos',\n total: 0,\n map: function(data) {\n return [Date.parse(data.date), this.total += parseInt(data.count)];\n },\n chart: {\n renderTo: \"repos_stats\"\n },\n title: {\n text: \"Total Projects/Repositories\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" repos\";\n }\n },\n series: [\n {\n name: \"Repository Growth\",\n data: []\n }\n ]\n },\n builds: {\n source: '/api/stats/tests',\n map: function(data) {\n return [Date.parse(data.date), parseInt(data.count)];\n },\n chart: {\n renderTo: \"tests_stats\",\n type: \"column\"\n },\n title: {\n text: \"Build Count\"\n },\n subtitle: {\n text: \"last month\"\n },\n xAxis: {\n type: \"datetime\",\n dateTimeLabelFormats: {\n month: \"%e. %b\",\n year: \"%b\"\n }\n },\n yAxis: {\n title: {\n text: \"Count\"\n },\n min: 0\n },\n tooltip: {\n formatter: function() {\n return Highcharts.dateFormat(\"%e. %b\", this.x) + \": \" + this.y + \" builds\";\n }\n },\n series: [\n {\n name: \"Total Builds\",\n data: []\n }\n ]\n }\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/stats");minispade.register('views/top', "(function() {(function() {\n\n this.Travis.reopen({\n TopView: Travis.View.extend({\n templateName: 'layouts/top',\n tabBinding: 'controller.tab',\n userBinding: 'controller.user',\n gravatarUrl: (function() {\n return \"\" + location.protocol + \"//www.gravatar.com/avatar/\" + (this.get('user.gravatarId')) + \"?s=24&d=mm\";\n }).property('user.gravatarId'),\n classHome: (function() {\n if (this.get('tab') === 'home') {\n return 'active';\n }\n }).property('tab'),\n classStats: (function() {\n if (this.get('tab') === 'stats') {\n return 'active';\n }\n }).property('tab'),\n classProfile: (function() {\n var classes;\n classes = ['profile'];\n if (this.get('tab') === 'profile') {\n classes.push('active');\n }\n classes.push(Travis.app.get('authState'));\n return classes.join(' ');\n }).property('tab', 'Travis.app.authState'),\n showProfile: function() {\n return $('#top .profile ul').show();\n },\n hideProfile: function() {\n return $('#top .profile ul').hide();\n }\n })\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=views/top");minispade.register('config/emoij', "(function() {(function() {\n\n this.EmojiDictionary = ['-1', '0', '1', '109', '2', '3', '4', '5', '6', '7', '8', '8ball', '9', 'a', 'ab', 'airplane', 'alien', 'ambulance', 'angel', 'anger', 'angry', 'apple', 'aquarius', 'aries', 'arrow_backward', 'arrow_down', 'arrow_forward', 'arrow_left', 'arrow_lower_left', 'arrow_lower_right', 'arrow_right', 'arrow_up', 'arrow_upper_left', 'arrow_upper_right', 'art', 'astonished', 'atm', 'b', 'baby', 'baby_chick', 'baby_symbol', 'balloon', 'bamboo', 'bank', 'barber', 'baseball', 'basketball', 'bath', 'bear', 'beer', 'beers', 'beginner', 'bell', 'bento', 'bike', 'bikini', 'bird', 'birthday', 'black_square', 'blue_car', 'blue_heart', 'blush', 'boar', 'boat', 'bomb', 'book', 'boot', 'bouquet', 'bow', 'bowtie', 'boy', 'bread', 'briefcase', 'broken_heart', 'bug', 'bulb', 'bullettrain_front', 'bullettrain_side', 'bus', 'busstop', 'cactus', 'cake', 'calling', 'camel', 'camera', 'cancer', 'capricorn', 'car', 'cat', 'cd', 'chart', 'checkered_flag', 'cherry_blossom', 'chicken', 'christmas_tree', 'church', 'cinema', 'city_sunrise', 'city_sunset', 'clap', 'clapper', 'clock1', 'clock10', 'clock11', 'clock12', 'clock2', 'clock3', 'clock4', 'clock5', 'clock6', 'clock7', 'clock8', 'clock9', 'closed_umbrella', 'cloud', 'clubs', 'cn', 'cocktail', 'coffee', 'cold_sweat', 'computer', 'confounded', 'congratulations', 'construction', 'construction_worker', 'convenience_store', 'cool', 'cop', 'copyright', 'couple', 'couple_with_heart', 'couplekiss', 'cow', 'crossed_flags', 'crown', 'cry', 'cupid', 'currency_exchange', 'curry', 'cyclone', 'dancer', 'dancers', 'dango', 'dart', 'dash', 'de', 'department_store', 'diamonds', 'disappointed', 'dog', 'dolls', 'dolphin', 'dress', 'dvd', 'ear', 'ear_of_rice', 'egg', 'eggplant', 'egplant', 'eight_pointed_black_star', 'eight_spoked_asterisk', 'elephant', 'email', 'es', 'european_castle', 'exclamation', 'eyes', 'factory', 'fallen_leaf', 'fast_forward', 'fax', 'fearful', 'feelsgood', 'feet', 'ferris_wheel', 'finnadie', 'fire', 'fire_engine', 'fireworks', 'fish', 'fist', 'flags', 'flushed', 'football', 'fork_and_knife', 'fountain', 'four_leaf_clover', 'fr', 'fries', 'frog', 'fuelpump', 'gb', 'gem', 'gemini', 'ghost', 'gift', 'gift_heart', 'girl', 'goberserk', 'godmode', 'golf', 'green_heart', 'grey_exclamation', 'grey_question', 'grin', 'guardsman', 'guitar', 'gun', 'haircut', 'hamburger', 'hammer', 'hamster', 'hand', 'handbag', 'hankey', 'hash', 'headphones', 'heart', 'heart_decoration', 'heart_eyes', 'heartbeat', 'heartpulse', 'hearts', 'hibiscus', 'high_heel', 'horse', 'hospital', 'hotel', 'hotsprings', 'house', 'hurtrealbad', 'icecream', 'id', 'ideograph_advantage', 'imp', 'information_desk_person', 'iphone', 'it', 'jack_o_lantern', 'japanese_castle', 'joy', 'jp', 'key', 'kimono', 'kiss', 'kissing_face', 'kissing_heart', 'koala', 'koko', 'kr', 'leaves', 'leo', 'libra', 'lips', 'lipstick', 'lock', 'loop', 'loudspeaker', 'love_hotel', 'mag', 'mahjong', 'mailbox', 'man', 'man_with_gua_pi_mao', 'man_with_turban', 'maple_leaf', 'mask', 'massage', 'mega', 'memo', 'mens', 'metal', 'metro', 'microphone', 'minidisc', 'mobile_phone_off', 'moneybag', 'monkey', 'monkey_face', 'moon', 'mortar_board', 'mount_fuji', 'mouse', 'movie_camera', 'muscle', 'musical_note', 'nail_care', 'necktie', 'new', 'no_good', 'no_smoking', 'nose', 'notes', 'o', 'o2', 'ocean', 'octocat', 'octopus', 'oden', 'office', 'ok', 'ok_hand', 'ok_woman', 'older_man', 'older_woman', 'open_hands', 'ophiuchus', 'palm_tree', 'parking', 'part_alternation_mark', 'pencil', 'penguin', 'pensive', 'persevere', 'person_with_blond_hair', 'phone', 'pig', 'pill', 'pisces', 'plus1', 'point_down', 'point_left', 'point_right', 'point_up', 'point_up_2', 'police_car', 'poop', 'post_office', 'postbox', 'pray', 'princess', 'punch', 'purple_heart', 'question', 'rabbit', 'racehorse', 'radio', 'rage', 'rage1', 'rage2', 'rage3', 'rage4', 'rainbow', 'raised_hands', 'ramen', 'red_car', 'red_circle', 'registered', 'relaxed', 'relieved', 'restroom', 'rewind', 'ribbon', 'rice', 'rice_ball', 'rice_cracker', 'rice_scene', 'ring', 'rocket', 'roller_coaster', 'rose', 'ru', 'runner', 'sa', 'sagittarius', 'sailboat', 'sake', 'sandal', 'santa', 'satellite', 'satisfied', 'saxophone', 'school', 'school_satchel', 'scissors', 'scorpius', 'scream', 'seat', 'secret', 'shaved_ice', 'sheep', 'shell', 'ship', 'shipit', 'shirt', 'shit', 'shoe', 'signal_strength', 'six_pointed_star', 'ski', 'skull', 'sleepy', 'slot_machine', 'smile', 'smiley', 'smirk', 'smoking', 'snake', 'snowman', 'sob', 'soccer', 'space_invader', 'spades', 'spaghetti', 'sparkler', 'sparkles', 'speaker', 'speedboat', 'squirrel', 'star', 'star2', 'stars', 'station', 'statue_of_liberty', 'stew', 'strawberry', 'sunflower', 'sunny', 'sunrise', 'sunrise_over_mountains', 'surfer', 'sushi', 'suspect', 'sweat', 'sweat_drops', 'swimmer', 'syringe', 'tada', 'tangerine', 'taurus', 'taxi', 'tea', 'telephone', 'tennis', 'tent', 'thumbsdown', 'thumbsup', 'ticket', 'tiger', 'tm', 'toilet', 'tokyo_tower', 'tomato', 'tongue', 'top', 'tophat', 'traffic_light', 'train', 'trident', 'trophy', 'tropical_fish', 'truck', 'trumpet', 'tshirt', 'tulip', 'tv', 'u5272', 'u55b6', 'u6307', 'u6708', 'u6709', 'u6e80', 'u7121', 'u7533', 'u7a7a', 'umbrella', 'unamused', 'underage', 'unlock', 'up', 'us', 'v', 'vhs', 'vibration_mode', 'virgo', 'vs', 'walking', 'warning', 'watermelon', 'wave', 'wc', 'wedding', 'whale', 'wheelchair', 'white_square', 'wind_chime', 'wink', 'wink2', 'wolf', 'woman', 'womans_hat', 'womens', 'x', 'yellow_heart', 'zap', 'zzz'];\n\n}).call(this);\n\n})();\n//@ sourceURL=config/emoij");minispade.register('data/sponsors', "(function() {(function() {\n\n this.Travis.SPONSORS = [\n {\n type: 'platinum',\n url: \"http://www.wooga.com\",\n image: \"wooga-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://bendyworks.com\",\n image: \"bendyworks-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://cloudcontrol.com\",\n image: \"cloudcontrol-205x130.png\"\n }, {\n type: 'platinum',\n url: \"http://xing.de\",\n image: \"xing-205x130.png\"\n }, {\n type: 'gold',\n url: \"http://heroku.com\",\n image: \"heroku-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://soundcloud.com\",\n image: \"soundcloud-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://nedap.com\",\n image: \"nedap-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://mongohq.com\",\n image: \"mongohq-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://zweitag.de\",\n image: \"zweitag-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://kanbanery.com\",\n image: \"kanbanery-205x60.png\"\n }, {\n type: 'gold',\n url: \"http://ticketevolution.com\",\n image: \"ticketevolution-205x60.jpg\"\n }, {\n type: 'gold',\n url: \"http://plan.io/travis\",\n image: \"planio-205x60.png\"\n }, {\n type: 'silver',\n link: \"Cobot : The one tool to run your coworking space \"\n }, {\n type: 'silver',\n link: \"JumpstartLab : We build developers \"\n }, {\n type: 'silver',\n link: \"Evil Martians : Agile Ruby on Rails development \"\n }, {\n type: 'silver',\n link: \"Zendesk : Love your helpdesk \"\n }, {\n type: 'silver',\n link: \"Stripe : Payments for developers \"\n }, {\n type: 'silver',\n link: \"Basho : We make Riak! \"\n }, {\n type: 'silver',\n link: \"Relevance : We deliver software solutions \"\n }, {\n type: 'silver',\n link: \"Mindmatters : Software für Menschen \"\n }, {\n type: 'silver',\n link: \"Amen : The best and worst of everything \"\n }, {\n type: 'silver',\n link: \"Site5 : Premium Web Hosting Solutions \"\n }, {\n type: 'silver',\n link: \"Crowd Interactive : Leading Rails consultancy in Mexico \"\n }, {\n type: 'silver',\n link: \"Atomic Object : Work with really smart people \"\n }, {\n type: 'silver',\n link: \"Codeminer : smart services for your startup \"\n }, {\n type: 'silver',\n link: \"Cloudant : grow into your data layer, not out of it \"\n }, {\n type: 'silver',\n link: \"Gidsy : Explore, organize & book unique things to do! \"\n }, {\n type: 'silver',\n link: \"5apps : Package & deploy HTML5 apps automatically \"\n }, {\n type: 'silver',\n link: \"Meltmedia : We are Interactive Superheroes \"\n }, {\n type: 'silver',\n link: \"Fingertips offers design and development services \"\n }, {\n type: 'silver',\n link: \"Engine Yard : Build epic apps, let us handle the rest \"\n }, {\n type: 'silver',\n link: \"Malwarebytes : Defeat Malware once and for all. \"\n }, {\n type: 'silver',\n link: \"Readmill : The best reading app on the iPad. \"\n }, {\n type: 'silver',\n link: \"Medidata : clinical tech improving quality of life \"\n }, {\n type: 'silver',\n link: \"ESM : Japan's best agile Ruby/Rails consultancy \"\n }, {\n type: 'silver',\n link: \"Twitter : instantly connects people everywhere \"\n }, {\n type: 'silver',\n link: \"AGiLE ANiMAL : we <3 Travis CI. \"\n }, {\n type: 'silver',\n link: \"Tupalo : Discover, review & share local businesses. \"\n }\n ];\n\n this.Travis.WORKERS = {\n \"jvm-otp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://travis-ci.com\"\n },\n \"jvm-otp2.worker.travis-ci.org\": {\n name: \"Transloadit\",\n url: \"http://transloadit.com\"\n },\n \"ppp1.worker.travis-ci.org\": {\n name: \"Travis Pro\",\n url: \"http://beta.travis-ci.com\"\n },\n \"ppp2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ppp3.worker.travis-ci.org\": {\n name: \"Alchemy CMS\",\n url: \"http://alchemy-cms.com/\"\n },\n \"rails1.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby1.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"ruby2.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n },\n \"ruby3.worker.travis-ci.org\": {\n name: \"Railslove\",\n url: \"http://railslove.de\"\n },\n \"ruby4.worker.travis-ci.org\": {\n name: \"Engine Yard\",\n url: \"http://www.engineyard.com\"\n },\n \"spree.worker.travis-ci.org\": {\n name: \"Spree\",\n url: \"http://spreecommerce.com\"\n },\n \"staging.worker.travis-ci.org\": {\n name: \"EnterpriseRails\",\n url: \"http://www.enterprise-rails.com\"\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=data/sponsors");minispade.register('ext/jquery', "(function() {(function() {\n\n $.fn.extend({\n outerHtml: function() {\n return $(this).wrap('
').parent().html();\n },\n outerElement: function() {\n return $($(this).outerHtml()).empty();\n },\n flash: function() {\n return Utils.flash(this);\n },\n unflash: function() {\n return Utils.unflash(this);\n },\n filterLog: function() {\n this.deansi();\n return this.foldLog();\n },\n deansi: function() {\n return this.html(Utils.deansi(this.html()));\n },\n foldLog: function() {\n return this.html(Utils.foldLog(this.html()));\n },\n unfoldLog: function() {\n return this.html(Utils.unfoldLog(this.html()));\n },\n updateTimes: function() {\n return Utils.updateTimes(this);\n },\n activateTab: function(tab) {\n return Utils.activateTab(this, tab);\n },\n timeInWords: function() {\n return $(this).each(function() {\n return $(this).text(Utils.timeInWords(parseInt($(this).attr('title'))));\n });\n },\n updateGithubStats: function(repo) {\n return Utils.updateGithubStats(repo, $(this));\n }\n });\n\n $.extend({\n isEmpty: function(obj) {\n if ($.isArray(obj)) {\n return !obj.length;\n } else if ($.isObject(obj)) {\n return !$.keys(obj).length;\n } else {\n return !obj;\n }\n },\n isObject: function(obj) {\n return Object.prototype.toString.call(obj) === '[object Object]';\n },\n keys: function(obj) {\n var keys;\n keys = [];\n $.each(obj, function(key) {\n return keys.push(key);\n });\n return keys;\n },\n values: function(obj) {\n var values;\n values = [];\n $.each(obj, function(key, value) {\n return values.push(value);\n });\n return values;\n },\n underscore: function(string) {\n return string[0].toLowerCase() + string.substring(1).replace(/([A-Z])?/g, function(match, chr) {\n if (chr) {\n return \"_\" + (chr.toUpperCase());\n } else {\n return '';\n }\n });\n },\n camelize: function(string, uppercase) {\n string = uppercase === false ? $.underscore(string) : $.capitalize(string);\n return string.replace(/_(.)?/g, function(match, chr) {\n if (chr) {\n return chr.toUpperCase();\n } else {\n return '';\n }\n });\n },\n capitalize: function(string) {\n return string[0].toUpperCase() + string.substring(1);\n },\n compact: function(object) {\n return $.grep(object, function(value) {\n return !!value;\n });\n },\n all: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return false;\n }\n i++;\n }\n return true;\n },\n detect: function(array, callback) {\n var args, i;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n return array[i];\n }\n i++;\n }\n },\n select: function(array, callback) {\n var args, i, result;\n args = Array.prototype.slice.apply(arguments);\n callback = args.pop();\n array = args.pop() || this;\n result = [];\n i = 0;\n while (i < array.length) {\n if (callback(array[i])) {\n result.push(array[i]);\n }\n i++;\n }\n return result;\n },\n slice: function(object, key) {\n var keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) > -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n only: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) !== -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n except: function(object) {\n var key, keys, result;\n keys = Array.prototype.slice.apply(arguments);\n object = (typeof keys[0] === 'object' ? keys.shift() : this);\n result = {};\n for (key in object) {\n if (keys.indexOf(key) === -1) {\n result[key] = object[key];\n }\n }\n return result;\n },\n intersect: function(array, other) {\n return array.filter(function(element) {\n return other.indexOf(element) !== -1;\n });\n },\n map: function(elems, callback, arg) {\n var i, isArray, key, length, ret, value;\n value = void 0;\n key = void 0;\n ret = [];\n i = 0;\n length = elems.length;\n isArray = elems instanceof jQuery || length !== void 0 && typeof length === 'number' && (length > 0 && elems[0] && elems[length - 1]) || length === 0 || jQuery.isArray(elems);\n if (isArray) {\n while (i < length) {\n value = callback(elems[i], i, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n i++;\n }\n } else {\n for (key in elems) {\n value = callback(elems[key], key, arg);\n if (value != null) {\n ret[ret.length] = value;\n }\n }\n }\n return ret.concat.apply([], ret);\n },\n shuffle: function(array) {\n var current, tmp, top;\n array = array.slice();\n top = array.length;\n while (top && --top) {\n current = Math.floor(Math.random() * (top + 1));\n tmp = array[current];\n array[current] = array[top];\n array[top] = tmp;\n }\n return array;\n },\n truncate: function(string, length) {\n if (string.length > length) {\n return string.trim().substring(0, length) + '...';\n } else {\n return string;\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=ext/jquery");minispade.register('travis/ajax', "(function() {(function() {\n\n jQuery.support.cors = true;\n\n this.Travis.ajax = Em.Object.create({\n DEFAULT_OPTIONS: {\n accepts: {\n json: 'application/vnd.travis-ci.2+json'\n }\n },\n get: function(url, callback) {\n return this.ajax(url, 'get', {\n success: callback\n });\n },\n post: function(url, data, callback) {\n return this.ajax(url, 'post', {\n data: data,\n success: callback\n });\n },\n ajax: function(url, method, options) {\n var endpoint, success, token, _base,\n _this = this;\n endpoint = Travis.config.api_endpoint || '';\n options = options || {};\n if (token = sessionStorage.getItem('travis.token')) {\n options.headers || (options.headers = {});\n (_base = options.headers)['Authorization'] || (_base['Authorization'] = \"token \" + token);\n }\n options.url = \"\" + endpoint + url;\n options.type = method;\n options.dataType = 'json';\n options.contentType = 'application/json; charset=utf-8';\n options.context = this;\n if (options.data && method !== 'GET' && method !== 'get') {\n options.data = JSON.stringify(options.data);\n }\n success = options.success || (function() {});\n options.success = function(data) {\n var _ref;\n if (((_ref = Travis.app) != null ? _ref.router : void 0) && data.flash) {\n Travis.app.router.flashController.pushObjects(data.flash);\n }\n delete data.flash;\n return success.call(_this, data);\n };\n options.error = function(data) {\n if (data.flash) {\n return Travis.app.router.flashController.pushObject(data.flash);\n }\n };\n return $.ajax($.extend(options, Travis.ajax.DEFAULT_OPTIONS));\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ajax");minispade.register('travis/expandable_record_array', "(function() {(function() {\n\n Travis.ExpandableRecordArray = DS.RecordArray.extend({\n isLoaded: false,\n isLoading: false,\n load: function(array) {\n var observer, self;\n this.set('isLoading', true);\n self = this;\n observer = function() {\n var content;\n if (this.get('isLoaded')) {\n content = self.get('content');\n array.removeObserver('isLoaded', observer);\n array.forEach(function(record) {\n return self.pushObject(record);\n });\n self.set('isLoading', false);\n return self.set('isLoaded', true);\n }\n };\n return array.addObserver('isLoaded', observer);\n },\n pushObject: function(record) {\n var clientId, id, ids;\n ids = this.get('content');\n id = record.get('id');\n clientId = record.get('clientId');\n if (ids.contains(clientId)) {\n return;\n }\n return ids.pushObject(clientId);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/expandable_record_array");minispade.register('travis/limited_array', "(function() {(function() {\n\n Travis.LimitedArray = Em.ArrayProxy.extend({\n limit: 10,\n init: function() {\n return this._super.apply(this, arguments);\n },\n arrangedContent: (function() {\n var content;\n if (content = this.get('content')) {\n return content.slice(0, this.get('limit'));\n }\n }).property('content'),\n contentArrayDidChange: function(array, index, removedCount, addedCount) {\n var addedObjects, arrangedContent, length, limit, object, _i, _len;\n this._super.apply(this, arguments);\n if (addedCount > 0) {\n addedObjects = array.slice(index, index + addedCount);\n arrangedContent = this.get('arrangedContent');\n for (_i = 0, _len = addedObjects.length; _i < _len; _i++) {\n object = addedObjects[_i];\n arrangedContent.unshiftObject(object);\n }\n limit = this.get('limit');\n length = arrangedContent.get('length');\n if (length > limit) {\n return arrangedContent.replace(limit, length - limit);\n }\n }\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/limited_array");minispade.register('travis/location', "(function() {(function() {\n\n Travis.Location = Ember.HistoryLocation.extend({\n onUpdateURL: function(callback) {\n var guid;\n guid = Ember.guidFor(this);\n return Ember.$(window).bind('popstate.ember-location-' + guid, function(e) {\n return callback(location.pathname + location.hash);\n });\n },\n getURL: function() {\n var location;\n location = this.get('location');\n return location.pathname + location.hash;\n }\n });\n\n Ember.Location.implementations['travis'] = Travis.Location;\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/location");minispade.register('travis/log', "(function() {(function() {\n\n this.Travis.Log = {\n FOLDS: {\n schema: /(\\$ (?:bundle exec )?rake( db:create)? db:schema:load[\\s\\S]*?-- assume_migrated_upto_version[\\s\\S]*?<\\/p>\\n.*<\\/p>)/g,\n migrate: /(\\$ (?:bundle exec )?rake( db:create)? db:migrate[\\s\\S]*== +\\w+: migrated \\(.*\\) =+)/g,\n bundle: /(\\$ bundle install.*<\\/p>\\n((Updating|Using|Installing|Fetching|remote:|Receiving|Resolving).*?<\\/p>\\n|<\\/p>\\n)*)/g,\n exec: /([\\/\\w]*.rvm\\/rubies\\/[\\S]*?\\/(ruby|rbx|jruby) .*?<\\/p>)/g\n },\n filter: function(log, path) {\n log = this.escape(log);\n log = this.deansi(log);\n log = log.replace(/\\r/g, '');\n log = this.number(log, path);\n log = this.fold(log);\n log = log.replace(/\\n/g, '');\n return log;\n },\n stripPaths: function(log) {\n return log.replace(/\\/home\\/vagrant\\/builds(\\/[^\\/\\n]+){2}\\//g, '');\n },\n escape: function(log) {\n return Handlebars.Utils.escapeExpression(log);\n },\n escapeRuby: function(log) {\n return log.replace(/#<(\\w+.*?)>/, '#<$1>');\n },\n number: function(log, path) {\n var result;\n path = \"\" + path + \"/\";\n result = '';\n $.each(log.trim().split('\\n'), function(ix, line) {\n var number, pathWithNumber;\n number = ix + 1;\n pathWithNumber = \"\" + path + \"#L\" + number;\n return result += '%@ %@
\\n'.fmt(pathWithNumber, number, number, number, line);\n });\n return result.trim();\n },\n deansi: function(log) {\n var ansi, text;\n log = log.replace(/\\r\\r/g, '\\r').replace(/\\033\\[K\\r/g, '\\r').replace(/^.*\\r(?!$)/gm, '').replace(/\u001b\\[2K/g, '').replace(/\\033\\(B/g, \"\");\n ansi = ansiparse(log);\n text = '';\n ansi.forEach(function(part) {\n var classes;\n classes = [];\n part.foreground && classes.push(part.foreground);\n part.background && classes.push('bg-' + part.background);\n part.bold && classes.push('bold');\n part.italic && classes.push('italic');\n return text += (classes.length ? '' + part.text + ' ' : part.text);\n });\n return text.replace(/\\033/g, '');\n },\n fold: function(log) {\n log = this.unfold(log);\n $.each(Travis.Log.FOLDS, function(name, pattern) {\n return log = log.replace(pattern, function() {\n return '' + arguments[1].trim() + '
';\n });\n });\n return log;\n },\n unfold: function(log) {\n return log.replace(/([\\s\\S]*?)<\\/div>/g, '$1\\n');\n },\n location: function() {\n return window.location.hash;\n }\n };\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/log");minispade.register('travis/model', "(function() {(function() {\n\n this.Travis.Model = DS.Model.extend({\n primaryKey: 'id',\n id: DS.attr('number'),\n init: function() {\n this.loadedAttributes = [];\n return this._super.apply(this, arguments);\n },\n get: function(name) {\n if (this.constructor.isAttribute(name) && this.get('incomplete') && !this.isAttributeLoaded(name)) {\n this.loadTheRest();\n }\n return this._super.apply(this, arguments);\n },\n refresh: function() {\n var id, store;\n if (id = this.get('id')) {\n store = this.get('store');\n return store.adapter.find(store, this.constructor, id);\n }\n },\n update: function(attrs) {\n var _this = this;\n $.each(attrs, function(key, value) {\n if (key !== 'id') {\n return _this.set(key, value);\n }\n });\n return this;\n },\n isAttributeLoaded: function(name) {\n return this.loadedAttributes.contains(name);\n },\n isComplete: (function() {\n if (this.get('incomplete')) {\n this.loadTheRest();\n return false;\n } else {\n this.set('isCompleting', false);\n return this.get('isLoaded');\n }\n }).property('incomplete', 'isLoaded'),\n loadTheRest: function() {\n if (this.get('isCompleting')) {\n return;\n }\n this.set('isCompleting', true);\n return this.refresh();\n },\n select: function() {\n return this.constructor.select(this.get('id'));\n }\n });\n\n this.Travis.Model.reopenClass({\n find: function() {\n if (arguments.length === 0) {\n return Travis.app.store.findAll(this);\n } else {\n return this._super.apply(this, arguments);\n }\n },\n filter: function(callback) {\n return Travis.app.store.filter(this, callback);\n },\n load: function(attrs) {\n return Travis.app.store.load(this, attrs);\n },\n select: function(id) {\n return this.find().forEach(function(record) {\n return record.set('selected', record.get('id') === id);\n });\n },\n buildURL: function(suffix) {\n var base, url;\n base = this.url || this.pluralName();\n Ember.assert('Base URL (' + base + ') must not start with slash', !base || base.toString().charAt(0) !== '/');\n Ember.assert('URL suffix (' + suffix + ') must not start with slash', !suffix || suffix.toString().charAt(0) !== '/');\n url = [base];\n if (suffix !== void 0) {\n url.push(suffix);\n }\n return url.join('/');\n },\n singularName: function() {\n var name, parts;\n parts = this.toString().split('.');\n name = parts[parts.length - 1];\n return name.replace(/([A-Z])/g, '_$1').toLowerCase().slice(1);\n },\n pluralName: function() {\n return Travis.app.store.adapter.pluralize(this.singularName());\n },\n isAttribute: function(name) {\n if (!this.attributesSaved) {\n this._saveAttributes();\n }\n return this.cachedAttributes.contains(name);\n },\n _saveAttributes: function() {\n var cachedAttributes;\n this.attributesSaved = true;\n cachedAttributes = [];\n this.eachComputedProperty(function(name, meta) {\n if (meta.isAttribute) {\n return cachedAttributes.pushObject(name);\n }\n });\n return this.cachedAttributes = cachedAttributes;\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/model");minispade.register('travis/ticker', "(function() {(function() {\n\n this.Travis.Ticker = Ember.Object.extend({\n init: function() {\n if (this.get('interval') !== -1) {\n return this.schedule();\n }\n },\n tick: function() {\n var context, target, targets, _i, _len;\n context = this.get('context');\n targets = this.get('targets') || [this.get('target')];\n for (_i = 0, _len = targets.length; _i < _len; _i++) {\n target = targets[_i];\n if (context) {\n target = context.get(target);\n }\n if (target) {\n target.tick();\n }\n }\n return this.schedule();\n },\n schedule: function() {\n var _this = this;\n return Ember.run.later((function() {\n return _this.tick();\n }), this.get('interval') || Travis.app.TICK_INTERVAL);\n }\n });\n\n}).call(this);\n\n})();\n//@ sourceURL=travis/ticker");minispade.register('travis', "(function() {(function() {\nminispade.require('ext/jquery');\nminispade.require('ext/ember/namespace');\n\n this.Travis = Em.Namespace.create({\n config: {\n api_endpoint: $('meta[rel=\"travis.api_endpoint\"]').attr('href'),\n pusher_key: $('meta[name=\"travis.pusher_key\"]').attr('value')\n },\n CONFIG_KEYS: ['rvm', 'gemfile', 'env', 'jdk', 'otp_release', 'php', 'node_js', 'perl', 'python', 'scala'],\n ROUTES: {\n 'profile/:login/me': ['profile', 'user'],\n 'profile/:login': ['profile', 'hooks'],\n 'profile': ['profile', 'hooks'],\n 'stats': ['stats', 'show'],\n ':owner/:name/jobs/:id/:line': ['home', 'job'],\n ':owner/:name/jobs/:id': ['home', 'job'],\n ':owner/:name/builds/:id': ['home', 'build'],\n ':owner/:name/builds': ['home', 'builds'],\n ':owner/:name/pull_requests': ['home', 'pullRequests'],\n ':owner/:name/branches': ['home', 'branches'],\n ':owner/:name': ['home', 'current'],\n '': ['home', 'index'],\n '#': ['home', 'index']\n },\n QUEUES: [\n {\n name: 'common',\n display: 'Common'\n }, {\n name: 'php',\n display: 'PHP, Perl and Python'\n }, {\n name: 'node_js',\n display: 'Node.js'\n }, {\n name: 'jvmotp',\n display: 'JVM and Erlang'\n }, {\n name: 'rails',\n display: 'Rails'\n }, {\n name: 'spree',\n display: 'Spree'\n }\n ],\n INTERVALS: {\n sponsors: -1,\n times: -1,\n updateTimes: 1000\n },\n setLocale: function(locale) {\n if (!locale) {\n return;\n }\n I18n.locale = locale;\n return localStorage.setItem('travis.config.locale', locale);\n },\n run: function(attrs) {\n if (location.hash.slice(0, 2) === '#!') {\n location.href = location.href.replace('#!/', '');\n }\n this.setLocale(localStorage.getItem('travis.config.locale'));\n return Ember.run.next(this, function() {\n var app,\n _this = this;\n app = Travis.App.create(attrs || {});\n $.each(Travis, function(key, value) {\n if (value && value.isClass && key !== 'constructor') {\n return app[key] = value;\n }\n });\n this.app = app;\n this.store = app.store;\n return $(function() {\n return app.initialize();\n });\n });\n }\n });\nminispade.require('travis/ajax');\nminispade.require('app');\n\n}).call(this);\n\n})();\n//@ sourceURL=travis");minispade.register('templates', "(function() {\nEmber.TEMPLATES['application'] = Ember.Handlebars.compile(\"{{outlet}}\\n\");\n\nEmber.TEMPLATES['auth/signin'] = Ember.Handlebars.compile(\"{{#if view.signingIn}}\\n
Signing in ... \\n
\\n Trying to authenticate with GitHub.\\n
\\n{{else}}\\n
Sign in \\n
\\n Please sign in with GitHub. \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/list'] = Ember.Handlebars.compile(\"{{#if builds.isLoaded}}\\n
\\n \\n \\n {{t builds.name}} \\n {{t builds.commit}} \\n {{t builds.message}} \\n {{t builds.duration}} \\n {{t builds.finished_at}} \\n \\n \\n\\n \\n {{#each build in builds}}\\n {{#view Travis.BuildsItemView contextBinding=\\\"build\\\"}}\\n \\n \\n {{#if id}}\\n \\n {{number}}\\n \\n {{/if}}\\n \\n \\n \\n {{formatCommit commit}}\\n \\n \\n \\n {{{formatMessage commit.message short=\\\"true\\\"}}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n
\\n {{view view.ShowMoreButton}}\\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['builds/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if loading}}\\n
Loading \\n {{else}}\\n
\\n \\n
{{t builds.name}} \\n
\\n \\n {{#if build.id}}\\n {{build.number}} \\n {{/if}}\\n \\n
{{t builds.finished_at}} \\n
{{formatTime build.finishedAt}} \\n
{{t builds.duration}} \\n
{{formatDuration build.duration}} \\n
\\n\\n \\n\\n {{t builds.message}} \\n {{{formatMessage build.commit.message}}} \\n\\n {{#unless isMatrix}}\\n {{t builds.config}} \\n {{formatConfig build.config}} \\n {{/unless}}\\n \\n\\n {{#if build.isMatrix}}\\n {{view Travis.JobsView jobsBinding=\\\"build.requiredJobs\\\" required=\\\"true\\\"}}\\n {{view Travis.JobsView jobsBinding=\\\"build.allowedFailureJobs\\\"}}\\n {{else}}\\n {{view Travis.LogView contextBinding=\\\"build.jobs.firstObject\\\"}}\\n {{/if}}\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['events/list'] = Ember.Handlebars.compile(\"{{#if view.events.isLoaded}}\\n
\\n \\n \\n Time \\n Event \\n Result \\n Message \\n \\n \\n\\n \\n {{#each event in view.events}}\\n {{#view Travis.EventsItemView contextBinding=\\\"event\\\"}}\\n \\n {{formatTime createdAt}}\\n \\n \\n {{event.event_}}\\n \\n \\n {{event.result}}\\n \\n \\n {{event.message}}\\n \\n {{/view}}\\n {{/each}}\\n \\n
\\n{{else}}\\n
Loading
\\n{{/if}}\\n\\n\");\n\nEmber.TEMPLATES['jobs/list'] = Ember.Handlebars.compile(\"{{#if view.jobs.length}}\\n {{#if view.required}}\\n
\\n \\n {{t jobs.build_matrix}}\\n \\n {{else}}\\n \\n \\n {{t jobs.allowed_failures}}\\n \\n \\n {{/if}}\\n \\n \\n {{#each key in view.build.configKeys}}\\n {{key}} \\n {{/each}}\\n \\n \\n \\n {{#each job in view.jobs}}\\n {{#view Travis.JobsItemView contextBinding=\\\"job\\\"}}\\n \\n \\n {{#if job.id}}\\n {{number}} \\n {{/if}}\\n \\n \\n {{formatDuration duration}}\\n \\n \\n {{formatTime finishedAt}}\\n \\n {{#each value in configValues}}\\n {{value}} \\n {{/each}}\\n {{/view}}\\n {{/each}}\\n \\n
\\n\\n {{#unless view.required}}\\n \\n {{/unless}}\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/log'] = Ember.Handlebars.compile(\"{{view.logSubscriber}}\\n\\n{{#if log.isLoaded}}\\n \\n \\n Follow logs \\n {{{formatLog log.body repo=\\\"repository\\\" item=\\\"parentView.currentItem\\\"}}} \\n\\n {{#if sponsor.name}}\\n \\n {{/if}}\\n\\n To top \\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\");\n\nEmber.TEMPLATES['jobs/show'] = Ember.Handlebars.compile(\"{{#with view}}\\n {{#if job.isComplete}}\\n \\n
\\n \\n
Job \\n
\\n \\n {{#if job.id}}\\n {{job.number}} \\n {{/if}}\\n \\n
{{t jobs.finished_at}} \\n
{{formatTime job.finishedAt}} \\n
{{t jobs.duration}} \\n
{{formatDuration job.duration}} \\n
\\n\\n \\n\\n {{t jobs.message}} \\n {{formatMessage commit.message}} \\n {{t jobs.config}} \\n {{formatConfig job.config}} \\n \\n\\n {{view Travis.LogView contextBinding=\\\"job\\\"}}}\\n
\\n {{else}}\\n \\n Loading \\n
\\n {{/if}}\\n{{/with}}\\n\");\n\nEmber.TEMPLATES['layouts/flash'] = Ember.Handlebars.compile(\"{{#each flash in controller}}\\n {{#view Travis.FlashItemView flashBinding=\\\"flash\\\"}}\\n {{view.message}}
\\n \\n {{/view}}\\n{{/each}}\\n\");\n\nEmber.TEMPLATES['layouts/home'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n {{outlet right}}\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/profile'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet left}}\\n
\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n\\n
\\n
\\n\\n
\\n\\n
\\n
Getting started? \\n
\\n Please read our guide .\\n It will only take a few minutes :)\\n
\\n
\\n You can find detailled docs on our about site.\\n
\\n
\\n If you need help please don't hesitate to join\\n #travis on irc.freenode.net\\n or our mailinglist .\\n
\\n
\\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/sidebar'] = Ember.Handlebars.compile(\"\\n\\n\\n\\n{{view view.DecksView}}\\n{{view view.WorkersView}}\\n{{view view.QueuesView}}\\n{{view view.LinksView}}\\n\\n\\n
{{t layouts.about.join}} \\n
\\n
\\n\");\n\nEmber.TEMPLATES['layouts/simple'] = Ember.Handlebars.compile(\"\\n {{outlet top}}\\n
\\n\\n\\n
\\n {{outlet flash}}\\n {{outlet main}}\\n
\\n
\\n\\n\");\n\nEmber.TEMPLATES['layouts/top'] = Ember.Handlebars.compile(\"\\n Travis \\n \\n\\n\\n\");\n\nEmber.TEMPLATES['profile/accounts'] = Ember.Handlebars.compile(\"\\n
\\n\\n\\n\\n\\n {{#collection Travis.AccountsListView contentBinding=\\\"controller\\\"}}\\n
{{view.name}} \\n
\\n Repositories: \\n {{view.account.reposCount}} \\n
\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['profile/show'] = Ember.Handlebars.compile(\"{{view.name}} \\n\\n{{view Travis.ProfileTabsView}}\\n\\n\\n {{outlet pane}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n {{#if view.displayUser}}\\n \\n \\n \\n {{/if}}\\n \\n\");\n\nEmber.TEMPLATES['profile/tabs/hooks'] = Ember.Handlebars.compile(\"\\n {{{t profiles.show.message.your_repos}}}\\n
\\n\\n{{#if hooks.isLoaded}}\\n {{#if user.isSyncing}}\\n \\n Please wait while we sync from GitHub \\n
\\n {{else}}\\n \\n Last synchronized from GitHub: {{formatTime user.syncedAt}}\\n \\n Sync now\\n \\n
\\n\\n \\n {{#each hook in hooks}}\\n \\n {{hook.slug}} \\n {{hook.description}}
\\n\\n \\n \\n {{else}}\\n \\n You do not seem to have any repositories that we could sync.\\n \\n {{/each}}\\n \\n {{/if}}\\n{{else}}\\n \\n Loading \\n
\\n{{/if}}\\n\\n\\n\");\n\nEmber.TEMPLATES['profile/tabs/user'] = Ember.Handlebars.compile(\" \\n\\n\\n \\n {{t profiles.show.github}}:\\n \\n \\n {{user.login}} \\n \\n \\n {{t profiles.show.email}}:\\n \\n \\n {{user.email}}\\n \\n \\n {{t profiles.show.token}}:\\n \\n \\n {{user.token}}\\n \\n \\n\\n\\n\\n\\n\");\n\nEmber.TEMPLATES['queues/list'] = Ember.Handlebars.compile(\"\\n{{#each queue in controller}}\\n \\n {{t queue}}: {{queue.name}} \\n \\n \\n{{/each}}\\n \\n\");\n\nEmber.TEMPLATES['repos/list'] = Ember.Handlebars.compile(\"\\n {{view Ember.TextField valueBinding=\\\"controller.search\\\"}}\\n
\\n\\n{{view Travis.ReposListTabsView}}\\n\\n \\n\\n\\n {{#collection Travis.ReposListView contentBinding=\\\"controller\\\"}}\\n {{#with view.repo}}\\n
\\n
\\n {{#if slug}}\\n
{{slug}} \\n {{/if}}\\n
\\n {{#if lastBuildId}}\\n
{{lastBuildNumber}} \\n {{/if}}\\n\\n
\\n {{t repositories.duration}}: \\n {{formatDuration lastBuildDuration}} ,\\n {{t repositories.finished_at}}: \\n {{formatTime lastBuildFinishedAt}} \\n
\\n\\n
\\n\\n {{#if description}}\\n
\\n {{/if}}\\n {{/with}}\\n {{else}}\\n
\\n {{/collection}}\\n
\\n\");\n\nEmber.TEMPLATES['repos/list/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\\n\");\n\nEmber.TEMPLATES['repos/show'] = Ember.Handlebars.compile(\"\\n {{#if view.isEmpty}}\\n {{view Travis.ReposEmptyView}}\\n {{else}}\\n {{#if view.repo.isComplete}}\\n {{#with view.repo}}\\n
\\n\\n
{{description}}
\\n\\n
\\n\\n {{view Travis.RepoShowTabsView}}\\n {{view Travis.RepoShowToolsView}}\\n {{/with}}\\n\\n {{else}}\\n
Loading \\n {{/if}}\\n\\n
\\n {{outlet pane}}\\n
\\n {{/if}}\\n
\\n\\n\");\n\nEmber.TEMPLATES['repos/show/tabs'] = Ember.Handlebars.compile(\"\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n {{#if view.repo.slug}}\\n \\n Events\\n \\n {{/if}}\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n\");\n\nEmber.TEMPLATES['repos/show/tools'] = Ember.Handlebars.compile(\"\\n\\n\\n\");\n\nEmber.TEMPLATES['sponsors/decks'] = Ember.Handlebars.compile(\"{{t layouts.application.sponsers}} \\n\\n\\n\\n\\n \\n {{{t layouts.application.sponsors_link}}}\\n \\n
\\n\");\n\nEmber.TEMPLATES['sponsors/links'] = Ember.Handlebars.compile(\"\\n\\n\");\n\nEmber.TEMPLATES['stats/show'] = Ember.Handlebars.compile(\"Sorry \\nStatistics are disabled for now.
\\n We're looking into a solution. If you want to help, please ping us!
\\n\");\n\nEmber.TEMPLATES['workers/list'] = Ember.Handlebars.compile(\"{{#view Travis.WorkersView}}\\n \\n {{t workers}}\\n \\n \\n \\n {{#each group in controller.groups}}\\n {{#view Travis.WorkersListView}}\\n \\n \\n {{group.firstObject.host}}\\n \\n \\n {{#each worker in group}}\\n {{#view Travis.WorkersItemView workerBinding=\\\"worker\\\"}}\\n \\n
\\n {{#if worker.isWorking}}\\n {{#if worker.job_id}}\\n \\n {{view.display}}\\n \\n {{/if}}\\n {{else}}\\n {{view.display}}\\n {{/if}}\\n \\n {{/view}}\\n {{/each}}\\n \\n \\n {{/view}}\\n {{else}}\\n No workers\\n {{/each}}\\n \\n{{/view}}\\n\");\n\n})();\n//@ sourceURL=templates");minispade.register('config/locales', "(function() {window.I18n = window.I18n || {}\nwindow.I18n.translations = {\"ca\":{\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"pt-BR\":\"português brasileiro\",\"ru\":\"Русский\"}},\"en\":{\"errors\":{\"messages\":{\"not_found\":\"not found\",\"already_confirmed\":\"was already confirmed\",\"not_locked\":\"was not locked\"}},\"devise\":{\"failure\":{\"unauthenticated\":\"You need to sign in or sign up before continuing.\",\"unconfirmed\":\"You have to confirm your account before continuing.\",\"locked\":\"Your account is locked.\",\"invalid\":\"Invalid email or password.\",\"invalid_token\":\"Invalid authentication token.\",\"timeout\":\"Your session expired, please sign in again to continue.\",\"inactive\":\"Your account was not activated yet.\"},\"sessions\":{\"signed_in\":\"Signed in successfully.\",\"signed_out\":\"Signed out successfully.\"},\"passwords\":{\"send_instructions\":\"You will receive an email with instructions about how to reset your password in a few minutes.\",\"updated\":\"Your password was changed successfully. You are now signed in.\"},\"confirmations\":{\"send_instructions\":\"You will receive an email with instructions about how to confirm your account in a few minutes.\",\"confirmed\":\"Your account was successfully confirmed. You are now signed in.\"},\"registrations\":{\"signed_up\":\"You have signed up successfully. If enabled, a confirmation was sent to your e-mail.\",\"updated\":\"You updated your account successfully.\",\"destroyed\":\"Bye! Your account was successfully cancelled. We hope to see you again soon.\"},\"unlocks\":{\"send_instructions\":\"You will receive an email with instructions about how to unlock your account in a few minutes.\",\"unlocked\":\"Your account was successfully unlocked. You are now signed in.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Confirmation instructions\"},\"reset_password_instructions\":{\"subject\":\"Reset password instructions\"},\"unlock_instructions\":{\"subject\":\"Unlock Instructions\"}}},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hour\",\"other\":\"%{count} hours\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} second\",\"other\":\"%{count} seconds\"}}},\"workers\":\"Workers\",\"queue\":\"Queue\",\"no_job\":\"There are no jobs\",\"repositories\":{\"branch\":\"Branch\",\"image_url\":\"Image URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"tabs\":{\"current\":\"Current\",\"build_history\":\"Build History\",\"branches\":\"Branch Summary\",\"pull_requests\":\"Pull Requests\",\"build\":\"Build\",\"job\":\"Job\"}},\"build\":{\"job\":\"Job\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"This test suite was run on a worker box sponsored by\"},\"build_matrix\":\"Build Matrix\",\"allowed_failures\":\"Allowed Failures\",\"author\":\"Author\",\"config\":\"Config\",\"compare\":\"Compare\",\"committer\":\"Committer\",\"branch\":\"Branch\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Started\",\"duration\":\"Duration\",\"finished_at\":\"Finished\",\"show_more\":\"Show more\"},\"layouts\":{\"top\":{\"home\":\"Home\",\"blog\":\"Blog\",\"docs\":\"Docs\",\"stats\":\"Stats\",\"github_login\":\"Sign in with Github\",\"profile\":\"Profile\",\"sign_out\":\"Sign Out\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Recent\",\"search\":\"Search\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"See all of our amazing sponsors →\",\"my_repositories\":\"My Repositories\"},\"about\":{\"alpha\":\"This stuff is alpha.\",\"messages\":{\"alpha\":\"Please do not consider this a stable service. We're still far from that! More info here. \"},\"join\":\"Join us and help!\",\"mailing_list\":\"Mailing List\",\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Author\",\"build\":\"Build\",\"build_matrix\":\"Build Matrix\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Compare\",\"config\":\"Config\",\"duration\":\"Duration\",\"finished_at\":\"Finished at\",\"job\":\"Job\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Flick the switches below to turn on the Travis service hook for your projects, then push to GitHub.\",\"config\":\"how to configure custom build options\"},\"messages\":{\"notice\":\"To get started, please read our Getting Started guide .\\n It will only take a couple of minutes. \"},\"token\":\"Token\",\"your_repos\":\"Your Repositories\",\"update\":\"Update\",\"update_locale\":\"Update\",\"your_locale\":\"Your Locale\"}},\"statistics\":{\"index\":{\"count\":\"Count\",\"repo_growth\":\"Repository Growth\",\"total_projects\":\"Total Projects/Repositories\",\"build_count\":\"Build Count\",\"last_month\":\"last month\",\"total_builds\":\"Total Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"es\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"workers\":\"Procesos\",\"queue\":\"Cola\",\"no_job\":\"No hay trabajos\",\"repositories\":{\"branch\":\"Rama\",\"image_url\":\"Imagen URL\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"tabs\":{\"current\":\"Actual\",\"build_history\":\"Histórico\",\"branches\":\"Ramas\",\"build\":\"Builds\",\"job\":\"Trabajo\"}},\"build\":{\"job\":\"Trabajo\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\",\"sponsored_by\":\"Patrocinado por\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Esta serie de tests han sido ejecutados en una caja de Proceso patrocinada por\"},\"build_matrix\":\"Matriz de Builds\",\"allowed_failures\":\"Fallos Permitidos\",\"author\":\"Autor\",\"config\":\"Configuración\",\"compare\":\"Comparar\",\"committer\":\"Committer\",\"branch\":\"Rama\",\"commit\":\"Commit\",\"message\":\"Mensaje\",\"started_at\":\"Iniciado\",\"duration\":\"Duración\",\"finished_at\":\"Finalizado\"},\"layouts\":{\"top\":{\"home\":\"Inicio\",\"blog\":\"Blog\",\"docs\":\"Documentación\",\"stats\":\"Estadísticas\",\"github_login\":\"Iniciar sesión con Github\",\"profile\":\"Perfil\",\"sign_out\":\"Desconectar\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Hazme un Fork en Github\",\"recent\":\"Reciente\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Ver todos nuestros patrocinadores →\",\"my_repositories\":\"Mis Repositorios\"},\"about\":{\"alpha\":\"Esto es alpha.\",\"messages\":{\"alpha\":\"Por favor no considereis esto un servicio estable. Estamos estamos aún lejos de ello! Más información aquí. \"},\"join\":\"Únetenos y ayudanos!\",\"mailing_list\":\"Lista de Correos\",\"repository\":\"Repositorio\",\"twitter\":\"Twitter\"}},\"profiles\":{\"show\":{\"email\":\"Correo electrónico\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Activa los interruptores para inicial el Travis service hook para tus proyectos, y haz un Push en GitHub. \\n Para probar varias versiones de ruby, mira\",\"config\":\"como configurar tus propias opciones para el Build\"},\"messages\":{\"notice\":\"Para comenzar, por favor lee nuestra Guía de Inicio .\\n Solo tomará unos pocos minutos. \"},\"token\":\"Token\",\"your_repos\":\"Tus repositorios\",\"update\":\"Actualizar\",\"update_locale\":\"Actualizar\",\"your_locale\":\"Tu Idioma\"}},\"statistics\":{\"index\":{\"count\":\"Número\",\"repo_growth\":\"Crecimiento de Repositorios\",\"total_projects\":\"Total de Proyectos/Repositorios\",\"build_count\":\"Número de Builds\",\"last_month\":\"mes anterior\",\"total_builds\":\"Total de Builds\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"fr\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} heure\",\"other\":\"%{count} heures\"},\"minutes_exact\":{\"one\":\"%{count} minute\",\"other\":\"%{count} minutes\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} secondes\"}}},\"workers\":\"Processus\",\"queue\":\"File\",\"no_job\":\"Pas de tâches\",\"repositories\":{\"branch\":\"Branche\",\"image_url\":\"Image\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"tabs\":{\"current\":\"Actuel\",\"build_history\":\"Historique des tâches\",\"branches\":\"Résumé des branches\",\"build\":\"Construction\",\"job\":\"Tâche\"}},\"build\":{\"job\":\"Tâche\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\",\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"builds\":{\"name\":\"Version\",\"messages\":{\"sponsored_by\":\"Cette série de tests a été exécutée sur une machine sponsorisée par\"},\"build_matrix\":\"Matrice des versions\",\"allowed_failures\":\"Échecs autorisés\",\"author\":\"Auteur\",\"config\":\"Config\",\"compare\":\"Comparer\",\"committer\":\"Committeur\",\"branch\":\"Branche\",\"commit\":\"Commit\",\"message\":\"Message\",\"started_at\":\"Commencé\",\"duration\":\"Durée\",\"finished_at\":\"Terminé\"},\"layouts\":{\"top\":{\"home\":\"Accueil\",\"blog\":\"Blog\",\"docs\":\"Documentation\",\"stats\":\"Statistiques\",\"github_login\":\"Connection Github\",\"profile\":\"Profil\",\"sign_out\":\"Déconnection\",\"admin\":\"Admin\"},\"application\":{\"fork_me\":\"Faites un Fork sur Github\",\"recent\":\"Récent\",\"search\":\"Chercher\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Voir tous nos extraordinaire sponsors →\",\"my_repositories\":\"Mes dépôts\"},\"about\":{\"alpha\":\"Ceci est en alpha.\",\"messages\":{\"alpha\":\"S'il vous plaît ne considérez pas ce service comme étant stable. Nous sommes loin de ça! Plus d'infos ici. \"},\"join\":\"Joignez-vous à nous et aidez-nous!\",\"mailing_list\":\"Liste de distribution\",\"repository\":\"Dépôt\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Version\",\"build_matrix\":\"Matrice des versions\",\"commit\":\"Commit\",\"committer\":\"Committeur\",\"compare\":\"Comparer\",\"config\":\"Config\",\"duration\":\"Durée\",\"finished_at\":\"Terminé à\",\"job\":\"Tâche\",\"log\":\"Journal\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"message\":{\"your_repos\":\"Utilisez les boutons ci-dessous pour activer Travis sur vos projets puis déployez sur GitHub. \\nPour tester sur plus de versions de ruby, voir\",\"config\":\"comment configurer des options de version personnalisées\"},\"messages\":{\"notice\":\"Pour commencer, veuillez lire notre guide de démarrage .\\n Cela ne vous prendra que quelques minutes. \"},\"token\":\"Jeton\",\"your_repos\":\"Vos dépôts\",\"email\":\"Courriel\",\"update\":\"Modifier\",\"update_locale\":\"Modifier\",\"your_locale\":\"Votre langue\"}},\"statistics\":{\"index\":{\"count\":\"Décompte\",\"repo_growth\":\"Croissance de dépôt\",\"total_projects\":\"Total des projets/dépôts\",\"build_count\":\"Décompte des versions\",\"last_month\":\"mois dernier\",\"total_builds\":\"Total des versions\"}},\"admin\":{\"actions\":{\"create\":\"créer\",\"created\":\"créé\",\"delete\":\"supprimer\",\"deleted\":\"supprimé\",\"update\":\"mise à jour\",\"updated\":\"mis à jour\"},\"credentials\":{\"log_out\":\"Déconnection\"},\"delete\":{\"confirmation\":\"Oui, je suis sure\",\"flash_confirmation\":\"%{name} a été détruit avec succès\"},\"flash\":{\"error\":\"%{name} n'a pas pu être %{action}\",\"noaction\":\"Aucune action n'a été entreprise\",\"successful\":\"%{name} a réussi à %{action}\"},\"history\":{\"name\":\"Historique\",\"no_activity\":\"Aucune activité\",\"page_name\":\"Historique pour %{name}\"},\"list\":{\"add_new\":\"Ajouter un nouveau\",\"delete_action\":\"Supprimer\",\"delete_selected\":\"Supprimer la sélection\",\"edit_action\":\"Modifier\",\"search\":\"Rechercher\",\"select\":\"Sélectionner le %{name} à modifier\",\"select_action\":\"Sélectionner\",\"show_all\":\"Montrer tout\"},\"new\":{\"basic_info\":\"Information de base\",\"cancel\":\"Annuler\",\"chosen\":\"%{name} choisi\",\"chose_all\":\"Choisir tout\",\"clear_all\":\"Déselectionner tout\",\"many_chars\":\"caractères ou moins\",\"one_char\":\"caractère.\",\"optional\":\"Optionnel\",\"required\":\"Requis\",\"save\":\"Sauvegarder\",\"save_and_add_another\":\"Sauvegarder et en ajouter un autre\",\"save_and_edit\":\"Sauvegarder et modifier\",\"select_choice\":\"Faites vos choix et cliquez\"},\"dashboard\":{\"add_new\":\"Ajouter un nouveau\",\"last_used\":\"Dernière utilisation\",\"model_name\":\"Nom du modèle\",\"modify\":\"Modification\",\"name\":\"Tableau de bord\",\"pagename\":\"Administration du site\",\"records\":\"Enregistrements\",\"show\":\"Voir\",\"ago\":\"plus tôt\"}},\"home\":{\"name\":\"accueil\"},\"repository\":{\"duration\":\"Durée\"},\"devise\":{\"confirmations\":{\"confirmed\":\"Votre compte a été crée avec succès. Vous être maintenant connecté.\",\"send_instructions\":\"Vous allez recevoir un courriel avec les instructions de confirmation de votre compte dans quelques minutes.\"},\"failure\":{\"inactive\":\"Votre compte n'a pas encore été activé.\",\"invalid\":\"Adresse courriel ou mot de passe invalide.\",\"invalid_token\":\"Jeton d'authentification invalide.\",\"locked\":\"Votre compte est bloqué.\",\"timeout\":\"Votre session est expirée, veuillez vous reconnecter pour continuer.\",\"unauthenticated\":\"Vous devez vous connecter ou vous enregistrer afin de continuer\",\"unconfirmed\":\"Vous devez confirmer votre compte avant de continuer.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instructions de confirmations\"},\"reset_password_instructions\":{\"subject\":\"Instruction de remise à zéro du mot de passe\"},\"unlock_instructions\":{\"subject\":\"Instruction de débloquage\"}},\"passwords\":{\"send_instructions\":\"Vous recevrez un courriel avec les instructions de remise à zéro du mot de passe dans quelques minutes.\",\"updated\":\"Votre mot de passe a été changé avec succès. Vous êtes maintenant connecté.\"},\"registrations\":{\"destroyed\":\"Au revoir! Votre compte a été annulé avec succès. Nous espérons vous revoir bientôt.\",\"signed_up\":\"Vous êtes enregistré avec succès. Si activé, une confirmation vous a été envoyé par courriel.\",\"updated\":\"Votre compte a été mis a jour avec succès\"},\"sessions\":{\"signed_in\":\"Connecté avec succès\",\"signed_out\":\"Déconnecté avec succès\"},\"unlocks\":{\"send_instructions\":\"Vous recevrez un courriel contenant les instructions pour débloquer votre compte dans quelques minutes.\",\"unlocked\":\"Votre compte a été débloqué avec succès.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"étais déja confirmé\",\"not_found\":\"n'a pas été trouvé\",\"not_locked\":\"n'étais pas bloqué\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"ja\":{\"workers\":\"ワーカー\",\"queue\":\"キュー\",\"no_job\":\"ジョブはありません\",\"repositories\":{\"branch\":\"ブランチ\",\"image_url\":\"画像URL\",\"markdown\":\".md\",\"textile\":\".textile\",\"rdoc\":\".rdoc\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"tabs\":{\"current\":\"最新\",\"build_history\":\"ビルド履歴\",\"branches\":\"ブランチまとめ\",\"build\":\"ビルド\",\"job\":\"ジョブ\"}},\"build\":{\"job\":\"ジョブ\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"ビルドマトリクス\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"builds\":{\"name\":\"ビルド\",\"messages\":{\"sponsored_by\":\"このテストは以下のスポンサーの協力で行いました。\"},\"build_matrix\":\"失敗許容範囲外\",\"allowed_failures\":\"失敗許容範囲内\",\"author\":\"制作者\",\"config\":\"設定\",\"compare\":\"比較\",\"committer\":\"コミット者\",\"branch\":\"ブランチ\",\"commit\":\"コミット\",\"message\":\"メッセージ\",\"started_at\":\"開始時刻\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\"},\"layouts\":{\"about\":{\"alpha\":\"まだアルファですよ!\",\"join\":\"参加してみよう!\",\"mailing_list\":\"メールリスト\",\"messages\":{\"alpha\":\"Travis-ciは安定したサービスまで後一歩!詳しくはこちら \"},\"repository\":\"リポジトリ\",\"twitter\":\"ツイッター\"},\"application\":{\"fork_me\":\"Githubでフォークしよう\",\"my_repositories\":\"マイリポジトリ\",\"recent\":\"最近\",\"search\":\"検索\",\"sponsers\":\"スポンサー\",\"sponsors_link\":\"スポンサーをもっと見る →\"},\"top\":{\"blog\":\"ブログ\",\"docs\":\"Travisとは?\",\"github_login\":\"Githubでログイン\",\"home\":\"ホーム\",\"profile\":\"プロフィール\",\"sign_out\":\"ログアウト\",\"stats\":\"統計\",\"admin\":\"管理\"},\"mobile\":{\"author\":\"制作者\",\"build\":\"ビルド\",\"build_matrix\":\"ビルドマトリクス\",\"commit\":\"コミット\",\"committer\":\"コミット者\",\"compare\":\"比較\",\"config\":\"設定\",\"duration\":\"処理時間\",\"finished_at\":\"終了時刻\",\"job\":\"ジョブ\",\"log\":\"ログ\"}},\"profiles\":{\"show\":{\"github\":\"Github\",\"email\":\"メール\",\"message\":{\"config\":\"詳細設定\",\"your_repos\":\"以下のスイッチを設定し、Travis-ciを有効にします。Githubへプッシュしたらビルドは自動的に開始します。複数バーションや細かい設定はこちらへ:\"},\"messages\":{\"notice\":\"まずはTravisのはじめ方 を参照してください。\"},\"token\":\"トークン\",\"your_repos\":\"リポジトリ\",\"update\":\"更新\",\"update_locale\":\"更新\",\"your_locale\":\"言語設定\"}},\"statistics\":{\"index\":{\"build_count\":\"ビルド数\",\"count\":\"数\",\"last_month\":\"先月\",\"repo_growth\":\"リポジトリ\",\"total_builds\":\"合計ビルド数\",\"total_projects\":\"合計リポジトリ\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nb\":{\"admin\":{\"actions\":{\"create\":\"opprett\",\"created\":\"opprettet\",\"delete\":\"slett\",\"deleted\":\"slettet\",\"update\":\"oppdater\",\"updated\":\"oppdatert\"},\"credentials\":{\"log_out\":\"Logg ut\"},\"dashboard\":{\"add_new\":\"Legg til ny\",\"ago\":\"siden\",\"last_used\":\"Sist brukt\",\"model_name\":\"Modell\",\"modify\":\"Rediger\",\"name\":\"Dashbord\",\"pagename\":\"Nettstedsadministrasjon\",\"records\":\"Oppføringer\",\"show\":\"Vis\"},\"delete\":{\"confirmation\":\"Ja, jeg er sikker\",\"flash_confirmation\":\"%{name} ble slettet\"},\"flash\":{\"error\":\"%{name} kunne ikke bli %{action}\",\"noaction\":\"Ingen handlinger ble utført\",\"successful\":\"%{name} ble %{action}\"},\"history\":{\"name\":\"Logg\",\"no_activity\":\"Ingen aktivitet\",\"page_name\":\"Logg for %{name}\"},\"list\":{\"add_new\":\"Legg til ny\",\"delete_action\":\"Slett\",\"delete_selected\":\"Slett valgte\",\"edit_action\":\"Rediger\",\"search\":\"Søk\",\"select\":\"Velg %{name} for å redigere\",\"select_action\":\"Velg\",\"show_all\":\"Vis alle \"},\"new\":{\"basic_info\":\"Basisinformasjon\",\"cancel\":\"Avbryt\",\"chosen\":\"Valgt %{name}\",\"chose_all\":\"Velg alle\",\"clear_all\":\"Fjern alle\",\"many_chars\":\"eller færre tegn.\",\"one_char\":\"tegn.\",\"optional\":\"Valgfri\",\"required\":\"Påkrevd\",\"save\":\"Lagre\",\"save_and_add_another\":\"Lagre og legg til ny\",\"save_and_edit\":\"Lagre og rediger\",\"select_choice\":\"Kryss av for dine valg og klikk\"}},\"build\":{\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\"},\"builds\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testen ble kjørt på en maskin sponset av\"},\"name\":\"Jobb\",\"started_at\":\"Startet\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} time\",\"other\":\"%{count} timer\"},\"minutes_exact\":{\"one\":\"%{count} minutt\",\"other\":\"%{count} minutter\"},\"seconds_exact\":{\"one\":\"%{count} sekund\",\"other\":\"%{count} sekunder\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Din konto er aktivert og du er nå innlogget.\",\"send_instructions\":\"Om noen få minutter så vil du få en e-post med informasjon om hvordan du bekrefter kontoen din.\"},\"failure\":{\"inactive\":\"Kontoen din har ikke blitt aktivert enda.\",\"invalid\":\"Ugyldig e-post eller passord.\",\"invalid_token\":\"Ugyldig autentiseringskode.\",\"locked\":\"Kontoen din er låst.\",\"timeout\":\"Du ble logget ut siden på grunn av mangel på aktivitet, vennligst logg inn på nytt.\",\"unauthenticated\":\"Du må logge inn eller registrere deg for å fortsette.\",\"unconfirmed\":\"Du må bekrefte kontoen din før du kan fortsette.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bekreftelsesinformasjon\"},\"reset_password_instructions\":{\"subject\":\"Instruksjoner for å få nytt passord\"},\"unlock_instructions\":{\"subject\":\"Opplåsningsinstruksjoner\"}},\"passwords\":{\"send_instructions\":\"Om noen få minutter så vil du få en epost med informasjon om hvordan du kan få et nytt passord.\",\"updated\":\"Passordet ditt ble endret, og du er logget inn.\"},\"registrations\":{\"destroyed\":\"Adjø! Kontoen din ble kansellert. Vi håper vi ser deg igjen snart.\",\"signed_up\":\"Du er nå registrert.\",\"updated\":\"Kontoen din ble oppdatert.\"},\"sessions\":{\"signed_in\":\"Du er nå logget inn.\",\"signed_out\":\"Du er nå logget ut.\"},\"unlocks\":{\"send_instructions\":\"Om noen få minutter så kommer du til å få en e-post med informasjon om hvordan du kan låse opp kontoen din.\",\"unlocked\":\"Kontoen din ble låst opp, og du er nå logget inn igjen.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"har allerede blitt bekreftet\",\"not_found\":\"ikke funnnet\",\"not_locked\":\"var ikke låst\"}},\"home\":{\"name\":\"hjem\"},\"jobs\":{\"allowed_failures\":\"Tillatte feil\",\"author\":\"Forfatter\",\"branch\":\"Gren\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"message\":\"Beskrivelse\",\"messages\":{\"sponsored_by\":\"Denne testserien ble kjørt på en maskin sponset av\"},\"started_at\":\"Startet\"},\"layouts\":{\"about\":{\"alpha\":\"Dette er alfa-greier.\",\"join\":\"Bli med og hjelp oss!\",\"mailing_list\":\"E-postliste\",\"messages\":{\"alpha\":\"Dette er ikke en stabil tjeneste. Vi har fremdeles et stykke igjen! Mer informasjon finner du her .\"},\"repository\":\"Kodelager\",\"twitter\":\"Twitter.\"},\"application\":{\"fork_me\":\"Se koden på Github\",\"my_repositories\":\"Mine kodelagre\",\"recent\":\"Nylig\",\"search\":\"Søk\",\"sponsers\":\"Sponsorer\",\"sponsors_link\":\"Se alle de flotte sponsorene våre →\"},\"mobile\":{\"author\":\"Forfatter\",\"build\":\"Jobb\",\"build_matrix\":\"Jobbmatrise\",\"commit\":\"Innsending\",\"committer\":\"Innsender\",\"compare\":\"Sammenlign\",\"config\":\"Oppsett\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"job\":\"Jobb\",\"log\":\"Logg\"},\"top\":{\"admin\":\"Administrator\",\"blog\":\"Blogg\",\"docs\":\"Dokumentasjon\",\"github_login\":\"Logg inn med Github\",\"home\":\"Hjem\",\"profile\":\"Profil\",\"sign_out\":\"Logg ut\",\"stats\":\"Statistikk\"}},\"no_job\":\"Ingen jobber finnnes\",\"profiles\":{\"show\":{\"email\":\"E-post\",\"github\":\"Github\",\"message\":{\"config\":\"hvordan sette opp egne jobbinnstillinger\",\"your_repos\":\"Slå\\u0010 på Travis for prosjektene dine ved å dra i bryterne under, og send koden til Github. \\nFor å teste mot flere ruby-versjoner, se dokumentasjonen for\"},\"messages\":{\"notice\":\"For å komme i gang, vennligst les kom-i-gang-veivisereren vår. Det tar bare et par minutter. \"},\"token\":\"Kode\",\"update\":\"Oppdater\",\"update_locale\":\"Oppdater\",\"your_locale\":\"Ditt språk\",\"your_repos\":\"Dine kodelagre\"}},\"queue\":\"Kø\",\"repositories\":{\"branch\":\"Gren\",\"commit\":\"Innsender\",\"duration\":\"Varighet\",\"finished_at\":\"Fullført\",\"image_url\":\"Bilde-URL\",\"markdown\":\"Markdown\",\"message\":\"Beskrivelse\",\"rdoc\":\"RDOC\",\"started_at\":\"Startet\",\"tabs\":{\"branches\":\"Grensammendrag\",\"build\":\"Jobb\",\"build_history\":\"Jobblogg\",\"current\":\"Siste\",\"job\":\"Jobb\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Varighet\"},\"statistics\":{\"index\":{\"build_count\":\"Antall jobber\",\"count\":\"Antall\",\"last_month\":\"siste måned\",\"repo_growth\":\"Vekst i kodelager\",\"total_builds\":\"Totale jobber\",\"total_projects\":\"Antall prosjekter/kodelagre\"}},\"workers\":\"Arbeidere\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"nl\":{\"admin\":{\"actions\":{\"create\":\"aanmaken\",\"created\":\"aangemaakt\",\"delete\":\"verwijderen\",\"deleted\":\"verwijderd\",\"update\":\"bijwerken\",\"updated\":\"bijgewerkt\"},\"credentials\":{\"log_out\":\"Afmelden\"},\"dashboard\":{\"add_new\":\"Nieuwe toevoegen\",\"ago\":\"geleden\",\"last_used\":\"Laatst gebruikt\",\"model_name\":\"Model naam\",\"modify\":\"Wijzigen\",\"pagename\":\"Site administratie\",\"show\":\"Laten zien\",\"records\":\"Gegevens\"},\"delete\":{\"confirmation\":\"Ja, ik ben zeker\",\"flash_confirmation\":\"%{name} is vernietigd\"},\"flash\":{\"error\":\"%{name} kon niet worden %{action}\",\"noaction\":\"Er zijn geen acties genomen\",\"successful\":\"%{name} is %{action}\"},\"history\":{\"name\":\"Geschiedenis\",\"no_activity\":\"Geen activiteit\",\"page_name\":\"Geschiedenis van %{name}\"},\"list\":{\"add_new\":\"Nieuwe toevoegen\",\"delete_action\":\"Verwijderen\",\"delete_selected\":\"Verwijder geselecteerden\",\"edit_action\":\"Bewerken\",\"search\":\"Zoeken\",\"select\":\"Selecteer %{name} om te bewerken\",\"select_action\":\"Selecteer\",\"show_all\":\"Laat allen zien\"},\"new\":{\"basic_info\":\"Basisinfo\",\"cancel\":\"Annuleren\",\"chosen\":\"%{name} gekozen\",\"chose_all\":\"Kies allen\",\"clear_all\":\"Deselecteer allen\",\"many_chars\":\"tekens of minder.\",\"one_char\":\"teken.\",\"optional\":\"Optioneel\",\"required\":\"Vereist\",\"save\":\"Opslaan\",\"save_and_add_another\":\"Opslaan en een nieuwe toevoegen\",\"save_and_edit\":\"Opslaan en bewerken\",\"select_choice\":\"Selecteer uw keuzes en klik\"}},\"build\":{\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"job\":\"Taak\"},\"builds\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw Matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze tests zijn gedraaid op een machine gesponsord door\"},\"name\":\"Bouw\",\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} uur\",\"other\":\"%{count} uren\"},\"minutes_exact\":{\"one\":\"%{count} minuut\",\"other\":\"%{count} minuten\"},\"seconds_exact\":{\"one\":\"%{count} seconde\",\"other\":\"%{count} seconden\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Uw account is bevestigd. U wordt nu ingelogd.\",\"send_instructions\":\"Binnen enkele minuten zal u een email ontvangen met instructies om uw account te bevestigen.\"},\"failure\":{\"inactive\":\"Uw account is nog niet geactiveerd.\",\"invalid\":\"Ongeldig email adres of wachtwoord.\",\"invalid_token\":\"Ongeldig authenticatie token.\",\"locked\":\"Uw account is vergrendeld.\",\"timeout\":\"Uw sessie is verlopen, gelieve opnieuw in te loggen om verder te gaan.\",\"unauthenticated\":\"U moet inloggen of u registeren voordat u verder gaat.\",\"unconfirmed\":\"U moet uw account bevestigen voordat u verder gaat.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Bevestigings-instructies\"},\"reset_password_instructions\":{\"subject\":\"Wachtwoord herstel instructies\"},\"unlock_instructions\":{\"subject\":\"Ontgrendel-instructies\"}},\"passwords\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw wachtwoord opnieuw in te stellen.\",\"updated\":\"Uw wachtwoord is veranderd. U wordt nu ingelogd.\"},\"registrations\":{\"destroyed\":\"Dag! Uw account is geannuleerd. We hopen u vlug terug te zien.\",\"signed_up\":\"Uw registratie is voltooid. Als het ingeschakeld is wordt een bevestiging naar uw email adres verzonden.\",\"updated\":\"Het bijwerken van uw account is gelukt.\"},\"sessions\":{\"signed_in\":\"Inloggen gelukt.\",\"signed_out\":\"Uitloggen gelukt.\"},\"unlocks\":{\"send_instructions\":\"Binnen enkele minuten zal u een email krijgen met instructies om uw account te ontgrendelen.\",\"unlocked\":\"Uw account is ontgrendeld. U wordt nu ingelogd.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"was al bevestigd\",\"not_found\":\"niet gevonden\",\"not_locked\":\"was niet vergrendeld\"}},\"jobs\":{\"allowed_failures\":\"Toegestane mislukkingen\",\"author\":\"Auteur\",\"branch\":\"Tak\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"message\":\"Bericht\",\"messages\":{\"sponsored_by\":\"Deze testen zijn uitgevoerd op een machine gesponsord door\"},\"started_at\":\"Gestart\",\"commit\":\"Commit\",\"committer\":\"Committer\"},\"layouts\":{\"about\":{\"alpha\":\"Dit is in alfa-stadium.\",\"join\":\"Doe met ons mee en help!\",\"mailing_list\":\"Mailing lijst\",\"messages\":{\"alpha\":\"Gelieve deze service niet te beschouwen als stabiel. Daar zijn we nog lang niet! Meer info hier. \"},\"repository\":\"Repository\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Maak een fork op Github\",\"my_repositories\":\"Mijn repositories\",\"recent\":\"Recent\",\"search\":\"Zoeken\",\"sponsers\":\"Sponsors\",\"sponsors_link\":\"Bekijk al onze geweldige sponsors →\"},\"mobile\":{\"author\":\"Auteur\",\"build\":\"Bouw\",\"build_matrix\":\"Bouw matrix\",\"compare\":\"Vergelijk\",\"config\":\"Configuratie\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid op\",\"job\":\"Taak\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"log\":\"Logboek\"},\"top\":{\"admin\":\"Administratie\",\"blog\":\"Blog\",\"docs\":\"Documentatie\",\"github_login\":\"Inloggen met Github\",\"home\":\"Home\",\"profile\":\"Profiel\",\"sign_out\":\"Uitloggen\",\"stats\":\"Statistieken\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Er zijn geen taken\",\"profiles\":{\"show\":{\"email\":\"Email adres\",\"github\":\"Github\",\"message\":{\"config\":\"hoe eigen bouw-opties in te stellen\",\"your_repos\":\"Zet de schakelaars hieronder aan om de Travis hook voor uw projecten te activeren en push daarna naar Github \\nOm te testen tegen meerdere rubies, zie\"},\"messages\":{\"notice\":\"Om te beginnen kunt u onze startersgids lezen.\\\\n Het zal maar enkele minuten van uw tijd vergen. \"},\"update\":\"Bijwerken\",\"update_locale\":\"Bijwerken\",\"your_locale\":\"Uw taal\",\"your_repos\":\"Uw repositories\",\"token\":\"Token\"}},\"queue\":\"Wachtrij\",\"repositories\":{\"branch\":\"Tak\",\"duration\":\"Duur\",\"finished_at\":\"Voltooid\",\"image_url\":\"Afbeeldings URL\",\"message\":\"Bericht\",\"started_at\":\"Gestart\",\"tabs\":{\"branches\":\"Tak samenvatting\",\"build\":\"Bouw\",\"build_history\":\"Bouw geschiedenis\",\"current\":\"Huidig\",\"job\":\"Taak\"},\"commit\":\"Commit\",\"markdown\":\"Markdown\",\"rdoc\":\"RDOC\",\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duur\"},\"statistics\":{\"index\":{\"build_count\":\"Bouw aantal\",\"count\":\"Aantal\",\"last_month\":\"voorbije maand\",\"repo_growth\":\"Repository groei\",\"total_builds\":\"Bouw totaal\",\"total_projects\":\"Projecten/Repository totaal\"}},\"workers\":\"Machines\",\"home\":{\"name\":\"Hoofdpagina\"}},\"pl\":{\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} godzina\",\"other\":\"%{count} godziny\"},\"minutes_exact\":{\"one\":\"%{count} minuta\",\"other\":\"%{count} minuty\"},\"seconds_exact\":{\"one\":\"%{count} sekunda\",\"other\":\"%{count} sekundy\"}}},\"workers\":\"Workers\",\"queue\":\"Kolejka\",\"no_job\":\"Brak zadań\",\"repositories\":{\"branch\":\"Gałąź\",\"image_url\":\"URL obrazka\",\"markdown\":\"Markdown\",\"textile\":\"Textile\",\"rdoc\":\"RDOC\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"tabs\":{\"current\":\"Aktualny\",\"build_history\":\"Historia Buildów\",\"branches\":\"Wszystkie Gałęzie\",\"build\":\"Build\",\"job\":\"Zadanie\"}},\"build\":{\"job\":\"Zadanie\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"jobs\":{\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Committer\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"builds\":{\"name\":\"Build\",\"messages\":{\"sponsored_by\":\"Te testy zostały uruchomione na maszynie sponsorowanej przez\"},\"build_matrix\":\"Macierz Buildów\",\"allowed_failures\":\"Dopuszczalne Niepowodzenia\",\"author\":\"Autor\",\"config\":\"Konfiguracja\",\"compare\":\"Porównanie\",\"committer\":\"Komitujący\",\"branch\":\"Gałąź\",\"commit\":\"Commit\",\"message\":\"Opis\",\"started_at\":\"Rozpoczęto\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\"},\"layouts\":{\"top\":{\"home\":\"Start\",\"blog\":\"Blog\",\"docs\":\"Dokumentacja\",\"stats\":\"Statystki\",\"github_login\":\"Zaloguj się przy pomocy Githuba\",\"profile\":\"Profil\",\"sign_out\":\"Wyloguj się\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"recent\":\"Ostatnie\",\"search\":\"Wyniki\",\"sponsers\":\"Sponsorzy\",\"sponsors_link\":\"Zobacz naszych wszystkich wspaniałych sponsorów →\",\"my_repositories\":\"Moje repozytoria\"},\"about\":{\"alpha\":\"To wciąż jest wersja alpha.\",\"messages\":{\"alpha\":\"Proszę nie traktuj tego jako stabilnej usługi. Wciąż nam wiele do tego brakuje! Więcej informacji znajdziesz tutaj. \"},\"join\":\"Pomóż i dołącz do nas!\",\"mailing_list\":\"Lista mailingowa\",\"repository\":\"Repozytorium\",\"twitter\":\"Twitter\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Macierz Buildów\",\"commit\":\"Commit\",\"committer\":\"Komitujący\",\"compare\":\"Porównianie\",\"config\":\"Konfiguracja\",\"duration\":\"Czas trwania\",\"finished_at\":\"Zakończono\",\"job\":\"Zadanie\",\"log\":\"Log\"}},\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"your_repos\":\" Przesuń suwak poniżej, aby włączyć Travisa, dla twoich projektów, a następnie umieść swój kod na GitHubie. \\n Aby testować swój kod przy użyciu wielu wersji Rubiego, zobacz\",\"config\":\"jak skonfigurować niestandardowe opcje builda\"},\"messages\":{\"notice\":\"Aby zacząć, przeczytaj nasz Przewodnik .\\n Zajmie ci to tylko kilka minut. \"},\"token\":\"Token\",\"your_repos\":\"Twoje repozytoria\"}},\"statistics\":{\"index\":{\"count\":\"Ilość\",\"repo_growth\":\"Przyrost repozytoriów\",\"total_projects\":\"Łącznie projektów/repozytoriów\",\"build_count\":\"Liczba buildów\",\"last_month\":\"ostatni miesiąc\",\"total_builds\":\"Łącznie Buildów\"}},\"date\":{\"abbr_day_names\":[\"nie\",\"pon\",\"wto\",\"śro\",\"czw\",\"pią\",\"sob\"],\"abbr_month_names\":[\"sty\",\"lut\",\"mar\",\"kwi\",\"maj\",\"cze\",\"lip\",\"sie\",\"wrz\",\"paź\",\"lis\",\"gru\"],\"day_names\":[\"niedziela\",\"poniedziałek\",\"wtorek\",\"środa\",\"czwartek\",\"piątek\",\"sobota\"],\"formats\":{\"default\":\"%d-%m-%Y\",\"long\":\"%B %d, %Y\",\"short\":\"%d %b\"},\"month_names\":[\"styczeń\",\"luty\",\"marzec\",\"kwiecień\",\"maj\",\"czerwiec\",\"lipiec\",\"sierpień\",\"wrzesień\",\"październik\",\"listopad\",\"grudzień\"],\"order\":[\"day\",\"month\",\"year\"]},\"errors\":{\"format\":\"%{attribute} %{message}\",\"messages\":{\"accepted\":\"musi zostać zaakceptowane\",\"blank\":\"nie może być puste\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}},\"pt-BR\":{\"admin\":{\"actions\":{\"create\":\"criar\",\"created\":\"criado\",\"delete\":\"deletar\",\"deleted\":\"deletado\",\"update\":\"atualizar\",\"updated\":\"atualizado\"},\"credentials\":{\"log_out\":\"Deslogar\"},\"dashboard\":{\"add_new\":\"Adicionar novo\",\"ago\":\"atrás\",\"last_used\":\"Última utilização\",\"model_name\":\"Nome do modelo\",\"modify\":\"Modificar\",\"name\":\"Dashboard\",\"pagename\":\"Administração do site\",\"records\":\"Registros\",\"show\":\"Mostrar\"},\"delete\":{\"confirmation\":\"Sim, tenho certeza\",\"flash_confirmation\":\"%{name} foi destruído com sucesso\"},\"flash\":{\"error\":\"%{name} falhou ao %{action}\",\"noaction\":\"Nenhuma ação foi tomada\",\"successful\":\"%{name} foi %{action} com sucesso\"},\"history\":{\"name\":\"Histórico\",\"no_activity\":\"Nenhuma Atividade\",\"page_name\":\"Histórico para %{name}\"},\"list\":{\"add_new\":\"Adicionar novo\",\"delete_action\":\"Deletar\",\"delete_selected\":\"Deletar selecionados\",\"edit_action\":\"Editar\",\"search\":\"Buscar\",\"select\":\"Selecionar %{name} para editar\",\"select_action\":\"Selecionar\",\"show_all\":\"Mostrar todos\"},\"new\":{\"basic_info\":\"Informações básicas\",\"cancel\":\"Cancelar\",\"chosen\":\"Escolhido %{name}\",\"chose_all\":\"Escolher todos\",\"clear_all\":\"Limpar todos\",\"many_chars\":\"caracteres ou menos.\",\"one_char\":\"caractere.\",\"optional\":\"Opcional\",\"required\":\"Requerido\",\"save\":\"Salvar\",\"save_and_add_another\":\"Salvar e adicionar outro\",\"save_and_edit\":\"Salvar e alterar\",\"select_choice\":\"Selecione e clique\"}},\"build\":{\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\"},\"builds\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"name\":\"Build\",\"started_at\":\"Iniciou em\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} hora\",\"other\":\"%{count} horas\"},\"minutes_exact\":{\"one\":\"%{count} minuto\",\"other\":\"%{count} minutos\"},\"seconds_exact\":{\"one\":\"%{count} segundo\",\"other\":\"%{count} segundos\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Sua conta foi confirmada com sucesso. Você agora está logado.\",\"send_instructions\":\"Você receberá um email com instruções de como confirmar sua conta em alguns minutos.\"},\"failure\":{\"inactive\":\"Sua conta ainda não foi ativada.\",\"invalid\":\"Email ou senha inválidos.\",\"invalid_token\":\"Token de autenticação inválido.\",\"locked\":\"Sua conta está trancada.\",\"timeout\":\"Sua sessão expirou, por favor faça seu login novamente.\",\"unauthenticated\":\"Você precisa fazer o login ou cadastrar-se antes de continuar.\",\"unconfirmed\":\"Você precisa confirmar sua conta antes de continuar.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Instruções de confirmação\"},\"reset_password_instructions\":{\"subject\":\"Instruções de atualização de senha\"},\"unlock_instructions\":{\"subject\":\"Instruções de destrancamento\"}},\"passwords\":{\"send_instructions\":\"Você receberá um email com instruções de como atualizar sua senha em alguns minutos.\",\"updated\":\"Sua senha foi alterada com sucesso. Você agora está logado.\"},\"registrations\":{\"destroyed\":\"Tchau! Sua conta foi cancelada com sucesso. Esperamos vê-lo novamente em breve!\",\"signed_up\":\"Você se cadastrou com sucesso. Se ativada, uma confirmação foi enviada para seu email.\",\"updated\":\"Você atualizou sua conta com sucesso.\"},\"sessions\":{\"signed_in\":\"Logado com sucesso.\",\"signed_out\":\"Deslogado com sucesso.\"},\"unlocks\":{\"send_instructions\":\"Você receberá um email com instruções de como destrancar sua conta em alguns minutos.\",\"unlocked\":\"Sua conta foi destrancada com sucesso. Você agora está logado.\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"já foi confirmado\",\"not_found\":\"não encontrado\",\"not_locked\":\"não estava trancado\"}},\"home\":{\"name\":\"home\"},\"jobs\":{\"allowed_failures\":\"Falhas Permitidas\",\"author\":\"Autor\",\"branch\":\"Branch\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"message\":\"Mensagem\",\"messages\":{\"sponsored_by\":\"Esta série de testes foi executada em uma caixa de processos patrocinada por\"},\"started_at\":\"Iniciou em\"},\"layouts\":{\"about\":{\"alpha\":\"Isto é um alpha.\",\"join\":\"Junte-se à nós e ajude!\",\"mailing_list\":\"Lista de email\",\"messages\":{\"alpha\":\"Por favor, não considere isto um serviço estável. Estamos muito longe disso! Mais informações aqui. \"},\"repository\":\"Repositório\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Faça fork no Github\",\"my_repositories\":\"Meus Repositórios\",\"recent\":\"Recentes\",\"search\":\"Buscar\",\"sponsers\":\"Patrocinadores\",\"sponsors_link\":\"Conheça todos os nossos patrocinadores →\"},\"mobile\":{\"author\":\"Autor\",\"build\":\"Build\",\"build_matrix\":\"Matriz de Build\",\"commit\":\"Commit\",\"committer\":\"Committer\",\"compare\":\"Comparar\",\"config\":\"Config\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"job\":\"Trabalho\",\"log\":\"Log\"},\"top\":{\"admin\":\"Admin\",\"blog\":\"Blog\",\"docs\":\"Documentação\",\"github_login\":\"Logue com o Github\",\"home\":\"Home\",\"profile\":\"Perfil\",\"sign_out\":\"Sair\",\"stats\":\"Estatísticas\"}},\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"fr\":\"Français\",\"ja\":\"日本語\",\"nb\":\"Norsk Bokmål\",\"nl\":\"Nederlands\",\"pl\":\"Polski\",\"ru\":\"Русский\",\"pt-BR\":\"português brasileiro\"},\"no_job\":\"Não há trabalhos\",\"profiles\":{\"show\":{\"email\":\"Email\",\"github\":\"Github\",\"message\":{\"config\":\"como configurar opções de build\",\"your_repos\":\"Use os botões abaixo para ligar ou desligar o hook de serviço do Travis para seus projetos, e então, faça um push para o Github. Para testar com múltiplas versões do Ruby, leia\"},\"messages\":{\"notice\":\"Para começar, leia nosso Guia de início . Só leva alguns minutinhos. \"},\"token\":\"Token\",\"update\":\"Atualizar\",\"update_locale\":\"Atualizar\",\"your_locale\":\"Sua língua\",\"your_repos\":\"Seus Repositórios\"}},\"queue\":\"Fila\",\"repositories\":{\"branch\":\"Branch\",\"commit\":\"Commit\",\"duration\":\"Duração\",\"finished_at\":\"Concluído em\",\"image_url\":\"URL da imagem\",\"markdown\":\"Markdown\",\"message\":\"Mensagem\",\"rdoc\":\"RDOC\",\"started_at\":\"Iniciou em\",\"tabs\":{\"branches\":\"Sumário do Branch\",\"build\":\"Build\",\"build_history\":\"Histórico de Build\",\"current\":\"Atual\",\"job\":\"Trabalho\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Duração\"},\"statistics\":{\"index\":{\"build_count\":\"Número de Builds\",\"count\":\"Número\",\"last_month\":\"último mês\",\"repo_growth\":\"Crescimento de Repositório\",\"total_builds\":\"Total de Builds\",\"total_projects\":\"Total de Projetos/Repositórios\"}},\"workers\":\"Processos\"},\"ru\":{\"admin\":{\"actions\":{\"create\":\"создать\",\"created\":\"создано\",\"delete\":\"удалить\",\"deleted\":\"удалено\",\"update\":\"обновить\",\"updated\":\"обновлено\"},\"credentials\":{\"log_out\":\"Выход\"},\"dashboard\":{\"add_new\":\"Добавить\",\"ago\":\"назад\",\"last_used\":\"Использовалось в последний раз\",\"model_name\":\"Имя модели\",\"modify\":\"Изменить\",\"name\":\"Панель управления\",\"pagename\":\"Управление сайтом\",\"records\":\"Записи\",\"show\":\"Показать\"},\"delete\":{\"confirmation\":\"Да, я уверен\",\"flash_confirmation\":\"%{name} успешно удалено\"},\"history\":{\"name\":\"История\",\"no_activity\":\"Нет активности\",\"page_name\":\"История %{name}\"},\"list\":{\"add_new\":\"Добавить\",\"delete_action\":\"Удалить\",\"delete_selected\":\"Удалить выбранные\",\"edit_action\":\"Редактировать\",\"search\":\"Поиск\",\"select\":\"Для редактирования выберите %{name}\",\"select_action\":\"Выбрать\",\"show_all\":\"Показать все\"},\"new\":{\"basic_info\":\"Основная информация\",\"cancel\":\"Отмена\",\"chosen\":\"Выбрано %{name}\",\"chose_all\":\"Выбрать все\",\"clear_all\":\"Очистить все\",\"one_char\":\"символ.\",\"optional\":\"Необязательно\",\"required\":\"Обязательно\",\"save\":\"Сохранить\",\"save_and_add_another\":\"Сохранить и добавить другое\",\"save_and_edit\":\"Сохранить и продолжить редактирование\",\"select_choice\":\"Выберите и кликните\",\"many_chars\":\"символов или меньше.\"},\"flash\":{\"error\":\"%{name} не удалось %{action}\",\"noaction\":\"Никаких действий не произведено\",\"successful\":\"%{name} было успешно %{action}\"}},\"build\":{\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\"},\"builds\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Дифф\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине, спонсируемой\"},\"name\":\"Билд\",\"started_at\":\"Начало\"},\"datetime\":{\"distance_in_words\":{\"hours_exact\":{\"one\":\"%{count} час\",\"few\":\"%{count} часа\",\"many\":\"%{count} часов\",\"other\":\"%{count} часа\"},\"minutes_exact\":{\"one\":\"%{count} минута\",\"few\":\"%{count} минуты\",\"many\":\"%{count} минут\",\"other\":\"%{count} минуты\"},\"seconds_exact\":{\"one\":\"%{count} секунда\",\"few\":\"%{count} секунды\",\"many\":\"%{count} секунд\",\"other\":\"%{count} секунды\"}}},\"devise\":{\"confirmations\":{\"confirmed\":\"Ваш аккаунт успешно подтвержден. Приветствуем!\",\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для прохождения процедуры подтверждения аккаунта.\"},\"failure\":{\"inactive\":\"Ваш аккаунт еще не активирован.\",\"invalid\":\"Ошибка в адресе почты или пароле.\",\"invalid_token\":\"Неправильный токен аутентификации.\",\"locked\":\"Ваш аккаунт заблокирован.\",\"timeout\":\"Сессия окончена. Для продолжения работы войдите снова.\",\"unauthenticated\":\"Вам нужно войти или зарегистрироваться.\",\"unconfirmed\":\"Вы должны сначала подтвердить свой аккаунт.\"},\"mailer\":{\"confirmation_instructions\":{\"subject\":\"Инструкции для подтверждению аккаунта\"},\"reset_password_instructions\":{\"subject\":\"Инструкции для сброса пароля\"},\"unlock_instructions\":{\"subject\":\"Инструкции для разблокирования аккаунта\"}},\"passwords\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциями для сброса пароля.\",\"updated\":\"Ваш пароль успешно изменен. Приветствуем!\"},\"registrations\":{\"destroyed\":\"Ваш аккаунт был успешно удален. Живите долго и процветайте!\",\"signed_up\":\"Вы успешно прошли регистрацию. Инструкции для подтверждения аккаунта отправлены на ваш электронный адрес.\",\"updated\":\"Аккаунт успешно обновлен.\"},\"sessions\":{\"signed_in\":\"Приветствуем!\",\"signed_out\":\"Удачи!\"},\"unlocks\":{\"send_instructions\":\"В течении нескольких минут вы получите электронное письмо с инструкциям для разблокировния аккаунта.\",\"unlocked\":\"Ваш аккаунт успешно разблокирован. Приветствуем!\"}},\"errors\":{\"messages\":{\"already_confirmed\":\"уже подтвержден\",\"not_found\":\"не найден\",\"not_locked\":\"не заблокирован\"}},\"home\":{\"name\":\"Главная\"},\"jobs\":{\"allowed_failures\":\"Допустимые неудачи\",\"author\":\"Автор\",\"branch\":\"Ветка\",\"build_matrix\":\"Матрица\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"message\":\"Комментарий\",\"messages\":{\"sponsored_by\":\"Эта серия тестов была запущена на машине спонсируемой\"},\"started_at\":\"Начало\"},\"layouts\":{\"about\":{\"alpha\":\"Это альфа-версия\",\"join\":\"Присоединяйтесь к нам и помогайте!\",\"mailing_list\":\"Лист рассылки\",\"messages\":{\"alpha\":\"Пожалуйста, не считайте данный сервис стабильным. Мы еще очень далеки от стабильности! Подробности \"},\"repository\":\"Репозиторий\",\"twitter\":\"Twitter\"},\"application\":{\"fork_me\":\"Fork me on Github\",\"my_repositories\":\"Мои репозитории\",\"recent\":\"Недавние\",\"search\":\"Поиск\",\"sponsers\":\"Спонсоры\",\"sponsors_link\":\"Список всех наших замечательных спонсоров →\"},\"mobile\":{\"author\":\"Автор\",\"build\":\"Сборка\",\"build_matrix\":\"Матрица сборок\",\"commit\":\"Коммит\",\"committer\":\"Коммитер\",\"compare\":\"Сравнение\",\"config\":\"Конфигурация\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"job\":\"Задача\",\"log\":\"Журнал\"},\"top\":{\"admin\":\"Управление\",\"blog\":\"Блог\",\"docs\":\"Документация\",\"github_login\":\"Войти через Github\",\"home\":\"Главная\",\"profile\":\"Профиль\",\"sign_out\":\"Выход\",\"stats\":\"Статистика\"}},\"no_job\":\"Очередь пуста\",\"profiles\":{\"show\":{\"email\":\"Электронная почта\",\"github\":\"Github\",\"message\":{\"config\":\"как настроить специальные опции билда\",\"your_repos\":\"Используйте переключатели, чтобы включить Travis service hook для вашего проекта, а потом отправьте код на GitHub. \\nДля тестирования на нескольких версиях Ruby смотрите\"},\"messages\":{\"notice\":\"Перед началом, пожалуйста, прочтите Руководство для быстрого старта . Это займет всего несколько минут. \"},\"token\":\"Токен\",\"update\":\"Обновить\",\"update_locale\":\"Обновить\",\"your_locale\":\"Ваш язык\",\"your_repos\":\"Ваши репозитории\"}},\"queue\":\"Очередь\",\"repositories\":{\"branch\":\"Ветка\",\"commit\":\"Коммит\",\"duration\":\"Длительность\",\"finished_at\":\"Завершен\",\"image_url\":\"URL изображения\",\"markdown\":\"Markdown\",\"message\":\"Комментарий\",\"rdoc\":\"RDOC\",\"started_at\":\"Начало\",\"tabs\":{\"branches\":\"Статус веток\",\"build\":\"Билд\",\"build_history\":\"История\",\"current\":\"Текущий\",\"job\":\"Задача\"},\"textile\":\"Textile\"},\"repository\":{\"duration\":\"Длительность\"},\"statistics\":{\"index\":{\"build_count\":\"Количество билдов\",\"count\":\"Количество\",\"last_month\":\"прошлый месяц\",\"repo_growth\":\"Рост числа репозиториев\",\"total_builds\":\"Всего билдов\",\"total_projects\":\"Всего проектов/репозиториев\"}},\"workers\":\"Машины\",\"locales\":{\"en\":\"English\",\"es\":\"Español\",\"ja\":\"日本語\",\"ru\":\"Русский\",\"fr\":\"Français\",\"nb\":\"Norsk Bokmål\",\"pl\":\"Polski\",\"nl\":\"Nederlands\",\"pt-BR\":\"português brasileiro\"}}};\n\n\n})();\n//@ sourceURL=config/locales");minispade.register('ext/ember/bound_helper', "(function() {// https://gist.github.com/2018185\n// For reference: https://github.com/wagenet/ember.js/blob/ac66dcb8a1cbe91d736074441f853e0da474ee6e/packages/ember-handlebars/lib/views/bound_property_view.js\nvar BoundHelperView = Ember.View.extend(Ember._Metamorph, {\n\n context: null,\n options: null,\n property: null,\n // paths of the property that are also observed\n propertyPaths: [],\n\n value: Ember.K,\n\n valueForRender: function() {\n var value = this.value(Ember.get(this.context, this.property), this.options);\n if (this.options.escaped) { value = Handlebars.Utils.escapeExpression(value); }\n return value;\n },\n\n render: function(buffer) {\n buffer.push(this.valueForRender());\n },\n\n valueDidChange: function() {\n if (this.morph.isRemoved()) { return; }\n this.morph.html(this.valueForRender());\n },\n\n didInsertElement: function() {\n this.valueDidChange();\n },\n\n init: function() {\n this._super();\n Ember.addObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n Ember.addObserver(this.context, this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n },\n\n destroy: function() {\n Ember.removeObserver(this.context, this.property, this, 'valueDidChange');\n this.get('propertyPaths').forEach(function(propName) {\n this.context.removeObserver(this.property + '.' + propName, this, 'valueDidChange');\n }, this);\n this._super();\n }\n\n});\n\nEmber.registerBoundHelper = function(name, func) {\n var propertyPaths = Array.prototype.slice.call(arguments, 2);\n Ember.Handlebars.registerHelper(name, function(property, options) {\n var data = options.data,\n view = data.view,\n ctx = this;\n\n var bindView = view.createChildView(BoundHelperView, {\n property: property,\n propertyPaths: propertyPaths,\n context: ctx,\n options: options.hash,\n value: func\n });\n\n view.appendChild(bindView);\n });\n};\n\n\n})();\n//@ sourceURL=ext/ember/bound_helper");minispade.register('ext/ember/namespace', "(function() {Em.Namespace.reopen = Em.Namespace.reopenClass\n\n\n\n})();\n//@ sourceURL=ext/ember/namespace");
\ No newline at end of file
diff --git a/public/version b/public/version
index acd842c0..48d273f2 100644
--- a/public/version
+++ b/public/version
@@ -1 +1 @@
-92c2db04
\ No newline at end of file
+7db0e854
\ No newline at end of file