"og:type" => "website",
"og:image" => image_url("osm_logo_256.png", :protocol => "http"),
"og:image:secure_url" => image_url("osm_logo_256.png", :protocol => "https"),
- "og:url" => url_for(:host => SERVER_URL),
+ "og:url" => url_for(:only_path => false),
"og:description" => t("layouts.intro_text")
}
xml.channel do
xml.title @title
xml.description @description
- xml.link url_for(:action => "list", :host => SERVER_URL)
+ xml.link url_for(:action => "list", :only_path => false)
xml.image do
xml.url image_url("mag_map-rss2.0.png")
xml.title @title
xml.width "100"
xml.height "100"
- xml.link url_for(:action => "list", :host => SERVER_URL)
+ xml.link url_for(:action => "list", :only_path => false)
end
@entries.each do |entry|
xml.item do
xml.title entry.title
- xml.link url_for(:action => "view", :id => entry.id, :display_name => entry.user.display_name, :host => SERVER_URL)
- xml.guid url_for(:action => "view", :id => entry.id, :display_name => entry.user.display_name, :host => SERVER_URL)
+ xml.link url_for(:action => "view", :id => entry.id, :display_name => entry.user.display_name, :only_path => false)
+ xml.guid url_for(:action => "view", :id => entry.id, :display_name => entry.user.display_name, :only_path => false)
xml.description entry.body.to_html
xml.dc :creator, entry.user.display_name
xml.pubDate entry.created_at.to_s(:rfc822)
- xml.comments url_for(:action => "view", :id => entry.id, :display_name => entry.user.display_name, :anchor => "comments", :host => SERVER_URL)
+ xml.comments url_for(:action => "view", :id => entry.id, :display_name => entry.user.display_name, :anchor => "comments", :only_path => false)
if entry.latitude && entry.longitude
xml.geo :lat, entry.latitude.to_s
xml.cdata! render(:partial => "description", :object => note, :formats => [:html])
end
- xml.link("href" => browse_note_url(note, :host => SERVER_URL))
+ xml.link("href" => browse_note_url(note, :only_path => false))
xml.extensions do
xml.id note.id
if comment.author
json.uid comment.author.id
json.user comment.author.display_name
- json.user_url user_url(:display_name => comment.author.display_name, :host => SERVER_URL)
+ json.user_url user_url(:display_name => comment.author.display_name, :only_path => false)
end
json.action comment.event
if comment.author
xml.uid comment.author.id
xml.user comment.author.display_name
- xml.user_url user_url(:display_name => comment.author.display_name, :host => SERVER_URL)
+ xml.user_url user_url(:display_name => comment.author.display_name, :only_path => false)
end
xml.action comment.event
assert_select "time", :count => 1
assert_select "name", "Note: #{open_note.id}"
assert_select "desc", :count => 1
- assert_select "link[href='http://www.openstreetmap.org/note/#{open_note.id}']", :count => 1
+ assert_select "link[href='http://test.host/note/#{open_note.id}']", :count => 1
assert_select "extensions", :count => 1 do
assert_select "id", open_note.id.to_s
assert_select "url", note_url(open_note, :format => "gpx")