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 ''
|
||||||
|
|
|
@ -77,10 +77,11 @@ $.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')
|
||||||
pusher_key: $('meta[name="travis.pusher_key"]').attr('value')
|
source_endpoint: $('meta[rel="travis.source_endpoint"]').attr('href')
|
||||||
pusher_host: $('meta[name="travis.pusher_host"]').attr('value')
|
pusher_key: $('meta[name="travis.pusher_key"]').attr('value')
|
||||||
ga_code: $('meta[name="travis.ga_code"]').attr('value')
|
pusher_host: $('meta[name="travis.pusher_host"]').attr('value')
|
||||||
|
ga_code: $('meta[name="travis.ga_code"]').attr('value')
|
||||||
code_climate: $('meta[name="travis.code_climate"]').attr('value')
|
code_climate: $('meta[name="travis.code_climate"]').attr('value')
|
||||||
ssh_key_enabled: $('meta[name="travis.ssh_key_enabled"]').attr('value') == 'true'
|
ssh_key_enabled: $('meta[name="travis.ssh_key_enabled"]').attr('value') == 'true'
|
||||||
code_climate_url: $('meta[name="travis.code_climate_url"]').attr('value')
|
code_climate_url: $('meta[name="travis.code_climate_url"]').attr('value')
|
||||||
|
|
17
config.ru
17
config.ru
|
@ -26,13 +26,14 @@ use Travis::Web::ApiRedirect do |app|
|
||||||
end
|
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'],
|
||||||
pusher_key: ENV['PUSHER_KEY'],
|
source_endpoint: ENV['SOURCE_ENDPOINT'] || 'https://github.com',
|
||||||
pusher_host: ENV['PUSHER_HOST'] || 'ws.pusherapp.com',
|
pusher_key: ENV['PUSHER_KEY'],
|
||||||
ga_code: ENV['GA_CODE'],
|
pusher_host: ENV['PUSHER_HOST'] || 'ws.pusherapp.com',
|
||||||
root: File.expand_path('../public', __FILE__),
|
ga_code: ENV['GA_CODE'],
|
||||||
server_start: Time.now,
|
root: File.expand_path('../public', __FILE__),
|
||||||
caches_enabled: ENV['CACHES_ENABLED'],
|
server_start: Time.now,
|
||||||
|
caches_enabled: ENV['CACHES_ENABLED'],
|
||||||
ssh_key_enabled: ENV['SSH_KEY_ENABLED']
|
ssh_key_enabled: ENV['SSH_KEY_ENABLED']
|
||||||
)
|
)
|
||||||
|
|
|
@ -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