Adding titles to some more pages, adding a redirect after sent messages and setting correct XML content-type header for RSS feeds.
This commit is contained in:
parent
cbf2dea611
commit
072b0717e4
3 changed files with 17 additions and 2 deletions
|
@ -32,7 +32,7 @@ class DiaryEntryController < ApplicationController
|
|||
rss.add(latitude, longitude, entry.title, url_for({:controller => 'user', :action => 'diary', :id => entry.id, :display_name => entry.user.display_name}), entry.body, entry.created_at)
|
||||
end
|
||||
|
||||
response.headers["Content-Type"] = 'application/xml+rss'
|
||||
response.headers["Content-Type"] = 'application/rss+xml'
|
||||
|
||||
render :text => rss.to_s
|
||||
end
|
||||
|
|
|
@ -5,6 +5,7 @@ class MessageController < ApplicationController
|
|||
before_filter :require_user
|
||||
|
||||
def new
|
||||
@title = 'send message'
|
||||
if params[:message]
|
||||
to_user = User.find(params[:user_id])
|
||||
body = params[:message][:body]
|
||||
|
@ -19,6 +20,7 @@ class MessageController < ApplicationController
|
|||
|
||||
if message.save
|
||||
flash[:notice] = 'Message sent'
|
||||
redirect_to :controller => 'user', :action => 'view', :display_name => @user.display_name
|
||||
else
|
||||
@message.errors.add("Sending message failed")
|
||||
end
|
||||
|
@ -27,12 +29,16 @@ class MessageController < ApplicationController
|
|||
end
|
||||
|
||||
def read
|
||||
@title = 'read message'
|
||||
if params[:message_id]
|
||||
id = params[:message_id]
|
||||
@message = Message.find_by_id(id)
|
||||
end
|
||||
end
|
||||
|
||||
def inbox
|
||||
end
|
||||
|
||||
def mark
|
||||
if params[:message_id]
|
||||
id = params[:message_id]
|
||||
|
|
|
@ -6,6 +6,7 @@ class UserController < ApplicationController
|
|||
before_filter :require_user, :only => [:set_home, :account, :go_public, :make_friend]
|
||||
|
||||
def save
|
||||
@title = 'create account'
|
||||
@user = User.new(params[:user])
|
||||
@user.set_defaults
|
||||
|
||||
|
@ -19,6 +20,7 @@ class UserController < ApplicationController
|
|||
end
|
||||
|
||||
def account
|
||||
@title = 'edit account'
|
||||
if params[:user] and params[:user][:display_name] and params[:user][:description]
|
||||
home_lat = params[:user][:home_lat]
|
||||
home_lon = params[:user][:home_lon]
|
||||
|
@ -58,6 +60,7 @@ class UserController < ApplicationController
|
|||
end
|
||||
|
||||
def lost_password
|
||||
@title = 'lost password'
|
||||
if params[:user] and params[:user][:email]
|
||||
user = User.find_by_email(params['user']['email'])
|
||||
if user
|
||||
|
@ -74,6 +77,7 @@ class UserController < ApplicationController
|
|||
end
|
||||
|
||||
def reset_password
|
||||
@title = 'reset password'
|
||||
if params['token']
|
||||
user = User.find_by_token(params['token'])
|
||||
if user
|
||||
|
@ -92,9 +96,11 @@ class UserController < ApplicationController
|
|||
end
|
||||
|
||||
def new
|
||||
@title = 'create account'
|
||||
end
|
||||
|
||||
def login
|
||||
@title = 'login'
|
||||
if params[:user]
|
||||
email = params[:user][:email]
|
||||
pass = params[:user][:password]
|
||||
|
@ -149,6 +155,7 @@ class UserController < ApplicationController
|
|||
end
|
||||
|
||||
def preferences
|
||||
@title = 'preferences'
|
||||
if request.get?
|
||||
render_text @user.preferences
|
||||
elsif request.post? or request.put?
|
||||
|
@ -174,10 +181,12 @@ class UserController < ApplicationController
|
|||
|
||||
def view
|
||||
@this_user = User.find_by_display_name(params[:display_name])
|
||||
@title = @this_user.display_name
|
||||
end
|
||||
|
||||
def diary
|
||||
@this_user = User.find_by_display_name(params[:display_name])
|
||||
@title = @this_user.display_name + "'s diary"
|
||||
end
|
||||
|
||||
def make_friend
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue