Use only_path instead of setting an explicit host
This commit is contained in:
parent
1309661b15
commit
34c473f503
6 changed files with 10 additions and 10 deletions
|
@ -7,24 +7,24 @@ xml.rss("version" => "2.0",
|
|||
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
|
||||
|
|
|
@ -6,7 +6,7 @@ xml.wpt("lon" => note.lon, "lat" => note.lat) do
|
|||
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
|
||||
|
|
|
@ -26,7 +26,7 @@ json.properties do
|
|||
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
|
||||
|
|
|
@ -22,7 +22,7 @@ xml.note("lon" => note.lon, "lat" => note.lat) do
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue