config source_endpoint
Conflicts: config.ru public/index.html
This commit is contained in:
parent
65ee0d5486
commit
b2d3a6199d
|
@ -3,22 +3,22 @@
|
||||||
"#{Travis.config.api_endpoint}/jobs/#{id}/log.txt?deansi=true"
|
"#{Travis.config.api_endpoint}/jobs/#{id}/log.txt?deansi=true"
|
||||||
|
|
||||||
githubPullRequest: (slug, pullRequestNumber) ->
|
githubPullRequest: (slug, pullRequestNumber) ->
|
||||||
"https://github.com/#{slug}/pull/#{pullRequestNumber}"
|
"#{Travis.config.source_endpoint}/#{slug}/pull/#{pullRequestNumber}"
|
||||||
|
|
||||||
githubCommit: (slug, sha) ->
|
githubCommit: (slug, sha) ->
|
||||||
"https://github.com/#{slug}/commit/#{sha}"
|
"#{Travis.config.source_endpoint}/#{slug}/commit/#{sha}"
|
||||||
|
|
||||||
githubRepo: (slug) ->
|
githubRepo: (slug) ->
|
||||||
"https://github.com/#{slug}"
|
"#{Travis.config.source_endpoint}/#{slug}"
|
||||||
|
|
||||||
githubWatchers: (slug) ->
|
githubWatchers: (slug) ->
|
||||||
"https://github.com/#{slug}/watchers"
|
"#{Travis.config.source_endpoint}/#{slug}/watchers"
|
||||||
|
|
||||||
githubNetwork: (slug) ->
|
githubNetwork: (slug) ->
|
||||||
"https://github.com/#{slug}/network"
|
"#{Travis.config.source_endpoint}/#{slug}/network"
|
||||||
|
|
||||||
githubAdmin: (slug) ->
|
githubAdmin: (slug) ->
|
||||||
"https://github.com/#{slug}/settings/hooks#travis_minibucket"
|
"#{Travis.config.source_endpoint}/#{slug}/settings/hooks#travis_minibucket"
|
||||||
|
|
||||||
statusImage: (slug, branch) ->
|
statusImage: (slug, branch) ->
|
||||||
"#{location.protocol}//#{location.host}/#{slug}.svg" + if branch then "?branch=#{encodeURIComponent(branch)}" else ''
|
"#{location.protocol}//#{location.host}/#{slug}.svg" + if branch then "?branch=#{encodeURIComponent(branch)}" else ''
|
||||||
|
|
|
@ -78,6 +78,7 @@ $.extend Travis,
|
||||||
config:
|
config:
|
||||||
syncingPageRedirectionTime: 5000
|
syncingPageRedirectionTime: 5000
|
||||||
api_endpoint: $('meta[rel="travis.api_endpoint"]').attr('href')
|
api_endpoint: $('meta[rel="travis.api_endpoint"]').attr('href')
|
||||||
|
source_endpoint: $('meta[rel="travis.source_endpoint"]').attr('href')
|
||||||
pusher_key: $('meta[name="travis.pusher_key"]').attr('value')
|
pusher_key: $('meta[name="travis.pusher_key"]').attr('value')
|
||||||
pusher_host: $('meta[name="travis.pusher_host"]').attr('value')
|
pusher_host: $('meta[name="travis.pusher_host"]').attr('value')
|
||||||
ga_code: $('meta[name="travis.ga_code"]').attr('value')
|
ga_code: $('meta[name="travis.ga_code"]').attr('value')
|
||||||
|
|
|
@ -28,6 +28,7 @@ end
|
||||||
run Travis::Web::App.build(
|
run Travis::Web::App.build(
|
||||||
environment: ENV['RACK_ENV'] || 'development',
|
environment: ENV['RACK_ENV'] || 'development',
|
||||||
api_endpoint: ENV['API_ENDPOINT'],
|
api_endpoint: ENV['API_ENDPOINT'],
|
||||||
|
source_endpoint: ENV['SOURCE_ENDPOINT'] || 'https://github.com',
|
||||||
pusher_key: ENV['PUSHER_KEY'],
|
pusher_key: ENV['PUSHER_KEY'],
|
||||||
pusher_host: ENV['PUSHER_HOST'] || 'ws.pusherapp.com',
|
pusher_host: ENV['PUSHER_HOST'] || 'ws.pusherapp.com',
|
||||||
ga_code: ENV['GA_CODE'],
|
ga_code: ENV['GA_CODE'],
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,800' rel='stylesheet' type='text/css'>
|
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,800' rel='stylesheet' type='text/css'>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta rel="travis.api_endpoint" href="https://api.travis-ci.org">
|
<meta rel="travis.api_endpoint" href="https://api.travis-ci.org">
|
||||||
|
<meta rel="travis.source_endpoint" href="https://github.com">
|
||||||
<meta name="travis.ssh_key_enabled" value="false">
|
<meta name="travis.ssh_key_enabled" value="false">
|
||||||
<meta name="travis.pusher_key" value="5df8ac576dcccf4fd076">
|
<meta name="travis.pusher_key" value="5df8ac576dcccf4fd076">
|
||||||
<meta name="travis.pusher_host" value="ws.pusherapp.com">
|
<meta name="travis.pusher_host" value="ws.pusherapp.com">
|
||||||
|
|
Loading…
Reference in New Issue
Block a user