config source_endpoint

Conflicts:
	config.ru
	public/index.html
This commit is contained in:
Sven Fuchs 2013-09-06 02:32:51 +02:00
parent 65ee0d5486
commit b2d3a6199d
4 changed files with 21 additions and 18 deletions

View File

@ -3,22 +3,22 @@
"#{Travis.config.api_endpoint}/jobs/#{id}/log.txt?deansi=true"
githubPullRequest: (slug, pullRequestNumber) ->
"https://github.com/#{slug}/pull/#{pullRequestNumber}"
"#{Travis.config.source_endpoint}/#{slug}/pull/#{pullRequestNumber}"
githubCommit: (slug, sha) ->
"https://github.com/#{slug}/commit/#{sha}"
"#{Travis.config.source_endpoint}/#{slug}/commit/#{sha}"
githubRepo: (slug) ->
"https://github.com/#{slug}"
"#{Travis.config.source_endpoint}/#{slug}"
githubWatchers: (slug) ->
"https://github.com/#{slug}/watchers"
"#{Travis.config.source_endpoint}/#{slug}/watchers"
githubNetwork: (slug) ->
"https://github.com/#{slug}/network"
"#{Travis.config.source_endpoint}/#{slug}/network"
githubAdmin: (slug) ->
"https://github.com/#{slug}/settings/hooks#travis_minibucket"
"#{Travis.config.source_endpoint}/#{slug}/settings/hooks#travis_minibucket"
statusImage: (slug, branch) ->
"#{location.protocol}//#{location.host}/#{slug}.svg" + if branch then "?branch=#{encodeURIComponent(branch)}" else ''

View File

@ -78,6 +78,7 @@ $.extend Travis,
config:
syncingPageRedirectionTime: 5000
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_host: $('meta[name="travis.pusher_host"]').attr('value')
ga_code: $('meta[name="travis.ga_code"]').attr('value')

View File

@ -28,6 +28,7 @@ end
run Travis::Web::App.build(
environment: ENV['RACK_ENV'] || 'development',
api_endpoint: ENV['API_ENDPOINT'],
source_endpoint: ENV['SOURCE_ENDPOINT'] || 'https://github.com',
pusher_key: ENV['PUSHER_KEY'],
pusher_host: ENV['PUSHER_HOST'] || 'ws.pusherapp.com',
ga_code: ENV['GA_CODE'],

View File

@ -4,6 +4,7 @@
<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 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.pusher_key" value="5df8ac576dcccf4fd076">
<meta name="travis.pusher_host" value="ws.pusherapp.com">