Merge pull request #329 from travis-ci/error500

Error Pages and maintenance
This commit is contained in:
Piotr Sarnacki 2015-02-17 15:17:50 +01:00
commit ee4564c72b
18 changed files with 397 additions and 134 deletions

View File

@ -25,3 +25,19 @@ script:
notifications:
campfire:
secure: "JJezWGD9KJY/LC2aznI3Zyohy31VTIhcTKX7RWR4C/C8YKbW9kZv3xV6Vn11\nSHxJTeZo6st2Bpv6tjlWZ+HCR09kyCNavIChedla3+oHOiuL0D4gSo+gkTNW\nUKYZz9mcQUd9RoQpTeyxvdvX+l7z62/7JwFA7txHOqxbTS8jrjc="
before_deploy:
- DISABLE_FINGERPRINTS=true ember build --env production
# delete some of the stuff that's useless for maintenance page
- rm -fr dist/assets/*.js dist/images/emoji dist/index.html dist/images/sponsors
- cp dist/maintenance.html dist/index.html
deploy:
provider: s3
access_key_id: $MAINTENANCE_S3_ACCESS_KEY_ID
secret_access_key: $MAINTENANCE_S3_SECRET_ACCESS_KEY
bucket: travis-error-pages
skip_cleanup: true
acl: public_read
local_dir: dist
region: us-east-1

View File

@ -2,16 +2,22 @@
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var fingerprint = {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map', 'svg']
},
var fingerprint,
assetsHost;
if (assetsHost = process.env.ASSETS_HOST) {
if (assetsHost.substr(-1) !== '/') {
assetsHost = assetsHost + '/'
if (process.env.DISABLE_FINGERPRINTS) {
fingerprint = false;
} else {
fingerprint = {
extensions: ['js', 'css', 'png', 'jpg', 'gif', 'map', 'svg']
};
if (assetsHost = process.env.ASSETS_HOST) {
if (assetsHost.substr(-1) !== '/') {
assetsHost = assetsHost + '/'
}
fingerprint.prepend = assetsHost
}
fingerprint.prepend = assetsHost
}
var app = new EmberApp({

View File

@ -52,7 +52,6 @@ Router.map ->
@resource 'account', path: '/:login'
@route 'info', path: '/info'
@route 'maintenance', path: "/maintenance"
@route 'error404', path: "/*path"
@route 'error404', path: '/*path'
`export default Router`

View File

@ -36,14 +36,15 @@ $footer-h3-color: #8f9ba2
$footer-h3-corder-color: #ccd0d5
// error pages
// 404
$error-hill-grey: #bbcac6
$error-heading-color: #357389
$error-copy-color: $dashboard-text-color
$error-bg-gradient: rgba(204,235,247,1)
// maintenance
$maintenance-grass: #8cad7d
// 404
$error-hill-grey: #bbcac6
//500
$error-sand: #dcc682
// tabs
$tab-nav-inactive-bg: #f8f8f8

View File

@ -1,7 +1,14 @@
/*
* Error Pages
* Error Pages + Maintenance
*/
@mixin error-bg-gradient($color)
background: linear-gradient(0deg, $color, $color 38.9%, $error-bg-gradient 39%, $white 60%, $white)
@mixin error-position-img($size:inherit, $pos:inherit)
background:
size: $size
position: $pos
.error,
.maintenance
@ -14,8 +21,7 @@
height: 100%
width: 100%
overflow: hidden
background:
repeat: no-repeat
background-repeat: no-repeat
.main--error
min-height: 100%
@ -52,98 +58,89 @@
display: inline-block
width: 1.1em
height: 1.1em
background:
image: url(../images/error/twitter.svg)
size: 100% auto
repeat: no-repeat
position: 0 .2em
/*
* Maintenance
*/
.maintenance-bg
background: linear-gradient(0deg, $maintenance-grass, $maintenance-grass 34.9%, $error-bg-gradient 35%, $white 60%, $white)
background-image: url(../images/error/twitter.svg)
background-repeat: no-repeat
@include error-position-img(100% auto, 0 .2em)
.error500
.error-bg
@include error-bg-gradient($error-sand)
.hill-left
background:
image: url(../images/error/maintenance-hills-left.svg)
size: 80vw auto
position: 0 62%
background-image: url(../images/error/500-hills-left.svg)
@include error-position-img(auto 10vh, 0 58%)
@media #{$medium-up}
background-size: 58vw auto
background-position: 0 62%
@media #{$large-up}
background-size: 50vw auto
background-position: 0 61%
@include error-position-img(38vw auto, 0 58%)
.hill-right
background-image: url(../images/error/500-hills-right.svg)
@include error-position-img(38vw auto, 99% 59%)
display: none
background:
image: url(../images/error/maintenance-hills-right.svg)
size: 38vw auto
position: 99% 63%
@media #{$medium-up}
display: block
.shadow-left
background:
image: url(../images/error/maintenance-grass-shade-left.svg)
size: 24vw auto
position: 6% 82%
background-image: url(../images/error/500-hills-shade-left.svg)
@include error-position-img(24vw auto, 6% 72%)
.shadow-right
background:
image: url(../images/error/maintenance-grass-shade-right.svg)
size: 17vw auto
position: 95% 89%
background-image: url(../images/error/500-hills-shade-right.svg)
@include error-position-img(17vw auto, 95% 79%)
.road
background-image: url(../images/error/500-road.svg)
@include error-position-img(auto 27vh, 42% 78%)
@media #{$medium-up}
@include error-position-img(auto 40vh, 42% 91.3%)
.maintenance-tractor
background:
image: url(../images/error/maintenance-tractor.svg)
size: 87vw auto
position: 63% 87%
@media #{$medium-up}
background-size: auto 40vh
@media #{$large-up}
background-size: auto 40vh
.error404
.error-bg
@include error-bg-gradient($error-hill-grey)
.hill-left
display: none
background-image: url(../images/error/404-hills-left.svg)
@include error-position-img(30vw auto, 0 58%)
@media #{$medium-up}
display: block
.hill-right
background-image: url(../images/error/404-hills-right.svg)
@include error-position-img(auto 20vw, 99% 58%)
@media #{$medium-up}
@include error-position-img(50vw auto, 99% 58%)
@media #{$large-up}
@include error-position-img(50vw auto, 99% 54%)
.error-excavator
background-image: url(../images/error/excavator.svg)
@include error-position-img(auto 25vh, 71% 83%)
.error-travis
background-image: url(../images/error/pensive-travis.svg)
@include error-position-img(auto 60vh, 34% 92%)
@media #{$medium-up}
background-size: auto 50vh
@media #{$large-up}
background-size: auto 60vh
/*
* 404
*/
.error-bg
background: linear-gradient(0deg, $error-hill-grey, $error-hill-grey 34.9%, $error-bg-gradient 35%, $white 60%, $white)
.error-hill-left
display: none
background:
image: url(../images/error/404-hills-left.svg)
size: 30vw auto
position: 0 (100% - 37%)
@media #{$medium-up}
display: block
.error-hill-right
background:
image: url(../images/error/404-hills-right.svg)
size: auto 20vw
position: 99% 63%
@media #{$medium-up}
background-size: 50vw auto
background-position: 99% 63%
@media #{$large-up}
background-position: 99% 61%
.error-excavator
background:
image: url(../images/error/excavator.svg)
size: auto 25vh
position: 71% 83%
.error-travis
background:
image: url(../images/error/pensive-travis.svg)
size: auto 60vh
position: 34% 92%
@media #{$medium-up}
background-size: auto 50vh
@media #{$large-up}
background-size: auto 60vh
.maintenance
.maintenance-bg
@include error-bg-gradient($maintenance-grass)
.hill-left
background-image: url(../images/error/maintenance-hills-left.svg)
@include error-position-img(80vw auto, 0 58%)
@media #{$medium-up}
@include error-position-img(58vw auto, 0 58%)
@media #{$large-up}
@include error-position-img(50vw auto, 0 56%)
.hill-right
background-image: url(../images/error/maintenance-hills-right.svg)
@include error-position-img(38vw auto, 99% 59%)
display: none
@media #{$medium-up}
display: block
.shadow-left
background-image: url(../images/error/maintenance-grass-shade-left.svg)
@include error-position-img(24vw auto, 6% 72%)
.shadow-right
background-image: url(../images/error/maintenance-grass-shade-right.svg)
@include error-position-img(17vw auto, 95% 79%)
.maintenance-tractor
background-image: url(../images/error/maintenance-tractor.svg)
@include error-position-img(87vw auto, 63% 87%)
@media #{$medium-up}
@include error-position-img(auto 44vh, 63% 83%)

