|
|
@ -148,7 +148,10 @@ class BoardsController < ApplicationController
|
|
|
|
|
|
|
|
|
|
|
|
@message = Message.new(:board => @board)
|
|
|
|
@message = Message.new(:board => @board)
|
|
|
|
#modify by nwb
|
|
|
|
#modify by nwb
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
|
|
|
|
format.js
|
|
|
|
|
|
|
|
format.html {
|
|
|
|
|
|
|
|
if @project
|
|
|
|
render :action => 'show', :layout => 'base_projects'
|
|
|
|
render :action => 'show', :layout => 'base_projects'
|
|
|
|
elsif @course
|
|
|
|
elsif @course
|
|
|
|
@params=params
|
|
|
|
@params=params
|
|
|
@ -157,6 +160,10 @@ class BoardsController < ApplicationController
|
|
|
|
}
|
|
|
|
}
|
|
|
|
format.atom {
|
|
|
|
format.atom {
|
|
|
|
@messages = @board.messages.
|
|
|
|
@messages = @board.messages.
|
|
|
|
|
|
|
|
reorder('created_on DESC').
|
|
|
|
|
|
|
|
includes(:author, :board).
|
|
|
|
|
|
|
|
limit(Setting.feeds_limit.to_i).
|
|
|
|
|
|
|
|
all
|
|
|
|
if @project
|
|
|
|
if @project
|
|
|
|
render_feed(@messages, :title => "#{@project}: #{@board}")
|
|
|
|
render_feed(@messages, :title => "#{@project}: #{@board}")
|
|
|
|
elsif @course
|
|
|
|
elsif @course
|
|
|
|