Rename views to rails 2 style names.
This commit is contained in:
parent
a8c7d1c4ce
commit
2e2f212472
91 changed files with 2 additions and 6 deletions
|
@ -78,6 +78,8 @@ class DiaryEntryController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def rss
|
def rss
|
||||||
|
request.format = :rss
|
||||||
|
|
||||||
if params[:display_name]
|
if params[:display_name]
|
||||||
user = User.find_by_display_name(params[:display_name], :conditions => {:visible => true})
|
user = User.find_by_display_name(params[:display_name], :conditions => {:visible => true})
|
||||||
|
|
||||||
|
@ -86,8 +88,6 @@ class DiaryEntryController < ApplicationController
|
||||||
@title = "OpenStreetMap diary entries for #{user.display_name}"
|
@title = "OpenStreetMap diary entries for #{user.display_name}"
|
||||||
@description = "Recent OpenStreetmap diary entries from #{user.display_name}"
|
@description = "Recent OpenStreetmap diary entries from #{user.display_name}"
|
||||||
@link = "http://#{SERVER_URL}/user/#{user.display_name}/diary"
|
@link = "http://#{SERVER_URL}/user/#{user.display_name}/diary"
|
||||||
|
|
||||||
render :content_type => Mime::RSS
|
|
||||||
else
|
else
|
||||||
render :nothing => true, :status => :not_found
|
render :nothing => true, :status => :not_found
|
||||||
end
|
end
|
||||||
|
@ -98,8 +98,6 @@ class DiaryEntryController < ApplicationController
|
||||||
@title = "OpenStreetMap diary entries in #{params[:language]}"
|
@title = "OpenStreetMap diary entries in #{params[:language]}"
|
||||||
@description = "Recent diary entries from users of OpenStreetMap"
|
@description = "Recent diary entries from users of OpenStreetMap"
|
||||||
@link = "http://#{SERVER_URL}/diary/#{params[:language]}"
|
@link = "http://#{SERVER_URL}/diary/#{params[:language]}"
|
||||||
|
|
||||||
render :content_type => Mime::RSS
|
|
||||||
else
|
else
|
||||||
@entries = DiaryEntry.find(:all, :include => :user,
|
@entries = DiaryEntry.find(:all, :include => :user,
|
||||||
:conditions => ["users.visible = ?", true],
|
:conditions => ["users.visible = ?", true],
|
||||||
|
@ -107,8 +105,6 @@ class DiaryEntryController < ApplicationController
|
||||||
@title = "OpenStreetMap diary entries"
|
@title = "OpenStreetMap diary entries"
|
||||||
@description = "Recent diary entries from users of OpenStreetMap"
|
@description = "Recent diary entries from users of OpenStreetMap"
|
||||||
@link = "http://#{SERVER_URL}/diary"
|
@link = "http://#{SERVER_URL}/diary"
|
||||||
|
|
||||||
render :content_type => Mime::RSS
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue