1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00

Merge pull request #500 from bhollis/http_prefix

Make :http_prefix work in link_to and asset helpers
This commit is contained in:
Thomas Reynolds 2012-06-23 18:27:38 -07:00
commit b5f6de980a
5 changed files with 37 additions and 5 deletions

View file

@ -144,7 +144,8 @@ module Middleman
# just foo. Best for linking.
# @return [String]
def url
('/' + destination_path).sub(/\/#{Regexp.escape(app.index_file)}$/, '/')
File.join(app.respond_to?(:http_prefix) ? app.http_prefix : '/',
destination_path.sub(/\/#{Regexp.escape(app.index_file)}$/, '/'))
end
end
end

View file

@ -6,7 +6,22 @@ Feature: Built-in macro view helpers
When I go to "/former_padrino_test.html"
And I should see 'href="test2.com"'
And I should see 'src="/images/test2.png"'
And I should see 'src="/images/100px.png"'
And I should see 'src="/javascripts/test1.js"'
And I should see 'href="/stylesheets/test1.css"'
And I should see '1 KB'
Scenario: Setting http_prefix
Given a fixture app "padrino-helpers-app"
And a file named "config.rb" with:
"""
set :http_prefix, "/foo"
"""
And the Server is running at "padrino-helpers-app"
When I go to "/former_padrino_test.html"
And I should see 'src="/foo/images/test2.png"'
And I should see 'src="/foo/images/100px.png"'
And I should see 'src="/foo/javascripts/test1.js"'
And I should see 'href="/foo/stylesheets/test1.css"'

View file

@ -76,3 +76,18 @@ Feature: link_to helper
And the Server is running at "indexable-app"
When I go to "/link_to/"
Then I should see '<a href="/needs_index/">Needs Index</a>'
Scenario: Setting http_prefix
Given a fixture app "indexable-app"
And a file named "config.rb" with:
"""
set :http_prefix, "/foo"
"""
And a file named "source/link_to.html.erb" with:
"""
<%= link_to "Needs Index", "/needs_index.html" %>
"""
And the Server is running at "indexable-app"
When I go to "/link_to.html"
Then I should see '<a href="/foo/needs_index.html">Needs Index</a>'

View file

@ -1,5 +1,6 @@
<%= stylesheet_link_tag "test1" %>
<%= javascript_include_tag "test1" %>
<%= image_tag "test2.png", :alt => "alt" %>
<%= image_tag "100px.png", :alt => "alt" %>
<%= link_to "Has param", "test2.com", :class => "test" %>
<%= number_to_human_size(1024) %>

View file

@ -31,13 +31,13 @@ module Middleman
else # rewrite paths to use their destination path
path = File.join(prefix, path)
if resource = sitemap.find_resource_by_path(path)
path = resource.destination_path
end
resource.url
else
File.join(http_prefix, path)
end
end
end
end
end
end
end