+
+ def edit
+ @title= t 'diary_entry.edit.title'
+ @diary_entry = DiaryEntry.find(params[:id])
+
+ if @user != @diary_entry.user
+ redirect_to :controller => 'diary_entry', :action => 'view', :id => params[:id]
+ elsif params[:diary_entry]
+ if @diary_entry.update_attributes(params[:diary_entry])
+ redirect_to :controller => 'diary_entry', :action => 'view', :id => params[:id]
+ end
+ end
+ rescue ActiveRecord::RecordNotFound
+ render :action => "no_such_entry", :status => :not_found
+ end
+
+ def comment
+ @entry = DiaryEntry.find(params[:id])
+ @diary_comment = @entry.comments.build(params[:diary_comment])
+ @diary_comment.user = @user
+ if @diary_comment.save
+ if @diary_comment.user != @entry.user
+ Notifier.diary_comment_notification(@diary_comment).deliver
+ end
+
+ redirect_to :controller => 'diary_entry', :action => 'view', :display_name => @entry.user.display_name, :id => @entry.id
+ else
+ render :action => 'view'
+ end
+ end
+