View File

@ -5,21 +5,22 @@
#right
display: none
#global_slider
position: absolute
background-color: $color-bg-slider
cursor: pointer
background: transparent inline-image('ui/slider-open.svg') no-repeat 6px 5px
border-top-left-radius: 4px
top: 85px
right: 0
width: 20px
height: 20px
border-bottom-left-radius: 4px
display: block
.application:not(> .error)
#global_slider
position: absolute
background-color: $color-bg-slider
cursor: pointer
background: transparent inline-image('ui/slider-open.svg') no-repeat 6px 5px
border-top-left-radius: 4px
top: 85px
right: 0
width: 20px
height: 20px
border-bottom-left-radius: 4px
display: block
&:hover
background-color: $color-border-slider-hover
&:hover
background-color: $color-border-slider-hover
#top .profile
margin-right: 15px

View File

@ -1,6 +1,6 @@
<div class="error-bg full-size">
<div class="error-hill-left full-size"></div>
<div class="error-hill-right full-size"></div>
<div class="hill-left full-size"></div>
<div class="hill-right full-size"></div>
</div>
<div class="error-excavator full-size"></div>
<div class="error-travis full-size"></div>

View File

@ -4,9 +4,9 @@
<h1>{{#link-to "main"}}Home{{/link-to}}</h1>
</div>
<div class="nav-burger">
<button type="button" id="burger">&equiv;</button>
<button type="button" id="burger" {{action 'toggleBurgerMenu'}}>&equiv;</button>
</div>
<ul>
<ul id="navigation" {{bind-attr class="is-open"}}>
<li><a href="#">Blog</a></li>
<li><a href="#">Status</a></li>
<!-- <div class="small-4 medium-3 columns" id="status">

View File

@ -1,11 +0,0 @@
<div class="maintenance-bg full-size">
<div class="hill-left full-size"></div>
<div class="hill-right full-size"></div>
<div class="shadow-left full-size"></div>
<div class="shadow-right full-size"></div>
</div>
<div class="maintenance-tractor full-size"></div>
<div class="maintenance-text">
<h1>Under Maintenance</h1>
<p>Stay up to date with Travis CI by <a href="https://twitter.com/travisci" title="Travis CI on Twitter">following us <span class="icon-twitter"></span></a></p>
</div>

View File

@ -2,6 +2,6 @@
View = BasicView.extend
layoutName: 'layouts/error'
classNames: ['error']
classNames: ['error error404']
`export default View`

View File

@ -1,7 +0,0 @@
`import BasicView from 'travis/views/basic'`
View = BasicView.extend
layoutName: 'layouts/error'
classNames: ['error maintenance']
`export default View`

43
public/500.html Normal file
View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Travis CI - 500</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,800" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/assets/travis.css">
</head>
<body>
<div class="application">
<div class="ember-view error error500">
<div id="top">
<div class="row">
<div class="small-2 medium-2 columns" id="logo">
<h1><a href="/" class="ember-view">Home</a></h1>
</div>
<ul id="navigation">
<li><a href="http://blog.travis-ci.com/">Blog</a></li>
<li><a href="http://www.traviscistatus.com/">Status</a></li>
</ul>
</div>
</div>
<main class="main main--error" role="main">
<div class="error-bg full-size">
<div class="hill-left full-size"></div>
<div class="hill-right full-size"></div>
<div class="shadow-left full-size"></div>
<div class="shadow-right full-size"></div>
<div class="road full-size"></div>
</div>
<div class="error-text">
<h1>Something went wrong</h1>
<p>It looks like something went wrong with your request.<br>Please try again later.</p>
</div>
</main>
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="331.68px" height="128.235px" viewBox="0 0 331.68 128.235" enable-background="new 0 0 331.68 128.235"
xml:space="preserve">
<g>
<g>
<image overflow="visible" opacity="0.1" width="1382" height="561" xlink:href="6AB008E8BA7227E6.png" transform="matrix(0.24 0 0 0.24 0 0)">
</image>
<g>
<polygon fill="#DDC782" points="325.052,117.99 275.16,64.12 241.545,64.12 185.894,6.48 96.599,6.48 73.956,41.12 46.645,41.12
6.48,118.112 6.48,128.12 325.052,128.12 "/>
</g>
</g>
</g>
<polygon fill="#E2D5A8" points="95.996,6.48 88.886,17.594 178.145,17.594 234.905,76.345 267.272,76.345 307.058,118.301
325.052,117.99 275.16,64.12 241.545,64.12 185.894,6.48 "/>
<polygon fill="#D6BA6B" points="90.997,34.783 80.208,53.964 52.821,53.964 17.847,117.112 94.667,117.112 114.246,68.347
93.186,68.347 108.974,34.78 "/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="364.08px" height="99.524px" viewBox="0 0 364.08 99.524" enable-background="new 0 0 364.08 99.524" xml:space="preserve">
<g>
<g>
<g>
<image overflow="visible" opacity="0.1" width="973" height="390" xlink:href="423B8197D66693F1.png" transform="matrix(0.24 0 0 0.24 127.1021 0)">
</image>
<g>
<polygon fill="#DDC782" points="357.594,90.549 274.083,3 210.635,3 182.937,36.624 164.445,36.624 130.102,90.549 "/>
</g>
</g>
<polygon fill="#D6BA6B" points="231.917,22.801 206.431,22.801 187.94,47.95 171.654,47.206 145.282,88.371 168.425,88.371
182.449,63.548 199.237,63.572 "/>
<g>
<polygon fill="#E2D5A8" points="274.083,3 210.654,3 204.371,10.625 267.201,10.625 344.072,90.549 357.594,90.549 "/>
</g>
</g>
<g>
<image overflow="visible" opacity="0.1" width="1517" height="309" xlink:href="423B8197D66693F3.png" transform="matrix(0.24 0 0 0.24 0 32.2876)">
</image>
<g>
<polygon fill="#DDC782" points="189.581,89.523 163.601,68.745 149.612,68.745 125.631,38.768 80.667,38.768 6.48,89.779
6.48,99.787 357.594,99.787 357.594,89.523 "/>
</g>
</g>
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="270.4526" y1="86.5244" x2="270.4526" y2="89.5244">
<stop offset="0" style="stop-color:#B5A339;stop-opacity:0"/>
<stop offset="0.4085" style="stop-color:#C2AC4D;stop-opacity:0.1"/>
<stop offset="1" style="stop-color:#D6BA6B"/>
</linearGradient>
<polygon fill="url(#SVGID_1_)" points="352.266,86.524 183.286,86.524 183.286,89.524 357.62,89.524 "/>
<polygon fill="#E2D5A8" points="122.253,44.537 145.63,74.507 161.814,74.507 180.395,89.492 189.541,89.492 163.601,68.745
149.612,68.745 125.631,38.768 80.667,38.768 72.039,44.537 "/>
<polygon fill="#D6BA6B" points="42.167,89.492 18.97,89.492 69.507,52.929 92.704,52.929 "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="202.271px" height="25.842px" viewBox="0 0 202.271 25.842" enable-background="new 0 0 202.271 25.842"
xml:space="preserve">
<polygon fill="#D6BA6B" points="176.225,0 51.492,0 21.469,11.69 6.005,11.69 -0.001,25.842 202.271,25.842 "/>
</svg>

After

Width:  |  Height:  |  Size: 617 B

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="202.271px" height="25.842px" viewBox="0 0 202.271 25.842" enable-background="new 0 0 202.271 25.842"
xml:space="preserve">
<polygon fill="#D6BA6B" points="186.234,11.69 176.226,0 51.494,0 0,25.842 202.272,25.842 202.272,11.69 "/>
</svg>

After

Width:  |  Height:  |  Size: 615 B

View File

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="432.973px" height="305.408px" viewBox="0 0 432.973 305.408" enable-background="new 0 0 432.973 305.408"
xml:space="preserve">
<g>
<polygon fill="#56524F" points="362.724,165.068 404.552,48.501 250.935,48.501 107.346,105.933 49.844,231.263 114.297,268.895
389.082,268.895 407.378,232.175 "/>
</g>
<g>
<g>
<polygon fill="#FFFFFF" points="308.927,60.146 304.964,59.876 314.111,52.344 318.259,52.311 "/>
</g>
<g>
<path fill="#FFFFFF" d="M269.763,257.904l-23.545-42.796l7.771-0.163l24.545,43.797L269.763,257.904z M239.668,200.162
L223,166.075l7.982,0.34l16.457,33.584L239.668,200.162z M228.845,154.631l-6.869-0.887l10.46-27.177l5.869,0.887L228.845,154.631
z M243.781,117.623l-5.965-0.27l14.85-11.64l5.963,0.271L243.781,117.623z M267.365,97.261l-5.965-0.27l17.854-13.642l4.963,0.27
L267.365,97.261z M289.949,76.897l-3.963-0.27l13.729-10.752l3.963,0.27L289.949,76.897z"/>
</g>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M111.666,304.173c-4.279,1.647-11.282,1.647-15.562,0L3.111,268.366c-4.279-1.647-4.125-3.842,0.343-4.875
l92.308-21.353c4.468-1.033,11.778-1.033,16.246,0l92.306,21.353c4.468,1.033,4.622,3.228,0.342,4.875L111.666,304.173z"/>
</g>
<polygon fill="#D25031" points="179.687,74.322 106.597,85.136 106.597,17.599 179.687,29.491 160.061,51.613 "/>
<path fill="#FFFFFF" d="M110.097,12.992c-0.011-3.069-2.511-5.549-5.581-5.538c-3.069,0.013-5.548,2.511-5.537,5.578
c0.007,1.555,1.485,2.956,2.518,3.962v135.272l6.112-0.03V16.993C108.633,15.981,110.101,14.548,110.097,12.992z"/>
<g>
<path fill="#CD6632" d="M175.843,261.758c-2.501-5.839-63.367-143.689-63.367-143.689s-1.186-3.058-3.056-3.058
c-2.189,0-7.214,0-9.402,0c-1.964,0-3.057,3.058-3.057,3.058S36.096,255.919,33.594,261.758c-2.502,5.835,1.111,6.112,1.111,6.112
c42.475,19.179,104.313,15.982,140.027,0C174.732,267.87,178.343,267.593,175.843,261.758z"/>
<path fill="#FFFFFF" d="M165.442,238.104c-3.729-8.463-8.184-18.562-12.902-29.261c-16.927,3.859-35.25,6.054-49.863,6.121
c-19.318,0.091-35.643-2.262-46.023-5.569c-4.623,10.482-8.985,20.371-12.649,28.681c8.834,2.624,29.308,10.009,58.882,9.849
C120.642,247.83,141.678,243.415,165.442,238.104z"/>
<path fill="#FFFFFF" d="M82.841,150.052c-3.585,8.122-7.609,17.241-11.774,26.674c8.936,1.415,19.597,2.471,31.82,2.413
c10.549-0.048,22.264-1.415,35.013-3.473c-4.11-9.316-8.075-18.298-11.602-26.285c-8.365,0.867-16.44,1.339-23.621,1.369
C95.615,150.779,88.959,150.522,82.841,150.052z"/>
</g>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M384.685,177.18c-2.205,0.688-5.812,0.688-8.018,0l-46.656-14.549c-2.205-0.688-2.168-1.676,0.082-2.196
l46.492-10.754c2.25-0.521,5.932-0.521,8.184,0l46.492,10.754c2.25,0.521,2.287,1.509,0.082,2.196L384.685,177.18z"/>
</g>
<polygon fill="#D25031" points="418.652,65.256 382.044,70.603 382.044,36.587 418.652,41.933 409.099,53.174 "/>
<path fill="#FFFFFF" d="M383.806,34.267c-0.006-1.546-1.266-2.795-2.809-2.789c-1.549,0.006-2.797,1.264-2.789,2.81
c0.002,0.783,0.746,1.488,1.266,1.994v68.134l3.078-0.016l0.002-68.118C383.07,35.772,383.808,35.05,383.806,34.267z"/>
<g>
<path fill="#CD6632" d="M416.921,159.56c-1.262-2.938-31.918-72.368-31.918-72.368s-0.596-1.541-1.539-1.541
c-1.102,0-3.633,0-4.736,0c-0.986,0-1.537,1.541-1.537,1.541s-30.656,69.431-31.916,72.368c-1.26,2.94,0.559,3.08,0.559,3.08
c21.393,9.659,52.539,8.05,70.527,0C416.361,162.64,418.181,162.5,416.921,159.56z"/>
<path fill="#FFFFFF" d="M411.681,147.648c-1.877-4.262-4.121-9.351-6.498-14.737c-8.525,1.943-17.754,3.049-25.113,3.083
c-9.73,0.045-17.951-1.14-23.182-2.807c-2.328,5.281-4.525,10.261-6.369,14.448c4.449,1.318,14.762,5.039,29.656,4.958
C389.119,152.546,399.712,150.322,411.681,147.648z"/>
<path fill="#FFFFFF" d="M370.078,103.299c-1.805,4.092-3.832,8.684-5.93,13.435c4.5,0.713,9.871,1.244,16.027,1.216
c5.314-0.023,11.213-0.714,17.633-1.749c-2.068-4.692-4.064-9.216-5.842-13.238c-4.213,0.435-8.281,0.673-11.896,0.689
C376.513,103.665,373.162,103.536,370.078,103.299z"/>
</g>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M248.083,59.489c-0.941,0.197-2.481,0.197-3.423,0l-19.341-4.045c-0.941-0.197-0.945-0.536-0.008-0.752
l19.356-4.478c0.937-0.216,2.47-0.216,3.407,0l19.357,4.478c0.937,0.216,0.934,0.555-0.008,0.752L248.083,59.489z"/>
</g>
<polygon fill="#D25031" points="262.183,14.063 246.941,16.29 246.941,2.127 262.183,4.353 258.206,9.033 "/>
<path fill="#FFFFFF" d="M247.675,1.161c-0.003-0.644-0.527-1.163-1.17-1.161c-0.645,0.002-1.164,0.526-1.162,1.17
c0.002,0.326,0.312,0.619,0.528,0.831v28.366l1.282-0.006V2.001C247.369,1.788,247.676,1.487,247.675,1.161z"/>
<g>
<path fill="#CD6632" d="M261.462,53.327c-0.525-1.224-13.289-30.131-13.289-30.131s-0.248-0.641-0.641-0.641
c-0.459,0-1.513,0-1.973,0c-0.41,0-0.64,0.641-0.64,0.641s-12.764,28.907-13.288,30.131c-0.524,1.225,0.232,1.282,0.232,1.282
c8.907,4.021,21.875,3.351,29.364,0C261.229,54.609,261.987,54.552,261.462,53.327z"/>
<path fill="#FFFFFF" d="M259.281,48.368c-0.781-1.775-1.716-3.894-2.705-6.136c-3.55,0.808-7.393,1.269-10.456,1.283
c-4.052,0.019-7.476-0.476-9.651-1.169c-0.971,2.198-1.885,4.272-2.652,6.016c1.852,0.55,6.146,2.099,12.347,2.064
C249.886,50.407,254.297,49.481,259.281,48.368z"/>
<path fill="#FFFFFF" d="M241.959,29.903c-0.752,1.703-1.597,3.615-2.47,5.594c1.874,0.296,4.11,0.517,6.673,0.505
c2.213-0.01,4.669-0.297,7.343-0.728c-0.862-1.954-1.693-3.837-2.433-5.512c-1.755,0.181-3.448,0.28-4.953,0.287
C244.638,30.055,243.243,30.002,241.959,29.903z"/>
</g>
</g>
<g opacity="0.6">
<path fill="#FFFFFF" d="M135.408,57.719c2.591,0.164,4.419,2.344,4.36,4.94c-0.06,2.599-1.98,4.538-4.571,4.374
c-2.59-0.164-4.418-2.342-4.359-4.94C130.896,59.496,132.818,57.555,135.408,57.719z M131.922,42.896l-0.123-7.646l8.543,0.978
l-0.979,7.121l-1.41,11.379l-5.209-0.316L131.922,42.896z"/>
</g>
<g>
<path opacity="0.6" fill="#FFFFFF" d="M395.474,56.781c1.379,0.088,2.352,1.247,2.32,2.628c-0.031,1.382-1.055,2.413-2.432,2.325
c-1.377-0.087-2.348-1.245-2.318-2.627C393.076,57.728,394.097,56.694,395.474,56.781z M393.621,48.899l-0.064-4.065l4.287,0.394
l-0.266,3.913l-0.748,6.051l-2.77-0.168L393.621,48.899z"/>
</g>
<g>
<path opacity="0.6" fill="#FFFFFF" d="M252.903,10.373c0.533,0.034,0.909,0.482,0.897,1.017c-0.012,0.535-0.408,0.934-0.941,0.9
c-0.532-0.034-0.908-0.482-0.896-1.017S252.371,10.339,252.903,10.373z M252.185,7.322l-0.025-1.573l1.646,0.307l-0.09,1.36
l-0.289,2.342l-1.072-0.065L252.185,7.322z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

42
public/maintenance.html Normal file
View File

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Travis CI - Maintenance</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,800" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/assets/travis.css">
</head>
<body>
<div class="application">
<div class="ember-view error maintenance">
<div id="top">
<div class="row">
<div class="small-2 medium-2 columns" id="logo">
<h1><a href="/" class="ember-view">Home</a></h1>
</div>
<ul id="navigation">
<li><a href="http://blog.travis-ci.com/">Blog</a></li>
<li><a href="http://www.traviscistatus.com/">Status</a></li>
</ul>
</div>
</div>
<main class="main main--error" role="main">
<div class="maintenance-bg full-size">
<div class="hill-left full-size"></div>
<div class="hill-right full-size"></div>
<div class="shadow-left full-size"></div>
<div class="shadow-right full-size"></div>
</div>
<div class="maintenance-tractor full-size"></div>
<div class="maintenance-text">
<h1>Under Maintenance</h1>
<p>Stay up to date with Travis CI by <a href="https://twitter.com/travisci" title="Travis CI on Twitter">following us <span class="icon-twitter"></span></a></p>
</div>
</main>
</div>
</div>
</body>
</html>