URL-encode branch name for status images.
Camelcased all entries in the status image selection menu for consistency. Fixes travis-ci/travis-ci#2265
This commit is contained in:
parent
1a0344eeed
commit
ba2f00a09a
|
@ -12,11 +12,11 @@
|
|||
when 'Image URL' then @statusImageUrl()
|
||||
when 'Markdown' then @markdownStatusImage()
|
||||
when 'Textile' then @textileStatusImage()
|
||||
when 'RDOC' then @rdocStatusImage()
|
||||
when 'Rdoc' then @rdocStatusImage()
|
||||
when 'AsciiDoc' then @asciidocStatusImage()
|
||||
when 'Rst' then @rstStatusImage()
|
||||
when 'POD' then @podStatusImage()
|
||||
when 'cc.xml' then @ccxmlStatusUrl()
|
||||
when 'Pod' then @podStatusImage()
|
||||
when 'CCTray' then @ccxmlStatusUrl()
|
||||
|
||||
urlRepo: (->
|
||||
"https://#{location.host}/#{@slug}"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"https://github.com/#{slug}/settings/hooks#travis_minibucket"
|
||||
|
||||
statusImage: (slug, branch) ->
|
||||
"#{location.protocol}//#{location.host}/#{slug}.svg" + if branch then "?branch=#{branch}" else ''
|
||||
"#{location.protocol}//#{location.host}/#{slug}.svg" + if branch then "?branch=#{encodeURIComponent(branch)}" else ''
|
||||
|
||||
ccXml: (slug) ->
|
||||
"#{Travis.config.api_endpoint}/repos/#{slug}/cc.xml"
|
||||
|
|
|
@ -13,11 +13,11 @@ Travis.StatusImagesView = Em.View.extend
|
|||
'Image URL',
|
||||
'Markdown',
|
||||
'Textile',
|
||||
'RDOC',
|
||||
'Rdoc',
|
||||
'AsciiDoc',
|
||||
'Rst',
|
||||
'POD',
|
||||
'cc.xml'
|
||||
'Pod',
|
||||
'CCTray'
|
||||
]
|
||||
|
||||
didInsertElement: ->
|
||||
|
|
Loading…
Reference in New Issue
Block a user