Merge branch 'develop' into gitlab_guange
Conflicts: db/schema.rb
This commit is contained in:
commit
4c61e7490b
|
@ -354,7 +354,7 @@ class AdminController < ApplicationController
|
||||||
@schools = School.where('1=1')
|
@schools = School.where('1=1')
|
||||||
end
|
end
|
||||||
@school_count = @schools.count
|
@school_count = @schools.count
|
||||||
@school_pages = Paginator.new @school_count, per_page_option, params['page'] || 1
|
@school_pages = Paginator.new @school_count, 100, params['page'] || 1
|
||||||
@schools = paginateHelper @schools,100
|
@schools = paginateHelper @schools,100
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html
|
format.html
|
||||||
|
|
|
@ -382,6 +382,11 @@ class ApplicationController < ActionController::Base
|
||||||
if allowed
|
if allowed
|
||||||
true
|
true
|
||||||
else
|
else
|
||||||
|
if params[:action] == 'show'
|
||||||
|
#更新申请结果反馈消息的状态
|
||||||
|
messages = CourseMessage.where("course_message_type =? and course_id =? and user_id =? and viewed =?", 'CourseRequestDealResult', @course.id, User.current.id, false)
|
||||||
|
messages.update_all(:viewed => true)
|
||||||
|
end
|
||||||
if @course && @course.archived?
|
if @course && @course.archived?
|
||||||
render_403 :message => :notice_not_authorized_archived_project
|
render_403 :message => :notice_not_authorized_archived_project
|
||||||
else
|
else
|
||||||
|
|
|
@ -227,6 +227,8 @@ class AttachmentsController < ApplicationController
|
||||||
format.js
|
format.js
|
||||||
elsif @attachment.container.is_a?(Message)
|
elsif @attachment.container.is_a?(Message)
|
||||||
format.html { redirect_to_referer_or new_board_message_path(@attachment.container) }
|
format.html { redirect_to_referer_or new_board_message_path(@attachment.container) }
|
||||||
|
elsif @attachment.container.is_a?(BlogComment)
|
||||||
|
format.html { redirect_to_referer_or user_blog_blog_comment_path(:user_id=>@attachment.container.author.id,:blog_id=>@attachment.container.blog_id,:id=>@attachment.container.id)}
|
||||||
elsif @course.nil?
|
elsif @course.nil?
|
||||||
format.html { redirect_to_referer_or forum_memo_path(@attachment.container.forum, @attachment.container) }
|
format.html { redirect_to_referer_or forum_memo_path(@attachment.container.forum, @attachment.container) }
|
||||||
else
|
else
|
||||||
|
|
|
@ -0,0 +1,121 @@
|
||||||
|
class BlogCommentsController < ApplicationController
|
||||||
|
include ApplicationHelper
|
||||||
|
before_filter :find_user
|
||||||
|
def index
|
||||||
|
|
||||||
|
end
|
||||||
|
def create
|
||||||
|
if User.current.logged?
|
||||||
|
@article = BlogComment.new
|
||||||
|
@article.author = User.current
|
||||||
|
@article.blog_id = params[:blog_id]
|
||||||
|
@article.safe_attributes = params[:blog_comment]
|
||||||
|
if request.post?
|
||||||
|
@article.save_attachments(params[:attachments])
|
||||||
|
if @article.save
|
||||||
|
# 更新kindeditor上传的图片资源所有者
|
||||||
|
# if params[:asset_id]
|
||||||
|
# ids = params[:asset_id].split(',')
|
||||||
|
# update_kindeditor_assets_owner ids,@article.id,OwnerTypeHelper::BLOGCOMMENT
|
||||||
|
# end
|
||||||
|
render_attachment_warning_if_needed(@article)
|
||||||
|
else
|
||||||
|
end
|
||||||
|
redirect_to user_blogs_path(:user_id=>params[:user_id])
|
||||||
|
else
|
||||||
|
respond_to do |format|
|
||||||
|
format.html {
|
||||||
|
render :layout => 'new_base_user'
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
redirect_to signin_path
|
||||||
|
end
|
||||||
|
end
|
||||||
|
def new
|
||||||
|
respond_to do |format|
|
||||||
|
format.html {render :layout=>'new_base_user'}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
def show
|
||||||
|
@article = BlogComment.find(params[:id])
|
||||||
|
respond_to do |format|
|
||||||
|
format.html {render :layout=>'new_base_user'}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
def update
|
||||||
|
@article = BlogComment.find(params[:id])
|
||||||
|
@article.safe_attributes = params[:blog_comment]
|
||||||
|
@article.save_attachments(params[:attachments])
|
||||||
|
if @article.save
|
||||||
|
render_attachment_warning_if_needed(@article)
|
||||||
|
else
|
||||||
|
end
|
||||||
|
redirect_to user_blog_blog_comment_path(:user_id=>params[:user_id],:blog_id=>params[:blog_id],:id=>params[:id])
|
||||||
|
end
|
||||||
|
def destroy
|
||||||
|
@article = BlogComment.find(params[:id])
|
||||||
|
if @article.parent_id.nil? #如果是文章被删,那么跳转到用户博客界面
|
||||||
|
@article.children.delete
|
||||||
|
@article.delete
|
||||||
|
redirect_to user_blogs_path(:user_id=>User.current)
|
||||||
|
else
|
||||||
|
root = @article.root
|
||||||
|
@article.delete
|
||||||
|
redirect_to user_blog_blog_comment_path(:user_id=>root.author_id,:blog_id=>root.blog_id,:id=>root.id)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def edit
|
||||||
|
@article = BlogComment.find(params[:id])
|
||||||
|
respond_to do |format|
|
||||||
|
format.html {render :layout=>'new_base_user'}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def quote
|
||||||
|
@blogComment = BlogComment.find(params[:id])
|
||||||
|
@subject = @blogComment.title
|
||||||
|
@subject = "RE: #{@subject}" unless @subject.starts_with?('RE:')
|
||||||
|
|
||||||
|
@content = "> #{ll(Setting.default_language, :text_user_wrote, @blogComment.author.realname)}\n> "
|
||||||
|
@temp = BlogComment.new
|
||||||
|
@temp.content = "<blockquote>#{ll(Setting.default_language, :text_user_wrote, @blogComment.author.realname)} <br/>#{@blogComment.content.html_safe}</blockquote>".html_safe
|
||||||
|
respond_to do | format|
|
||||||
|
format.js
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
#回复
|
||||||
|
def reply
|
||||||
|
@article = BlogComment.find(params[:id]).root
|
||||||
|
@quote = params[:quote][:quote]
|
||||||
|
@blogComment = BlogComment.new
|
||||||
|
@blogComment.author = User.current
|
||||||
|
@blogComment.blog = Blog.find(params[:blog_id])
|
||||||
|
params[:blog_comment][:sticky] = params[:blog_comment][:sticky] || 0
|
||||||
|
params[:blog_comment][:locked] = params[:blog_comment][:locked] || 0
|
||||||
|
@blogComment.safe_attributes = params[:blog_comment]
|
||||||
|
@blogComment.content = @quote + @blogComment.content
|
||||||
|
@blogComment.title = "RE: #{@article.title}" unless params[:blog_comment][:title]
|
||||||
|
@article.children << @blogComment
|
||||||
|
@user_activity_id = params[:user_activity_id]
|
||||||
|
|
||||||
|
attachments = Attachment.attach_files(@blogComment, params[:attachments])
|
||||||
|
render_attachment_warning_if_needed(@blogComment)
|
||||||
|
#@article.save
|
||||||
|
# redirect_to user_blogs_path(:user_id=>params[:user_id])
|
||||||
|
respond_to do |format|
|
||||||
|
format.html { redirect_to user_blog_blog_comment_path(:user_id=>@article.author_id,:blog_id=>@article.blog_id,:id=>@article)}
|
||||||
|
format.js
|
||||||
|
end
|
||||||
|
rescue Exception => e #如果上面的代码执行发生异常就捕获
|
||||||
|
flash[:notice] = e.message
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
def find_user
|
||||||
|
@user = User.find(params[:user_id])
|
||||||
|
end
|
||||||
|
end
|
|
@ -0,0 +1,47 @@
|
||||||
|
class BlogsController < ApplicationController
|
||||||
|
before_filter :find_blog,:except => [:index,:create,:new]
|
||||||
|
before_filter :find_user
|
||||||
|
def index
|
||||||
|
@articls = @user.blog.articles
|
||||||
|
@article = BlogComment.new
|
||||||
|
respond_to do |format|
|
||||||
|
format.html {render :layout=>'new_base_user'}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
def create
|
||||||
|
|
||||||
|
end
|
||||||
|
def new
|
||||||
|
|
||||||
|
end
|
||||||
|
def show
|
||||||
|
|
||||||
|
end
|
||||||
|
def update
|
||||||
|
|
||||||
|
end
|
||||||
|
def destory
|
||||||
|
|
||||||
|
end
|
||||||
|
def edit
|
||||||
|
|
||||||
|
end
|
||||||
|
private
|
||||||
|
def find_blog
|
||||||
|
if params[:blog_id]
|
||||||
|
@blog = Blog.find(params[:blog_id])
|
||||||
|
else
|
||||||
|
render_404
|
||||||
|
end
|
||||||
|
if @blog.nil?
|
||||||
|
#如果某个user的blog不存在,那么就创建一条
|
||||||
|
@blog = Blog.create(:name=>User.find(params[:id]).realname ,
|
||||||
|
:description=>'',
|
||||||
|
:author_id=>params[:id])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def find_user
|
||||||
|
@user = User.find(params[:user_id])
|
||||||
|
end
|
||||||
|
end
|
|
@ -31,27 +31,24 @@ class CoursesController < ApplicationController
|
||||||
|
|
||||||
def join
|
def join
|
||||||
if User.current.logged?
|
if User.current.logged?
|
||||||
cs = CoursesService.new
|
cs = CoursesService.new
|
||||||
user = User.current
|
@user = User.current
|
||||||
join = cs.join_course params,user
|
join = cs.join_course params,@user
|
||||||
@state = join[:state]
|
@state = join[:state]
|
||||||
course = join[:course]
|
@course = join[:course]
|
||||||
|
# else
|
||||||
|
# @course = Course.find_by_id params[:object_id]
|
||||||
|
# CourseMessage.create(:user_id => @course.tea_id, :course_id => @course.id, :viewed => false,:content=> params[:role],:course_message_id=>User.current.id,:course_message_type=>'JoinCourseRequest')
|
||||||
|
# @state = 6
|
||||||
|
# end
|
||||||
else
|
else
|
||||||
@state = 5 #未登录
|
@state = 5 #未登录
|
||||||
end
|
end
|
||||||
# if @state == 1 || @state == 3
|
@object_id = params[:object_id]
|
||||||
# respond_to course_path(course.id)
|
|
||||||
# else
|
|
||||||
respond_to do |format|
|
|
||||||
format.js { render :partial => 'set_join', :locals => {:user => user, :course => course, :object_id => params[:object_id]} }
|
|
||||||
end
|
|
||||||
#end
|
|
||||||
|
|
||||||
rescue Exception => e
|
|
||||||
@state = 4 #已经加入了课程
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.js { render :partial => 'set_join', :locals => {:user => User.current, :course => nil, :object_id => nil} }
|
format.js #{ render :partial => 'set_join', :locals => {:user => @user, :course => @course, :object_id => params[:object_id]} }
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def unjoin
|
def unjoin
|
||||||
|
@ -291,14 +288,11 @@ class CoursesController < ApplicationController
|
||||||
def export_course_member_excel
|
def export_course_member_excel
|
||||||
@all_members = student_homework_score(0,0,0,"desc")
|
@all_members = student_homework_score(0,0,0,"desc")
|
||||||
filename="#{@course.teacher.lastname.to_s + @course.teacher.firstname.to_s }_#{@course.name}_#{@course.time.to_s + @course.term}#{l(:excel_member_list)}";
|
filename="#{@course.teacher.lastname.to_s + @course.teacher.firstname.to_s }_#{@course.name}_#{@course.time.to_s + @course.term}#{l(:excel_member_list)}";
|
||||||
# 如果是ie 需要转码
|
|
||||||
if(/trident/.match(request.env["HTTP_USER_AGENT"]) != nil)
|
|
||||||
filename= URI::encode(filename)
|
|
||||||
end
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.xls {
|
format.xls {
|
||||||
send_data(member_to_xls(@all_members,@course.course_groups), :type => "text/excel;charset=utf-8; header=present",
|
send_data(member_to_xls(@all_members,@course.course_groups), :type => "text/excel;charset=utf-8; header=present",
|
||||||
:filename => "#{filename}.xls")
|
:filename => filename_for_content_disposition("#{filename}.xls"))
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -619,6 +613,10 @@ class CoursesController < ApplicationController
|
||||||
create_course_messages = @course.course_messages.where("user_id =? and course_message_type =? and course_id =? and viewed =?", User.current.id, 'Course', @course.id, 0)
|
create_course_messages = @course.course_messages.where("user_id =? and course_message_type =? and course_id =? and viewed =?", User.current.id, 'Course', @course.id, 0)
|
||||||
create_course_messages.update_all(:viewed => true)
|
create_course_messages.update_all(:viewed => true)
|
||||||
|
|
||||||
|
#更新申请结果反馈消息的状态
|
||||||
|
course_request_messages = CourseMessage.where("user_id =? and course_id =? and course_message_type =? and viewed =?", User.current.id, @course.id, 'CourseRequestDealResult', false)
|
||||||
|
course_request_messages.update_all(:viewed => true)
|
||||||
|
|
||||||
course_activities = @course.course_activities
|
course_activities = @course.course_activities
|
||||||
@canShowRealName = User.current.member_of_course? @course
|
@canShowRealName = User.current.member_of_course? @course
|
||||||
@page = params[:page] ? params[:page].to_i + 1 : 0
|
@page = params[:page] ? params[:page].to_i + 1 : 0
|
||||||
|
|
|
@ -42,8 +42,8 @@ class GanttsController < ApplicationController
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html { render :action => "show", :layout => 'base_projects' }#by young
|
format.html { render :action => "show", :layout => 'base_projects' }#by young
|
||||||
format.png { send_data(@gantt.to_image, :disposition => 'inline', :type => 'image/png', :filename => "#{basename}.png") } if @gantt.respond_to?('to_image')
|
format.png { send_data(@gantt.to_image, :disposition => 'inline', :type => 'image/png', :filename => filename_for_content_disposition("#{basename}.png")) } if @gantt.respond_to?('to_image')
|
||||||
format.pdf { send_data(@gantt.to_pdf, :type => 'application/pdf', :filename => "#{basename}.pdf") }
|
format.pdf { send_data(@gantt.to_pdf, :type => 'application/pdf', :filename => filename_for_content_disposition("#{basename}.pdf") ) }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -33,7 +33,7 @@ class HomeworkAttachController < ApplicationController
|
||||||
format.js
|
format.js
|
||||||
format.xls {
|
format.xls {
|
||||||
send_data(homework_to_xls(@all_homework_list), :type => "text/excel;charset=utf-8; header=present",
|
send_data(homework_to_xls(@all_homework_list), :type => "text/excel;charset=utf-8; header=present",
|
||||||
:filename => "#{@course.teacher.lastname.to_s + @course.teacher.firstname}_#{@course.name}_#{@course.time.to_s + @course.term}_#{@bid.name}#{l(:excel_homework_list)}(#{l(:excel_not_rated)}).xls")
|
:filename => filename_for_content_disposition("#{@course.teacher.lastname.to_s + @course.teacher.firstname}_#{@course.name}_#{@course.time.to_s + @course.term}_#{@bid.name}#{l(:excel_homework_list)}(#{l(:excel_not_rated)}).xls") )
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -66,7 +66,7 @@ class HomeworkAttachController < ApplicationController
|
||||||
format.js
|
format.js
|
||||||
format.xls {
|
format.xls {
|
||||||
send_data(homework_to_xls(all_homework_list), :type => "text/excel;charset=utf-8; header=present",
|
send_data(homework_to_xls(all_homework_list), :type => "text/excel;charset=utf-8; header=present",
|
||||||
:filename => "#{@course.teacher.lastname.to_s + @course.teacher.firstname}_#{@course.name}_#{@course.time.to_s + @course.term}_#{@bid.name}#{l(:excel_homework_list)}(#{l(:excel_been_rated)}).xls")
|
:filename => filename_for_content_disposition("#{@course.teacher.lastname.to_s + @course.teacher.firstname}_#{@course.name}_#{@course.time.to_s + @course.term}_#{@bid.name}#{l(:excel_homework_list)}(#{l(:excel_been_rated)}).xls") )
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -101,7 +101,7 @@ class HomeworkAttachController < ApplicationController
|
||||||
format.js
|
format.js
|
||||||
format.xls {
|
format.xls {
|
||||||
send_data(homework_to_xls(all_homework_list), :type => "text/excel;charset=utf-8; header=present",
|
send_data(homework_to_xls(all_homework_list), :type => "text/excel;charset=utf-8; header=present",
|
||||||
:filename => "#{@course.teacher.lastname.to_s + @course.teacher.firstname}_#{@course.name}_#{@course.time.to_s + @course.term}_#{@bid.name}#{l(:excel_homework_list)}.xls")
|
:filename => filename_for_content_disposition("#{@course.teacher.lastname.to_s + @course.teacher.firstname}_#{@course.name}_#{@course.time.to_s + @course.term}_#{@bid.name}#{l(:excel_homework_list)}.xls") )
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -6,8 +6,8 @@ class HomeworkCommonController < ApplicationController
|
||||||
|
|
||||||
include StudentWorkHelper
|
include StudentWorkHelper
|
||||||
before_filter :find_course, :only => [:index,:new,:create]
|
before_filter :find_course, :only => [:index,:new,:create]
|
||||||
before_filter :find_homework, :only => [:edit,:update,:alert_anonymous_comment,:start_anonymous_comment,:stop_anonymous_comment,:destroy,:start_evaluation_set,:set_evaluation_attr]
|
before_filter :find_homework, :only => [:edit,:update,:alert_anonymous_comment,:start_anonymous_comment,:stop_anonymous_comment,:destroy,:start_evaluation_set,:set_evaluation_attr,:score_rule_set]
|
||||||
before_filter :teacher_of_course, :only => [:new, :create, :edit, :update, :destroy, :start_anonymous_comment, :stop_anonymous_comment, :alert_anonymous_comment,:start_evaluation_set,:set_evaluation_attr]
|
before_filter :teacher_of_course, :only => [:new, :create, :edit, :update, :destroy, :start_anonymous_comment, :stop_anonymous_comment, :alert_anonymous_comment,:start_evaluation_set,:set_evaluation_attr,:score_rule_set]
|
||||||
before_filter :member_of_course, :only => [:index]
|
before_filter :member_of_course, :only => [:index]
|
||||||
|
|
||||||
def index
|
def index
|
||||||
|
@ -215,6 +215,11 @@ class HomeworkCommonController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
#评分设置
|
||||||
|
def score_rule_set
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
#获取课程
|
#获取课程
|
||||||
def find_course
|
def find_course
|
||||||
|
|
|
@ -151,7 +151,7 @@ class IssuesController < ApplicationController
|
||||||
format.atom { render :template => 'journals/index', :layout => false, :content_type => 'application/atom+xml' }
|
format.atom { render :template => 'journals/index', :layout => false, :content_type => 'application/atom+xml' }
|
||||||
format.pdf {
|
format.pdf {
|
||||||
pdf = issue_to_pdf(@issue, :journals => @journals)
|
pdf = issue_to_pdf(@issue, :journals => @journals)
|
||||||
send_data(pdf, :type => 'application/pdf', :filename => "#{@project.identifier}-#{@issue.id}.pdf")
|
send_data(pdf, :type => 'application/pdf', :filename => filename_for_content_disposition("#{@project.identifier}-#{@issue.id}.pdf") )
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -413,7 +413,7 @@ class PollController < ApplicationController
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.xls {
|
format.xls {
|
||||||
send_data(poll_to_xls(poll_questions), :type => "text/excel;charset=utf-8; header=present",
|
send_data(poll_to_xls(poll_questions), :type => "text/excel;charset=utf-8; header=present",
|
||||||
:filename => "#{@poll.polls_name}.xls")
|
:filename => filename_for_content_disposition("#{@poll.polls_name}.xls") )
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -84,7 +84,7 @@ class StoresController < ApplicationController
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.xls {
|
format.xls {
|
||||||
send_data(homework_to_xls(attachments), :type => "text/excel;charset=utf-8; header=present",
|
send_data(homework_to_xls(attachments), :type => "text/excel;charset=utf-8; header=present",
|
||||||
:filename => "#{l(:label_file_lost_list)}.xls")
|
:filename => filename_for_content_disposition("#{l(:label_file_lost_list)}.xls") )
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -63,7 +63,7 @@ class StudentWorkController < ApplicationController
|
||||||
journal_for_teacher.update_attributes(:viewed => true)
|
journal_for_teacher.update_attributes(:viewed => true)
|
||||||
end
|
end
|
||||||
#不能参与作业匿评消息状态更新
|
#不能参与作业匿评消息状态更新
|
||||||
no_evaluation = CourseMessage.where("user_id =? and course_id =? and course_message_type =? and viewed =?", User.current.id, @homework.course, "NoEvaluation", 0)
|
no_evaluation = CourseMessage.where("user_id =? and course_id =? and course_message_type =? and viewed =? and status =?", User.current.id, @homework.course, "StudentWork", 0, 0)
|
||||||
no_evaluation.update_all(:viewed => true)
|
no_evaluation.update_all(:viewed => true)
|
||||||
# 作品留言
|
# 作品留言
|
||||||
# 消息end
|
# 消息end
|
||||||
|
@ -144,6 +144,10 @@ class StudentWorkController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
|
#更新消息
|
||||||
|
noEvaluation = @homework.course_messages.where("user_id =? and viewed =?", User.current.id, 0)
|
||||||
|
noEvaluation.update_all(:viewed => true)
|
||||||
|
|
||||||
if @homework.homework_type==2
|
if @homework.homework_type==2
|
||||||
redirect_to new_user_commit_homework_users_path(homework_id: @homework.id)
|
redirect_to new_user_commit_homework_users_path(homework_id: @homework.id)
|
||||||
return
|
return
|
||||||
|
@ -453,7 +457,13 @@ class StudentWorkController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html{redirect_to student_work_index_url(:homework => @homework.id)}
|
format.html{
|
||||||
|
if params[:student_path]
|
||||||
|
redirect_to student_work_index_url(:homework => @homework.id)
|
||||||
|
else
|
||||||
|
redirect_to user_homeworks_user_path(User.current.id)
|
||||||
|
end
|
||||||
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -128,7 +128,7 @@ class UsersController < ApplicationController
|
||||||
|
|
||||||
#课程相关消息
|
#课程相关消息
|
||||||
when 'homework'
|
when 'homework'
|
||||||
@message_alls = CourseMessage.where("course_message_type in ('HomeworkCommon','StudentWorksScore','JournalsForMessage','NoEvaluation') and user_id =?", @user).order("created_at desc")
|
@message_alls = CourseMessage.where("course_message_type in ('HomeworkCommon','StudentWorksScore','JournalsForMessage','StudentWork') and user_id =?", @user).order("created_at desc")
|
||||||
when 'course_message'
|
when 'course_message'
|
||||||
@message_alls = CourseMessage.where("course_message_type =? and user_id =?", "Message", @user).order("created_at desc")
|
@message_alls = CourseMessage.where("course_message_type =? and user_id =?", "Message", @user).order("created_at desc")
|
||||||
when 'course_news'
|
when 'course_news'
|
||||||
|
@ -239,6 +239,46 @@ class UsersController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
#处理加入课程成为教辅教师的请求
|
||||||
|
#status 1 同意 2 拒绝
|
||||||
|
def dealwith_apply_request
|
||||||
|
@msg = CourseMessage.find(params[:msg_id])
|
||||||
|
|
||||||
|
case params[:agree]
|
||||||
|
when 'Y'
|
||||||
|
apply_user = User.find(@msg.course_message_id)
|
||||||
|
|
||||||
|
if apply_user.member_of_course?(Course.find(@msg.course_id))
|
||||||
|
#将角色改为老师或者教辅
|
||||||
|
member = Course.find(@msg.course_id).members.where(:user_id=>apply_user.id).all[0]
|
||||||
|
member.role_ids = [@msg.content] # msg content保存的是申请的职位角色
|
||||||
|
#删除为学生的记录
|
||||||
|
joined = StudentsForCourse.where('student_id = ? and course_id = ?', member.user_id,@msg.course_id)
|
||||||
|
joined.each do |join|
|
||||||
|
join.delete
|
||||||
|
end
|
||||||
|
|
||||||
|
member.course_group_id = 0
|
||||||
|
member.save
|
||||||
|
CourseMessage.create(:user_id => @msg.course_message_id, :course_id => @msg.course_id, :viewed => false,:content=> @msg.content,:course_message_id=>User.current.id,:content=>@msg.content,:course_message_type=>'CourseRequestDealResult',:status=>1)
|
||||||
|
@msg.update_attributes(:status=>1,:viewed=>1)
|
||||||
|
else
|
||||||
|
members = []
|
||||||
|
members << Member.new(:role_ids => [@msg.content.to_i], :user_id => @msg.course_message_id)
|
||||||
|
Course.find(@msg.course_id).members << members
|
||||||
|
CourseMessage.create(:user_id => @msg.course_message_id, :course_id => @msg.course_id, :viewed => false,:content=> @msg.content,:course_message_id=>User.current.id,:content=>@msg.content,:course_message_type=>'CourseRequestDealResult',:status=>1)
|
||||||
|
@msg.update_attributes(:status=>1,:viewed=>1)
|
||||||
|
end
|
||||||
|
|
||||||
|
when 'N'
|
||||||
|
CourseMessage.create(:user_id => @msg.course_message_id, :course_id => @msg.course_id, :viewed => false,:content=> @msg.content,:course_message_id=>User.current.id,:content=>@msg.content,:course_message_type=>'CourseRequestDealResult',:status=>2)
|
||||||
|
@msg.update_attributes(:status=>2,:viewed=>1)
|
||||||
|
end
|
||||||
|
respond_to do |format|
|
||||||
|
format.js
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# added by bai
|
# added by bai
|
||||||
def show_score
|
def show_score
|
||||||
|
|
||||||
|
@ -878,6 +918,12 @@ class UsersController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
#更新用户申请成为课程老师或教辅消息的状态
|
||||||
|
if params[:course_id] != nil
|
||||||
|
join_course_messages = CourseMessage.where("course_id =? and course_message_type =? and user_id =? and course_message_id =? and viewed =?",
|
||||||
|
params[:course_id], 'JoinCourseRequest', User.current.id, @user.id, false)
|
||||||
|
join_course_messages.update_all(:viewed => true)
|
||||||
|
end
|
||||||
@page = params[:page] ? params[:page].to_i + 1 : 0
|
@page = params[:page] ? params[:page].to_i + 1 : 0
|
||||||
user_project_ids = @user.projects.visible.empty? ? "(-1)" : "(" + @user.projects.visible.map{|project| project.id}.join(",") + ")"
|
user_project_ids = @user.projects.visible.empty? ? "(-1)" : "(" + @user.projects.visible.map{|project| project.id}.join(",") + ")"
|
||||||
user_course_ids = @user.courses.visible.empty? ? "(-1)" : "(" + @user.courses.visible.map{|course| course.id}.join(",") + ")"
|
user_course_ids = @user.courses.visible.empty? ? "(-1)" : "(" + @user.courses.visible.map{|course| course.id}.join(",") + ")"
|
||||||
|
|
|
@ -82,14 +82,14 @@ class WikiController < ApplicationController
|
||||||
@content = @page.content_for_version(params[:version])
|
@content = @page.content_for_version(params[:version])
|
||||||
if User.current.allowed_to?(:export_wiki_pages, @project)
|
if User.current.allowed_to?(:export_wiki_pages, @project)
|
||||||
if params[:format] == 'pdf'
|
if params[:format] == 'pdf'
|
||||||
send_data(wiki_page_to_pdf(@page, @project), :type => 'application/pdf', :filename => "#{@page.title}.pdf")
|
send_data(wiki_page_to_pdf(@page, @project), :type => 'application/pdf', :filename => filename_for_content_disposition("#{@page.title}.pdf") )
|
||||||
return
|
return
|
||||||
elsif params[:format] == 'html'
|
elsif params[:format] == 'html'
|
||||||
export = render_to_string :action => 'export', :layout => false
|
export = render_to_string :action => 'export', :layout => false
|
||||||
send_data(export, :type => 'text/html', :filename => "#{@page.title}.html")
|
send_data(export, :type => 'text/html', :filename => filename_for_content_disposition("#{@page.title}.html"))
|
||||||
return
|
return
|
||||||
elsif params[:format] == 'txt'
|
elsif params[:format] == 'txt'
|
||||||
send_data(@content.text, :type => 'text/plain', :filename => "#{@page.title}.txt")
|
send_data(@content.text, :type => 'text/plain', :filename => filename_for_content_disposition("#{@page.title}.txt") )
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -286,7 +286,7 @@ class WikiController < ApplicationController
|
||||||
send_data(export, :type => 'text/html', :filename => "wiki.html")
|
send_data(export, :type => 'text/html', :filename => "wiki.html")
|
||||||
}
|
}
|
||||||
format.pdf {
|
format.pdf {
|
||||||
send_data(wiki_pages_to_pdf(@pages, @project), :type => 'application/pdf', :filename => "#{@project.identifier}.pdf")
|
send_data(wiki_pages_to_pdf(@pages, @project), :type => 'application/pdf', :filename => filename_for_content_disposition("#{@project.identifier}.pdf") )
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -243,7 +243,45 @@ class WordsController < ApplicationController
|
||||||
flash[:error] = feedback.errors.full_messages[0]
|
flash[:error] = feedback.errors.full_messages[0]
|
||||||
redirect_to course_feedback_url(params[:id])
|
redirect_to course_feedback_url(params[:id])
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
#作业的回复
|
||||||
|
def leave_homework_message
|
||||||
|
if User.current.logged?
|
||||||
|
@user = User.current
|
||||||
|
@homework_common = HomeworkCommon.find(params[:id]);
|
||||||
|
if params[:homework_message].size>0 && User.current.logged? && @user
|
||||||
|
feedback = HomeworkCommon.add_homework_jour(@user, params[:homework_message], params[:id])
|
||||||
|
if (feedback.errors.empty?)
|
||||||
|
if params[:asset_id]
|
||||||
|
ids = params[:asset_id].split(',')
|
||||||
|
update_kindeditor_assets_owner ids,feedback[:id],OwnerTypeHelper::JOURNALSFORMESSAGE
|
||||||
|
end
|
||||||
|
|
||||||
|
course_activity = CourseActivity.where("course_act_type='HomeworkCommon' and course_act_id =#{@homework_common.id}").first
|
||||||
|
if course_activity
|
||||||
|
course_activity.updated_at = Time.now
|
||||||
|
course_activity.save
|
||||||
|
end
|
||||||
|
user_activity = UserActivity.where("act_type='HomeworkCommon' and act_id =#{@homework_common.id}").first
|
||||||
|
if user_activity
|
||||||
|
user_activity.updated_at = Time.now
|
||||||
|
user_activity.save
|
||||||
|
end
|
||||||
|
respond_to do |format|
|
||||||
|
format.js{
|
||||||
|
@user_activity_id = params[:user_activity_id]
|
||||||
|
@is_in_course = params[:is_in_course]
|
||||||
|
@homework_common_id = params[:homework_common_id]
|
||||||
|
}
|
||||||
|
end
|
||||||
|
else
|
||||||
|
flash[:error] = feedback.errors.full_messages[0]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
render_403
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def add_brief_introdution
|
def add_brief_introdution
|
||||||
|
|
|
@ -2357,8 +2357,10 @@ module ApplicationHelper
|
||||||
if work.nil?
|
if work.nil?
|
||||||
link_to "提交作品", new_student_work_path(:homework => homework.id),:class => 'c_blue'
|
link_to "提交作品", new_student_work_path(:homework => homework.id),:class => 'c_blue'
|
||||||
else
|
else
|
||||||
if homework.homework_detail_manual && homework.homework_detail_manual.comment_status != 1 #匿评作业,且作业状态不是在开启匿评之前
|
if homework.homework_detail_manual && homework.homework_detail_manual.comment_status == 2 #匿评作业,且作业状态不是在开启匿评之前
|
||||||
link_to "作品匿评", student_work_index_path(:homework => homework.id), :class => 'c_blue', :title => "开启匿评后不可修改作品"
|
link_to "作品匿评", student_work_index_path(:homework => homework.id), :class => 'c_blue', :title => "开启匿评后不可修改作品"
|
||||||
|
elsif homework.homework_detail_manual && homework.homework_detail_manual.comment_status == 3
|
||||||
|
link_to "匿评结束", student_work_index_path(:homework => homework.id), :class => 'c_blue', :title => "匿评已结束"
|
||||||
elsif homework.homework_type == 2 #编程作业不能修改作品
|
elsif homework.homework_type == 2 #编程作业不能修改作品
|
||||||
link_to "修改作品", new_student_work_path(:homework => homework.id),:class => 'c_blue'
|
link_to "修改作品", new_student_work_path(:homework => homework.id),:class => 'c_blue'
|
||||||
else
|
else
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
module BlogCommentsHelper
|
||||||
|
end
|
|
@ -0,0 +1,2 @@
|
||||||
|
module BlogsHelper
|
||||||
|
end
|
|
@ -7,4 +7,5 @@ module OwnerTypeHelper
|
||||||
BID = 6
|
BID = 6
|
||||||
JOURNALSFORMESSAGE = 7
|
JOURNALSFORMESSAGE = 7
|
||||||
HOMEWORKCOMMON = 8
|
HOMEWORKCOMMON = 8
|
||||||
|
BLOGCOMMENT=9
|
||||||
end
|
end
|
|
@ -0,0 +1,16 @@
|
||||||
|
class Blog < ActiveRecord::Base
|
||||||
|
# attr_accessible :title, :body
|
||||||
|
include Redmine::SafeAttributes
|
||||||
|
belongs_to :user
|
||||||
|
has_many :articles, :class_name => 'BlogComment', :conditions => "#{BlogComment.table_name}.parent_id IS NULL ", :order => "#{BlogComment.table_name}.created_on DESC"
|
||||||
|
has_many :blog_comments, :dependent => :destroy, :order => "#{BlogComment.table_name}.created_on DESC"
|
||||||
|
belongs_to :last_comment, :class_name => 'BlogComment', :foreign_key => :last_comment_id
|
||||||
|
acts_as_tree :dependent => :nullify
|
||||||
|
#acts_as_list :scope => '(user_id = #{user_id} AND parent_id #{user_id ? = "#{parent_id}" : "IS NULL"})'
|
||||||
|
acts_as_watchable
|
||||||
|
|
||||||
|
validates :name, presence: true, length: {maximum: 30}
|
||||||
|
validates :description, length: {maximum: 255}
|
||||||
|
|
||||||
|
safe_attributes 'name', 'description'
|
||||||
|
end
|
|
@ -0,0 +1,24 @@
|
||||||
|
class BlogComment < ActiveRecord::Base
|
||||||
|
# attr_accessible :title, :body
|
||||||
|
include Redmine::SafeAttributes
|
||||||
|
belongs_to :blog
|
||||||
|
belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'
|
||||||
|
|
||||||
|
acts_as_tree :counter_cache => :comments_count, :order => "#{BlogComment.table_name}.sticky desc ,#{BlogComment.table_name}.created_on ASC"
|
||||||
|
acts_as_attachable
|
||||||
|
belongs_to :last_reply, :class_name => 'BlogComment', :foreign_key => 'last_comment_id'
|
||||||
|
|
||||||
|
acts_as_watchable
|
||||||
|
|
||||||
|
validates_presence_of :title, :content
|
||||||
|
validates_length_of :title, :maximum => 255
|
||||||
|
#validate :cannot_reply_to_locked_comment, :on => :create
|
||||||
|
safe_attributes 'title', 'content',"sticky", "locked"
|
||||||
|
|
||||||
|
def deleted_attach_able_by? user
|
||||||
|
(user && user.logged? && (self.author == user) ) || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def project
|
||||||
|
end
|
||||||
|
end
|
|
@ -18,8 +18,10 @@ class CourseMessage < ActiveRecord::Base
|
||||||
after_create :add_user_message
|
after_create :add_user_message
|
||||||
|
|
||||||
def add_user_message
|
def add_user_message
|
||||||
if MessageAll.where("message_type = '#{self.class.to_s}' and message_id = '#{self.id}'").first.nil?
|
#unless self.course_message_type == 'JoinCourseRequest'
|
||||||
self.message_alls << MessageAll.new(:user_id => self.user_id)
|
if MessageAll.where("message_type = '#{self.class.to_s}' and message_id = '#{self.id}'").first.nil?
|
||||||
end
|
self.message_alls << MessageAll.new(:user_id => self.user_id)
|
||||||
|
end
|
||||||
|
#end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -12,6 +12,7 @@ class HomeworkCommon < ActiveRecord::Base
|
||||||
has_many :homework_tests, :dependent => :destroy
|
has_many :homework_tests, :dependent => :destroy
|
||||||
has_many :student_works, :dependent => :destroy, :conditions => "is_test=0"
|
has_many :student_works, :dependent => :destroy, :conditions => "is_test=0"
|
||||||
has_many :student_works_evaluation_distributions, :through => :student_works #一个作业的分配的匿评列表
|
has_many :student_works_evaluation_distributions, :through => :student_works #一个作业的分配的匿评列表
|
||||||
|
has_many :journals_for_messages, :as => :jour, :dependent => :destroy
|
||||||
has_many :acts, :class_name => 'Activity', :as => :act, :dependent => :destroy #用户活动
|
has_many :acts, :class_name => 'Activity', :as => :act, :dependent => :destroy #用户活动
|
||||||
# 课程动态
|
# 课程动态
|
||||||
has_many :course_acts, :class_name => 'CourseActivity',:as =>:course_act ,:dependent => :destroy
|
has_many :course_acts, :class_name => 'CourseActivity',:as =>:course_act ,:dependent => :destroy
|
||||||
|
@ -60,6 +61,18 @@ class HomeworkCommon < ActiveRecord::Base
|
||||||
self.homework_type == 2 && self.homework_detail_programing
|
self.homework_type == 2 && self.homework_detail_programing
|
||||||
end
|
end
|
||||||
|
|
||||||
|
###添加回复
|
||||||
|
def self.add_homework_jour(user, notes, id , options = {})
|
||||||
|
homework = HomeworkCommon.find(id)
|
||||||
|
if options.count == 0
|
||||||
|
jfm = homework.journals_for_messages.build(:user_id => user.id, :notes => notes, :reply_id => 0)
|
||||||
|
else
|
||||||
|
jfm = homework.journals_for_messages.build(options)
|
||||||
|
end
|
||||||
|
jfm.save
|
||||||
|
jfm
|
||||||
|
end
|
||||||
|
|
||||||
delegate :language_name, :language, :to => :homework_detail_programing
|
delegate :language_name, :language, :to => :homework_detail_programing
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -1009,6 +1009,16 @@ class Mailer < ActionMailer::Base
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def join_course_request(course, user, role)
|
||||||
|
@receive = User.find(course.tea_id)
|
||||||
|
@course = course
|
||||||
|
@user = user
|
||||||
|
@role = role
|
||||||
|
@subject = "#{@user.show_name} #{l(:label_apply_join_course)} #{@course.name} "
|
||||||
|
mail :to => @receive.mail,
|
||||||
|
:subject => @subject
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
private
|
private
|
||||||
|
@ -1066,4 +1076,5 @@ class Mailer < ActionMailer::Base
|
||||||
1.upto(len) { |i| newpass << chars[rand(chars.size-1)] }
|
1.upto(len) { |i| newpass << chars[rand(chars.size-1)] }
|
||||||
return newpass
|
return newpass
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -8,6 +8,8 @@ class StudentWork < ActiveRecord::Base
|
||||||
has_many :student_works_scores, :dependent => :destroy
|
has_many :student_works_scores, :dependent => :destroy
|
||||||
belongs_to :project
|
belongs_to :project
|
||||||
has_many :student_work_tests, order: 'id desc'
|
has_many :student_work_tests, order: 'id desc'
|
||||||
|
# course's message
|
||||||
|
has_many :course_messages, :class_name =>'CourseMessage', :as => :course_message, :dependent => :destroy
|
||||||
|
|
||||||
before_destroy :delete_praise
|
before_destroy :delete_praise
|
||||||
before_save :set_program_score, :set_src
|
before_save :set_program_score, :set_src
|
||||||
|
@ -138,10 +140,10 @@ class StudentWork < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# status == 0 : delay
|
||||||
def act_as_message
|
def act_as_message
|
||||||
if self.created_at > self.homework_common.end_time + 1
|
if self.created_at > self.homework_common.end_time + 1
|
||||||
CourseMessage.create(:user_id => self.user_id, :course_id => self.homework_common.course_id,
|
self.course_messages << CourseMessage.new(:user_id => self.user_id, :course_id => self.homework_common.course_id, :viewed => false, :status => false)
|
||||||
:course_message_id => self.id, :course_message_type => 'NoEvaluation',:viewed => false)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -93,6 +93,7 @@ class User < Principal
|
||||||
has_many :changesets, :dependent => :nullify
|
has_many :changesets, :dependent => :nullify
|
||||||
has_one :preference, :dependent => :destroy, :class_name => 'UserPreference'
|
has_one :preference, :dependent => :destroy, :class_name => 'UserPreference'
|
||||||
has_one :rss_token, :class_name => 'Token', :conditions => "action='feeds'"
|
has_one :rss_token, :class_name => 'Token', :conditions => "action='feeds'"
|
||||||
|
has_one :blog, :class_name => 'Blog', :foreign_key => "author_id"
|
||||||
has_one :api_token, :class_name => 'Token', :conditions => "action='api'"
|
has_one :api_token, :class_name => 'Token', :conditions => "action='api'"
|
||||||
belongs_to :auth_source
|
belongs_to :auth_source
|
||||||
belongs_to :ucourse, :class_name => 'Course', :foreign_key => :id #huang
|
belongs_to :ucourse, :class_name => 'Course', :foreign_key => :id #huang
|
||||||
|
@ -255,6 +256,18 @@ class User < Principal
|
||||||
# count = self.journals_for_messages(:conditions => ["status=? and is_readed = ? " ,1, 0]).count
|
# count = self.journals_for_messages(:conditions => ["status=? and is_readed = ? " ,1, 0]).count
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def blog
|
||||||
|
@blog = Blog.where("author_id = #{self.id}").all[0]
|
||||||
|
if @blog.nil?
|
||||||
|
#如果某个user的blog不存在,那么就创建一条,并且跳转
|
||||||
|
@blog = Blog.create(:name=>(User.find(self.id).realname),
|
||||||
|
:description=>'',
|
||||||
|
:author_id=>self.id)
|
||||||
|
@blog.save
|
||||||
|
end
|
||||||
|
@blog
|
||||||
|
end
|
||||||
|
|
||||||
# 查询指派给我的缺陷记录
|
# 查询指派给我的缺陷记录
|
||||||
def count_new_issue_assign_to
|
def count_new_issue_assign_to
|
||||||
self.issue_assigns
|
self.issue_assigns
|
||||||
|
|
|
@ -15,11 +15,11 @@ class CoursesService
|
||||||
page_no = params[:page] || 1
|
page_no = params[:page] || 1
|
||||||
if @school_id == "0" || @school_id.nil?
|
if @school_id == "0" || @school_id.nil?
|
||||||
@courses_all = Course.active.visible.
|
@courses_all = Course.active.visible.
|
||||||
joins("LEFT JOIN #{CourseStatus.table_name} ON #{Course.table_name}.id = #{CourseStatus.table_name}.course_id")
|
joins("LEFT JOIN #{CourseStatus.table_name} ON #{Course.table_name}.id = #{CourseStatus.table_name}.course_id")
|
||||||
else
|
else
|
||||||
@courses_all = Course.active.visible.
|
@courses_all = Course.active.visible.
|
||||||
joins("LEFT JOIN #{CourseStatus.table_name} ON #{Course.table_name}.id = #{CourseStatus.table_name}.course_id").
|
joins("LEFT JOIN #{CourseStatus.table_name} ON #{Course.table_name}.id = #{CourseStatus.table_name}.course_id").
|
||||||
where("#{Course.table_name}.school_id = ?", @school_id)
|
where("#{Course.table_name}.school_id = ?", @school_id)
|
||||||
end
|
end
|
||||||
@course_count = @courses_all.count
|
@course_count = @courses_all.count
|
||||||
@course_pages = Redmine::Pagination::Paginator.new @course_count, per_page_option,page_no
|
@course_pages = Redmine::Pagination::Paginator.new @course_count, per_page_option,page_no
|
||||||
|
@ -299,6 +299,8 @@ class CoursesService
|
||||||
#@state == 3 您已经加入了课程
|
#@state == 3 您已经加入了课程
|
||||||
#@state == 4 您加入的课程不存在
|
#@state == 4 您加入的课程不存在
|
||||||
#@state == 5 您还未登录
|
#@state == 5 您还未登录
|
||||||
|
#@state == 6 申请成功,请等待审核完毕
|
||||||
|
#@state == 7 您已经发送过申请了,请耐心等待
|
||||||
#@state 其他 未知错误,请稍后再试
|
#@state 其他 未知错误,请稍后再试
|
||||||
def join_course params,current_user
|
def join_course params,current_user
|
||||||
course = Course.find_by_id params[:object_id]
|
course = Course.find_by_id params[:object_id]
|
||||||
|
@ -307,18 +309,43 @@ class CoursesService
|
||||||
if course_endTime_timeout? course
|
if course_endTime_timeout? course
|
||||||
@state = 2
|
@state = 2
|
||||||
else
|
else
|
||||||
if current_user.member_of_course?(course)
|
if current_user.member_of_course?(course) #如果已经是成员
|
||||||
@state = 3
|
|
||||||
else
|
|
||||||
if params[:course_password] == course.password
|
if params[:course_password] == course.password
|
||||||
members = []
|
#如果加入角色为学生
|
||||||
members << Member.new(:role_ids => [10], :user_id => current_user.id)
|
if params[:role] == "10"
|
||||||
course.members << members
|
@state = 3
|
||||||
StudentsForCourse.create(:student_id => current_user.id, :course_id => params[:object_id])
|
elsif current_user.allowed_to?(:as_teacher,course)
|
||||||
@state = 0
|
@state = 3
|
||||||
|
else
|
||||||
|
Mailer.run.join_course_request(course, User.current, params[:role])
|
||||||
|
#如果加入角色为教师或者教辅
|
||||||
|
CourseMessage.create(:user_id => course.tea_id, :course_id => course.id, :viewed => false,:content=> params[:role],:course_message_id=>User.current.id,:course_message_type=>'JoinCourseRequest',:status=>0)
|
||||||
|
@state = 6
|
||||||
|
end
|
||||||
else
|
else
|
||||||
@state = 1
|
@state = 1
|
||||||
end
|
end
|
||||||
|
else
|
||||||
|
if params[:course_password] == course.password
|
||||||
|
if params[:role] == "10"
|
||||||
|
members = []
|
||||||
|
members << Member.new(:role_ids => [10], :user_id => current_user.id)
|
||||||
|
course.members << members
|
||||||
|
StudentsForCourse.create(:student_id => current_user.id, :course_id => params[:object_id])
|
||||||
|
@state = 0
|
||||||
|
else
|
||||||
|
#如果已经发送过消息了,那么就要给个提示
|
||||||
|
if CourseMessage.where("course_message_type = 'JoinCourseRequest' and user_id = #{course.tea_id} and content = #{params[:role]} and course_message_id = #{User.current.id} and course_id = #{course.id} and status = 0").count != 0
|
||||||
|
@state = 7
|
||||||
|
else
|
||||||
|
Mailer.run.join_course_request(course, User.current, params[:role])
|
||||||
|
CourseMessage.create(:user_id => course.tea_id, :course_id => course.id, :viewed => false,:content=> params[:role],:course_message_id=>User.current.id,:course_message_type=>'JoinCourseRequest',:status=>0)
|
||||||
|
@state = 6
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
@state = 1
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
@ -335,11 +362,11 @@ class CoursesService
|
||||||
if course.is_public != 0 || current_user.member_of_course?(course)
|
if course.is_public != 0 || current_user.member_of_course?(course)
|
||||||
bids = course.homework_commons.page(params[:page] || 1).per(20).order('created_at DESC')
|
bids = course.homework_commons.page(params[:page] || 1).per(20).order('created_at DESC')
|
||||||
bids = bids.like(params[:name]) if params[:name].present?
|
bids = bids.like(params[:name]) if params[:name].present?
|
||||||
homeworks = []
|
homeworks = []
|
||||||
bids.each do |bid|
|
bids.each do |bid|
|
||||||
homeworks << show_homework_info(course,bid,current_user,is_course_teacher(current_user,course))
|
homeworks << show_homework_info(course,bid,current_user,is_course_teacher(current_user,course))
|
||||||
end
|
end
|
||||||
homeworks
|
homeworks
|
||||||
else
|
else
|
||||||
raise '403'
|
raise '403'
|
||||||
end
|
end
|
||||||
|
@ -410,10 +437,10 @@ class CoursesService
|
||||||
#每个作业中学生最后提交的作业
|
#每个作业中学生最后提交的作业
|
||||||
homeworks = []
|
homeworks = []
|
||||||
course.homework_commons.each do |bid|
|
course.homework_commons.each do |bid|
|
||||||
homework_attach = bid.student_works.order('updated_at DESC').first
|
homework_attach = bid.student_works.order('updated_at DESC').first
|
||||||
unless homework_attach.nil?
|
unless homework_attach.nil?
|
||||||
homeworks << homework_attach
|
homeworks << homework_attach
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
unless homeworks.count == 0
|
unless homeworks.count == 0
|
||||||
homeworks.sort!{|order,newer| newer.updated_at <=> order.updated_at}
|
homeworks.sort!{|order,newer| newer.updated_at <=> order.updated_at}
|
||||||
|
@ -432,21 +459,21 @@ class CoursesService
|
||||||
result
|
result
|
||||||
end
|
end
|
||||||
|
|
||||||
# 课程课件
|
# 课程课件
|
||||||
def course_attachments params
|
def course_attachments params
|
||||||
result = []
|
result = []
|
||||||
course = Course.find(params[:course_id])
|
course = Course.find(params[:course_id])
|
||||||
attachments = course.attachments.order("created_on ")
|
attachments = course.attachments.order("created_on ")
|
||||||
if !params[:name].nil? && params[:name] != ""
|
if !params[:name].nil? && params[:name] != ""
|
||||||
attachments.each do |atta|
|
attachments.each do |atta|
|
||||||
result << atta if atta.filename.include?(params[:name])
|
result << atta if atta.filename.include?(params[:name])
|
||||||
|
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
result = attachments
|
result = attachments
|
||||||
end
|
end
|
||||||
result
|
result
|
||||||
end
|
end
|
||||||
|
|
||||||
# 课程学生列表
|
# 课程学生列表
|
||||||
def course_members params
|
def course_members params
|
||||||
|
@ -487,20 +514,20 @@ class CoursesService
|
||||||
end
|
end
|
||||||
|
|
||||||
def del_assitant_teacher params
|
def del_assitant_teacher params
|
||||||
member = Member.where("user_id = ? and course_id = ?",params[:user_id],params[:course_id])
|
member = Member.where("user_id = ? and course_id = ?",params[:user_id],params[:course_id])
|
||||||
member.each do |m|
|
member.each do |m|
|
||||||
m.destroy
|
m.destroy
|
||||||
end
|
end
|
||||||
user_admin = CourseInfos.where("user_id = ? and course_id = ?",params[:user_id], params[:course_id])
|
user_admin = CourseInfos.where("user_id = ? and course_id = ?",params[:user_id], params[:course_id])
|
||||||
if user_admin.size > 0
|
if user_admin.size > 0
|
||||||
user_admin.each do |user|
|
user_admin.each do |user|
|
||||||
user.destroy
|
user.destroy
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
joined = StudentsForCourse.where('student_id = ? and course_id = ?', params[:user_id],params[:course_id])
|
joined = StudentsForCourse.where('student_id = ? and course_id = ?', params[:user_id],params[:course_id])
|
||||||
joined.each do |join|
|
joined.each do |join|
|
||||||
join.delete
|
join.delete
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def create_course_notice params ,current_user
|
def create_course_notice params ,current_user
|
||||||
|
@ -569,11 +596,11 @@ class CoursesService
|
||||||
:open_anonymous_evaluation => open_anonymous_evaluation,
|
:open_anonymous_evaluation => open_anonymous_evaluation,
|
||||||
#:homework_for_anonymous_comments => homework_for_anonymous_comments,
|
#:homework_for_anonymous_comments => homework_for_anonymous_comments,
|
||||||
:created_on => bid.created_at,:deadline => bid.end_time,
|
:created_on => bid.created_at,:deadline => bid.end_time,
|
||||||
:homework_notsubmit_num => bid.course.members.count - bid.student_works.count,
|
:homework_notsubmit_num => bid.course.members.count - bid.student_works.count,
|
||||||
:homework_submit_num => bid.student_works.count,
|
:homework_submit_num => bid.student_works.count,
|
||||||
:homework_status_student => get_homework_status( bid),:homework_status_teacher => homework_status_desc( bid),
|
:homework_status_student => get_homework_status( bid),:homework_status_teacher => homework_status_desc( bid),
|
||||||
:student_evaluation_part => get_evaluation_part( bid ,3),
|
:student_evaluation_part => get_evaluation_part( bid ,3),
|
||||||
:ta_evaluation_part => get_evaluation_part( bid ,2),:homework_anony_type => bid.homework_type == 1 && !bid.homework_detail_manual.nil?}
|
:ta_evaluation_part => get_evaluation_part( bid ,2),:homework_anony_type => bid.homework_type == 1 && !bid.homework_detail_manual.nil?}
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -585,9 +612,9 @@ class CoursesService
|
||||||
homework_count = bid.homeworks.count #已提交的作业数量
|
homework_count = bid.homeworks.count #已提交的作业数量
|
||||||
student_questions_count = bid.journals_for_messages.where('m_parent_id IS NULL').count
|
student_questions_count = bid.journals_for_messages.where('m_parent_id IS NULL').count
|
||||||
description = bid.description
|
description = bid.description
|
||||||
#if is_course_teacher(User.current, course) && @bid.open_anonymous_evaluation == 1 && @bid.homeworks.count >= 2
|
#if is_course_teacher(User.current, course) && @bid.open_anonymous_evaluation == 1 && @bid.homeworks.count >= 2
|
||||||
state = bid.comment_status
|
state = bid.comment_status
|
||||||
#end
|
#end
|
||||||
open_anonymous_evaluation = bid.open_anonymous_evaluation
|
open_anonymous_evaluation = bid.open_anonymous_evaluation
|
||||||
{:course_name => course.name,:id => bid.id, :course_teacher => author, :homework_times => many_times, :homework_name => name, :homework_count => homework_count,:student_questions_count => student_questions_count,
|
{:course_name => course.name,:id => bid.id, :course_teacher => author, :homework_times => many_times, :homework_name => name, :homework_count => homework_count,:student_questions_count => student_questions_count,
|
||||||
:description => description, :homework_state => state,:open_anonymous_evaluation => open_anonymous_evaluation}
|
:description => description, :homework_state => state,:open_anonymous_evaluation => open_anonymous_evaluation}
|
||||||
|
@ -684,12 +711,12 @@ class CoursesService
|
||||||
latest_course_dynamics << {:time => latest_news.first.created_on }
|
latest_course_dynamics << {:time => latest_news.first.created_on }
|
||||||
end
|
end
|
||||||
# 课程讨论区
|
# 课程讨论区
|
||||||
latest_message = course.boards.first.topics.page(1).per(2)
|
latest_message = course.boards.first.topics.page(1).per(2)
|
||||||
unless latest_message.first.nil?
|
unless latest_message.first.nil?
|
||||||
topic_count = course.boards.nil? ? 0 : course.boards.first.topics.count
|
topic_count = course.boards.nil? ? 0 : course.boards.first.topics.count
|
||||||
topics = latest_message.all
|
topics = latest_message.all
|
||||||
latest_course_dynamics << {:time => latest_message.first.created_on}
|
latest_course_dynamics << {:time => latest_message.first.created_on}
|
||||||
end
|
end
|
||||||
# 课程资源
|
# 课程资源
|
||||||
# latest_attachment = course.attachments.order("created_on desc").page(1).per(2)
|
# latest_attachment = course.attachments.order("created_on desc").page(1).per(2)
|
||||||
# unless latest_attachment.first.nil?
|
# unless latest_attachment.first.nil?
|
||||||
|
@ -726,29 +753,29 @@ class CoursesService
|
||||||
unless active_students.empty?
|
unless active_students.empty?
|
||||||
latest_course_dynamics <<{:time=>"1970-01-01 0:0:0 +0800"}
|
latest_course_dynamics <<{:time=>"1970-01-01 0:0:0 +0800"}
|
||||||
end
|
end
|
||||||
latest_course_dynamic = latest_course_dynamics.first
|
latest_course_dynamic = latest_course_dynamics.first
|
||||||
unless latest_course_dynamic.nil?
|
unless latest_course_dynamic.nil?
|
||||||
result << {:course_name => course.name,
|
result << {:course_name => course.name,
|
||||||
:current_user_is_member => current_user.member_of_course?(course),
|
:current_user_is_member => current_user.member_of_course?(course),
|
||||||
:current_user_is_teacher => is_course_teacher(current_user,course),
|
:current_user_is_teacher => is_course_teacher(current_user,course),
|
||||||
:course_id => course.id,
|
:course_id => course.id,
|
||||||
:course_img_url => url_to_avatar(course),
|
:course_img_url => url_to_avatar(course),
|
||||||
:course_time => course.time,
|
:course_time => course.time,
|
||||||
:course_term => course.term,
|
:course_term => course.term,
|
||||||
:news_count => notices_count,
|
:news_count => notices_count,
|
||||||
:homework_count => homework_count,
|
:homework_count => homework_count,
|
||||||
:topic_count => topic_count,
|
:topic_count => topic_count,
|
||||||
:news => notices,
|
:news => notices,
|
||||||
:homeworks => homeworkss,
|
:homeworks => homeworkss,
|
||||||
:topics => topics,
|
:topics => topics,
|
||||||
:better_students => better_students,
|
:better_students => better_students,
|
||||||
:active_students => active_students,
|
:active_students => active_students,
|
||||||
:message => "",
|
:message => "",
|
||||||
:course_student_num=>course ? course.members.count : 0,
|
:course_student_num=>course ? course.members.count : 0,
|
||||||
#:time_from_now=> distance_of_time_in_words(Time.now, latest_course_dynamic[:time].to_time) << "前",
|
#:time_from_now=> distance_of_time_in_words(Time.now, latest_course_dynamic[:time].to_time) << "前",
|
||||||
:time_from_now=>time_from_now(latest_course_dynamic[:time].to_time), #.strftime('%Y-%m-%d %H:%M:%S').to_s,
|
:time_from_now=>time_from_now(latest_course_dynamic[:time].to_time), #.strftime('%Y-%m-%d %H:%M:%S').to_s,
|
||||||
:time=>latest_course_dynamic[:time].to_time}
|
:time=>latest_course_dynamic[:time].to_time}
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
#返回数组集合
|
#返回数组集合
|
||||||
|
@ -767,9 +794,9 @@ class CoursesService
|
||||||
sql = "select users.*,ROUND(sum(student_works.final_score),2) score from student_works left outer join users on student_works.user_id = users.id" <<
|
sql = "select users.*,ROUND(sum(student_works.final_score),2) score from student_works left outer join users on student_works.user_id = users.id" <<
|
||||||
" where homework_common_id in ( select id from homework_commons where homework_commons.course_id = #{params[:course_id]}) GROUP BY student_works.user_id ORDER BY score desc limit #{page*10},10"
|
" where homework_common_id in ( select id from homework_commons where homework_commons.course_id = #{params[:course_id]}) GROUP BY student_works.user_id ORDER BY score desc limit #{page*10},10"
|
||||||
sql_count = " select count(distinct(student_works.user_id) ) " <<
|
sql_count = " select count(distinct(student_works.user_id) ) " <<
|
||||||
" from student_works left outer join users on student_works.user_id = users.id " <<
|
" from student_works left outer join users on student_works.user_id = users.id " <<
|
||||||
" where homework_common_id in " <<
|
" where homework_common_id in " <<
|
||||||
" ( select id from homework_commons where homework_commons.course_id = #{params[:course_id]}) "
|
" ( select id from homework_commons where homework_commons.course_id = #{params[:course_id]}) "
|
||||||
max_size = ActiveRecord::Base.connection().select_value(sql_count)
|
max_size = ActiveRecord::Base.connection().select_value(sql_count)
|
||||||
user_list = User.find_by_sql(sql)
|
user_list = User.find_by_sql(sql)
|
||||||
else
|
else
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
<div class="mt10 fl" style="width: 600px">
|
||||||
|
<% for attachment in attachments %>
|
||||||
|
<!--<p style="width: 100%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">-->
|
||||||
|
<!--<div style="max-width:55%;white-space: nowrap; overflow: hidden; text-overflow: ellipsis;float: left;">-->
|
||||||
|
<!--<span title="<%#= attachment.filename%>" id = "attachment_">-->
|
||||||
|
<% if options[:length] %>
|
||||||
|
<span class="pic_files fl "></span>
|
||||||
|
<%= link_to_short_attachment attachment, :class => 'fl FilesName02', :download => true,:length => options[:length] -%>
|
||||||
|
<a class="fl FilesName02"> (<%= number_to_human_size attachment.filesize , :precision => 0 %>)</a>
|
||||||
|
<% if options[:deletable] %>
|
||||||
|
<%#= link_to image_tag('delete.png'), attachment_path(attachment),
|
||||||
|
:data => {:confirm => l(:text_are_you_sure)},
|
||||||
|
:method => :delete,
|
||||||
|
:class => 'delete',
|
||||||
|
#:remote => true,
|
||||||
|
#:id => "attachments_" + attachment.id.to_s,
|
||||||
|
:title => l(:button_delete) %>
|
||||||
|
<span class="pic_del fl "> <a href="<%=attachment_path(attachment) %>" onclick="confirm(<%=l(:text_are_you_sure) %>)" data-method="delete"> </a></span>
|
||||||
|
<% end %>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<% else %>
|
||||||
|
<span class="pic_files fl "></span>
|
||||||
|
<%= link_to_short_attachment attachment, :class => 'fl FilesName02', :download => true, :length => 45 -%>
|
||||||
|
<a href="javascript:void(0);" class="fl FilesName02"> (<%= number_to_human_size attachment.filesize , :precision => 0 %>)</a>
|
||||||
|
<% if options[:deletable] %>
|
||||||
|
<a href="<%=attachment_path(attachment) %>" onclick="confirm(<%=l(:text_are_you_sure) %>)" data-method="delete"> <span class="pic_del fl "></span> </a>
|
||||||
|
<% end %>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
<% if defined?(thumbnails) && thumbnails %>
|
||||||
|
<% images = attachments.select(&:thumbnailable?) %>
|
||||||
|
<% if images.any? %>
|
||||||
|
<div class="pro_pic mb10" width="100" height="73">
|
||||||
|
<% images.each do |attachment| %>
|
||||||
|
<div><%= thumbnail_tag(attachment) %></div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
|
@ -0,0 +1,78 @@
|
||||||
|
<style type="text/css">
|
||||||
|
input.is_public,input.is_public_checkbox{height:12px;}
|
||||||
|
input.is_public_checkbox{margin-left:4px;margin-right:4px;}
|
||||||
|
</style>
|
||||||
|
<div class="fl">
|
||||||
|
<span id="attachments_fields" xmlns="http://www.w3.org/1999/html">
|
||||||
|
<% if defined?(container) && container && container.saved_attachments %>
|
||||||
|
<% container.attachments.each_with_index do |attachment, i| %>
|
||||||
|
<span id="attachments_p<%= i %>" class="attachment">
|
||||||
|
<%= text_field_tag("attachments[p#{i}][filename]", attachment.filename, :class => 'filename readonly', :readonly => 'readonly') %><%= text_field_tag("attachments[p#{i}][description]", attachment.description, :maxlength => 254, :placeholder => l(:label_optional_description), :class => 'description', :style => "display: inline-block;") %><span class="ispublic-label"><%= l(:field_is_public) %>:</span>
|
||||||
|
<%= check_box_tag("attachments[p#{i}][is_public_checkbox]", attachment.is_public, attachment.is_public == 1 ? true : false, :class => 'is_public') %>
|
||||||
|
<%= if attachment.id.nil?
|
||||||
|
#待补充代码
|
||||||
|
else
|
||||||
|
link_to(' '.html_safe, attachment_path(attachment, :attachment_id => "p#{i}", :format => 'js'), :method => 'delete', :remote => true, :class => 'remove-upload')
|
||||||
|
end
|
||||||
|
%>
|
||||||
|
<%#= render :partial => 'tags/tag', :locals => {:obj => attachment, :object_flag => "6"} %>
|
||||||
|
|
||||||
|
<%= hidden_field_tag "attachments[p#{i}][token]", "#{attachment.token}" %>
|
||||||
|
</span>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<% end %>
|
||||||
|
<% container.saved_attachments.each_with_index do |attachment, i| %>
|
||||||
|
<span id="attachments_p<%= i %>" class="attachment">
|
||||||
|
<%= text_field_tag("attachments[p#{i}][filename]", attachment.filename, :class => 'filename readonly', :readonly => 'readonly') %>
|
||||||
|
<%= text_field_tag("attachments[p#{i}][description]", attachment.description, :maxlength => 254, :placeholder => l(:label_optional_description), :class => 'description', :style => "display: inline-block;") %>
|
||||||
|
<span class="ispublic-label"><%= l(:field_is_public) %>:</span>
|
||||||
|
<%= check_box_tag("attachments[p#{i}][is_public_checkbox]", attachment.is_public, attachment.is_public == 1 ? true : false, :class => 'is_public') %>
|
||||||
|
<%= if attachment.id.nil?
|
||||||
|
#待补充代码
|
||||||
|
else
|
||||||
|
link_to(' '.html_safe, attachment_path(attachment, :attachment_id => "p#{i}", :format => 'js'), :method => 'delete', :remote => true, :class => 'remove-upload')
|
||||||
|
end
|
||||||
|
%>
|
||||||
|
<%#= render :partial => 'tags/tag', :locals => {:obj => attachment, :object_flag => "6"} %>
|
||||||
|
|
||||||
|
<%= hidden_field_tag "attachments[p#{i}][token]", "#{attachment.token}" %>
|
||||||
|
</span>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
</span>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<span class="add_attachment" style="font-weight:normal;">
|
||||||
|
<%#= button_tag "浏览", :type=>"button", :onclick=>"CompatibleSend();" %>
|
||||||
|
<!--%= link_to image_tag(),"javascript:void(0)", :onclick => "_file.click()"%-->
|
||||||
|
<%#= button_tag "文件浏览", :type=>"button", :onclick=>"$('#_file').click();",:onmouseover => 'this.focus()',:class => 'sub_btn' %>
|
||||||
|
<a href="javascript:void(0);" onclick="_file.click();" class="AnnexBtn fl mr15">上传附件</a>
|
||||||
|
<%= file_field_tag 'attachments[dummy][file]',
|
||||||
|
:id => '_file',
|
||||||
|
:class => 'file_selector',
|
||||||
|
:multiple => true,
|
||||||
|
:onchange => 'addInputFiles(this);',
|
||||||
|
:style => ie8? ? '' : 'display:none',
|
||||||
|
:data => {
|
||||||
|
:max_file_size => Setting.attachment_max_size.to_i.kilobytes,
|
||||||
|
:max_file_size_message => l(:error_attachment_too_big, :max_size => number_to_human_size(Setting.attachment_max_size.to_i.kilobytes)),
|
||||||
|
:max_concurrent_uploads => Redmine::Configuration['max_concurrent_ajax_uploads'].to_i,
|
||||||
|
:upload_path => uploads_path(:format => 'js', :project => container),
|
||||||
|
:description_placeholder => l(:label_optional_description),
|
||||||
|
:field_is_public => l(:field_is_public),
|
||||||
|
:are_you_sure => l(:text_are_you_sure),
|
||||||
|
:file_count => l(:label_file_count),
|
||||||
|
:delete_all_files => l(:text_are_you_sure_all)
|
||||||
|
} %>
|
||||||
|
<span id="upload_file_count">
|
||||||
|
<%= l(:label_no_file_uploaded) %>
|
||||||
|
</span>
|
||||||
|
(<%= l(:label_max_size) %>:
|
||||||
|
<%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<% content_for :header_tags do %>
|
||||||
|
<%= javascript_include_tag 'attachments' %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg' ,'blog' %>
|
||||||
|
<div class="resources mt10">
|
||||||
|
<div id="new_course_topic">
|
||||||
|
<div class="homepagePostBrief c_grey">
|
||||||
|
<div>
|
||||||
|
<input type="text" value="<%= article.title%>" name="blog_comment[title]" id="message_subject" class="InputBox w713" style="width: 720px !important;" maxlength="255" onkeyup="regexTopicSubject();" placeholder="发布文章,请先输入文章标题" " />
|
||||||
|
<p id="subjectmsg"></p>
|
||||||
|
</div>
|
||||||
|
<div id="topic_editor" style="display: block;">
|
||||||
|
<%if User.current.id == user.id%>
|
||||||
|
<div class="mt10">
|
||||||
|
<%= f.check_box :sticky%>
|
||||||
|
<%= label_tag 'message_sticky', l(:label_board_sticky) %>
|
||||||
|
<%= f.check_box :locked%>
|
||||||
|
<%= label_tag 'message_locked', l(:label_board_locked) %>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
<div class="mt10">
|
||||||
|
<div id="message_quote" class="wiki" style="width: 92%;word-break: break-all;word-wrap: break-word;margin-left: 40px;"></div>
|
||||||
|
<%= text_area :quote,:quote,:style => 'display:none' %>
|
||||||
|
<%= hidden_field_tag :asset_id,params[:asset_id],:required => false,:style => 'display:none' %>
|
||||||
|
|
||||||
|
<%= f.kindeditor :content,:editor_id => 'message_content_editor',
|
||||||
|
:owner_id => article.nil? ? 0: article.id,
|
||||||
|
:owner_type => OwnerTypeHelper::BLOGCOMMENT,
|
||||||
|
:width => '100%',
|
||||||
|
:height => 300,
|
||||||
|
:minHeight=>300,
|
||||||
|
:class => 'talk_text fl',
|
||||||
|
:input_html => { :id => 'message_content',
|
||||||
|
:class => 'talk_text fl',
|
||||||
|
:maxlength => 5000 }%>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<p id="message_content_span"></p>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="mt10">
|
||||||
|
<div class="fl" id="topic_attachments">
|
||||||
|
<%= render :partial => 'blog_comments/blog_attachments', :locals => {:container => article} %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="mt5">
|
||||||
|
<a href="javascript:void(0);" class="BlueCirBtnMini fr" onclick="submit_article();">确定</a>
|
||||||
|
<span class="fr mr10 mt3">或</span>
|
||||||
|
<a href="<%= user_blog_blog_comment_path(:user_id=>article.author.id,:blog_id=>article.blog_id,:id=>article.id)%>" class="fr mr10 mt3" >取消</a>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -0,0 +1,62 @@
|
||||||
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg' ,'blog' %>
|
||||||
|
<div class="resources mt10">
|
||||||
|
<div id="new_course_topic">
|
||||||
|
<div class="homepagePostBrief c_grey">
|
||||||
|
<div>
|
||||||
|
<input type="text" name="blog_comment[title]" id="message_subject" class="InputBox w713" style="width: 720px !important;" maxlength="255" onfocus="$('#topic_editor').show()" onkeyup="regexTopicSubject();" placeholder="发布文章,请先输入文章标题" " >
|
||||||
|
<p id="subjectmsg"></p>
|
||||||
|
</div>
|
||||||
|
<div id="topic_editor" style="display: none;">
|
||||||
|
<%if User.current.id == user.id%>
|
||||||
|
<div class="mt10">
|
||||||
|
<%= f.check_box :sticky%>
|
||||||
|
<%= label_tag 'message_sticky', l(:label_board_sticky) %>
|
||||||
|
<%= f.check_box :locked%>
|
||||||
|
<%= label_tag 'message_locked', l(:label_board_locked) %>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
<div class="mt10">
|
||||||
|
<div id="message_quote" class="wiki" style="width: 92%;word-break: break-all;word-wrap: break-word;margin-left: 40px;"></div>
|
||||||
|
<%= text_area :quote,:quote,:style => 'display:none' %>
|
||||||
|
<%= hidden_field_tag :asset_id,params[:asset_id],:required => false,:style => 'display:none' %>
|
||||||
|
|
||||||
|
<%= f.kindeditor :content, :editor_id => 'message_content_editor',
|
||||||
|
:owner_id => article.nil? ? 0: article.id,
|
||||||
|
:owner_type => OwnerTypeHelper::BLOGCOMMENT,
|
||||||
|
:width => '100%',
|
||||||
|
:height => 300,
|
||||||
|
:minHeight=>300,
|
||||||
|
:class => 'talk_text fl',
|
||||||
|
:input_html => { :id => 'message_content',
|
||||||
|
:class => 'talk_text fl',
|
||||||
|
:maxlength => 5000 }%>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<p id="message_content_span"></p>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="mt10">
|
||||||
|
<div class="fl" id="topic_attachments">
|
||||||
|
<%= render :partial => 'blog_comments/blog_attachments', :locals => {:container => article} %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="mt5">
|
||||||
|
<a href="javascript:void(0);" class="BlueCirBtnMini fr" onclick="submit_article();">确定</a>
|
||||||
|
<span class="fr mr10 mt3">或</span>
|
||||||
|
<a href="javascript:void(0);" class="fr mr10 mt3" onclick="reset_article();">取消</a>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<%#= render :partial => 'course_new_topic', :locals => {:f => f, :topic => @message} %>
|
||||||
|
<!--<li>
|
||||||
|
<div class="ml55 fl" nhname="toolbar_container"></div>
|
||||||
|
<a href="javascript:void(0);" nhname="cancelbtn" class="grey_btn fr ml10"><%#= l(:button_cancel) %></a>
|
||||||
|
<a href="javascript:void(0);" nhname="submitbtn" class="blue_btn fr " style="margin-left: 55px">
|
||||||
|
<%#= l(:button_submit)%>
|
||||||
|
</a>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</li>-->
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -0,0 +1,35 @@
|
||||||
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg' %>
|
||||||
|
<li>
|
||||||
|
<div style="display: none ;" class="fl"><label><span class="c_red">*</span> <%= l(:field_subject) %> :</label></div>
|
||||||
|
<div style="display: none;"><%= f.text_field :title, { size: 60, id: "message_subject",:class=>"talk_input w585 fl" }.merge({ hidden: "hidden"}) %></div>
|
||||||
|
|
||||||
|
<div class="cl"></div>
|
||||||
|
</li>
|
||||||
|
<li class="ml60 mb5">
|
||||||
|
<div class="cl"></div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<div id="message_quote" class="wiki" style="width: 92%;word-break: break-all;word-wrap: break-word;margin-left: 40px;"></div>
|
||||||
|
<!--<label class="fl" >
|
||||||
|
<span class="c_red">*</span>
|
||||||
|
<%#= l(:field_description) %> :
|
||||||
|
</label>-->
|
||||||
|
<%= text_area :quote,:quote,:style => 'display:none' %>
|
||||||
|
<%= hidden_field_tag :asset_id,params[:asset_id],:required => false,:style => 'display:none' %>
|
||||||
|
<input type="hidden" name="blog_comment[title]" value="RE:<%= article.title%>">
|
||||||
|
<input type="hidden" name="blog_comment[sticky]" value="0">
|
||||||
|
<input type="hidden" name="blog_comment[locked]" value="0">
|
||||||
|
<%= f.kindeditor :content, :editor_id => 'message_content_editor',
|
||||||
|
:width => '99%',
|
||||||
|
:height => 100,
|
||||||
|
:minHeight=>100,
|
||||||
|
:input_html => { :id => 'message_content',
|
||||||
|
:class => 'talk_text fl',
|
||||||
|
:maxlength => 5000 }%>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<p id="message_content_span"></p>
|
||||||
|
</li>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<li >
|
||||||
|
<div class="cl"></div>
|
||||||
|
</li>
|
|
@ -0,0 +1,31 @@
|
||||||
|
<style type="text/css">
|
||||||
|
/*回复框*/
|
||||||
|
.ReplyToMessageInputContainer .ke-toolbar{display:none;width:400px;border:none;background:none;padding:0px 0px;}
|
||||||
|
.ReplyToMessageInputContainer .ke-toolbar-icon{line-height:26px;font-size:14px;padding-left:26px;}
|
||||||
|
.ReplyToMessageInputContainer .ke-toolbar-icon-url{background-image:url( /images/public_icon.png )}
|
||||||
|
.ReplyToMessageInputContainer .ke-outline{padding:0px 0px;line-height:26px;font-size:14px;}
|
||||||
|
.ReplyToMessageInputContainer .ke-icon-emoticons{background-position:0px -671px;width:50px;height:26px;}
|
||||||
|
.ReplyToMessageInputContainer .ke-icon-emoticons:hover{background-position:-79px -671px;width:50px;height:26px;}
|
||||||
|
.ReplyToMessageInputContainer .ke-outline{border:none;}
|
||||||
|
.ReplyToMessageInputContainer .ke-inline-block{display: none;}
|
||||||
|
.ReplyToMessageInputContainer .ke-container{float:left;}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<div class="ReplyToMessageContainer borderBottomNone"id="reply_to_message_<%= reply.id%>">
|
||||||
|
<div class="homepagePostReplyPortrait mr15 imageFuzzy" id="reply_image_<%= reply.id%>"><%= link_to image_tag(url_to_avatar(User.current), :width => "33", :height => "33"), user_path(User.current), :alt => "用户头像" %></div>
|
||||||
|
<div class="ReplyToMessageInputContainer mb10">
|
||||||
|
<div nhname='new_message_<%= reply.id%>'>
|
||||||
|
<%= form_for @blog_comment, :as => :reply, :url => {:controller => 'blog_comments',:action => 'reply', :id => @blogComment.id}, :html => {:multipart => true, :id => 'new_form'} do |f| %>
|
||||||
|
<input type="hidden" name="quote[quote]" id="quote_quote">
|
||||||
|
<input type="hidden" name="blog_comment[title]" id="reply_subject">
|
||||||
|
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='new_message_textarea_<%= reply.id%>' name="blog_comment[content]"></textarea>
|
||||||
|
<div nhname='toolbar_container_<%= reply.id%>' style="float:left; margin-left: 5px; padding-top:3px;"></div>
|
||||||
|
<a id="new_message_submit_btn_<%= reply.id%>" href="javascript:void(0)" class="blue_n_btn fr" style="display:none;margin-top:6px;">发送</a>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<p nhname='contentmsg_<%= reply.id%>'></p>
|
||||||
|
<% end%>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
|
@ -0,0 +1,6 @@
|
||||||
|
<% if User.current.logged? && User.current.id == @user.id %>
|
||||||
|
<%= form_for @article, :url =>{:controller=>'blog_comments',:action => 'update',:user_id=>@user.id , :blog_id => @article.id},:method=>'PUT',
|
||||||
|
:html => {:nhname=>'form',:multipart => true, :id => 'message-form'} do |f| %>
|
||||||
|
<%= render :partial => 'blog_comments/edit', :locals => {:f => f, :article => @article, :edit_mode => true, :user => @user} %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
|
@ -0,0 +1,10 @@
|
||||||
|
if($("#reply_message_<%= @blogComment.id%>").length > 0) {
|
||||||
|
$("#reply_message_<%= @blogComment.id%>").replaceWith("<%= escape_javascript(render :partial => 'simple_ke_reply_form', :locals => {:reply => @blogComment,:temp =>@temp,:subject =>@subject}) %>");
|
||||||
|
$(function(){
|
||||||
|
$('#reply_subject').val("<%= raw escape_javascript(@subject) %>");
|
||||||
|
$('#quote_quote').val("<%= raw escape_javascript(@temp.content.html_safe) %>");
|
||||||
|
init_activity_KindEditor_data(<%= @blogComment.id%>,null,"85%");
|
||||||
|
});
|
||||||
|
}else if($("#reply_to_message_<%= @blogComment.id%>").length >0) {
|
||||||
|
$("#reply_to_message_<%= @blogComment.id%>").replaceWith("<p id='reply_message_<%= @blogComment.id%>'></p>");
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
$("#user_activity_<%= @user_activity_id%>").replaceWith("<%= escape_javascript(render :partial => 'blogs/article', :locals => {:activity => @article,:user_activity_id =>@user_activity_id,:first_user_activity =>@first_user_activity,:page => @page}) %>");
|
||||||
|
init_activity_KindEditor_data(<%= @user_activity_id%>,"","87%");
|
|
@ -0,0 +1,175 @@
|
||||||
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg',"init_activity_KindEditor",'blog' %>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
$("#RSide").removeAttr("id");
|
||||||
|
$("#Container").css("width","1000px");
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
function expand_reply(container,btnid){
|
||||||
|
var target = $(container).children();
|
||||||
|
var btn = $(btnid);
|
||||||
|
if(btn.data('init')=='0'){
|
||||||
|
btn.data('init',1);
|
||||||
|
btn.html('收起回复');
|
||||||
|
target.show();
|
||||||
|
}else{
|
||||||
|
btn.data('init',0);
|
||||||
|
btn.html('展开更多');
|
||||||
|
target.hide();
|
||||||
|
target.eq(0).show();
|
||||||
|
target.eq(1).show();
|
||||||
|
target.eq(2).show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$(function() {
|
||||||
|
init_activity_KindEditor_data(<%= @article.id%>,null,"85%");
|
||||||
|
showNormalImage('message_description_<%= @article.id %>');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div class="postRightContainer ml10" onmouseover="$('#message_setting_<%= @article.id%>').show();" onmouseout="$('#message_setting_<%= @article.id%>').hide();">
|
||||||
|
<div class="postThemeContainer">
|
||||||
|
<div class="postDetailPortrait">
|
||||||
|
<%= link_to image_tag(url_to_avatar(@article.author),:width=>50,:height => 50,:alt=>'图像' ),user_path(@article.author) %>
|
||||||
|
</div>
|
||||||
|
<div class="postThemeWrap">
|
||||||
|
<% if @article.author.id == User.current.id%>
|
||||||
|
<div class="homepagePostSetting" id="message_setting_<%= @article.id%>" style="display: none">
|
||||||
|
<ul>
|
||||||
|
<li class="homepagePostSettingIcon">
|
||||||
|
<ul class="homepagePostSettiongText">
|
||||||
|
<li>
|
||||||
|
<%= link_to(
|
||||||
|
l(:button_edit),
|
||||||
|
{:action => 'edit', :id => @article.id},
|
||||||
|
:class => 'postOptionLink'
|
||||||
|
) if User.current && User.current.id == @article.author.id %>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<%= link_to(
|
||||||
|
l(:button_delete),
|
||||||
|
{:action => 'destroy', :id => @article.id},
|
||||||
|
:method => :delete,
|
||||||
|
:data => {:confirm => l(:text_are_you_sure)},
|
||||||
|
:class => 'postOptionLink'
|
||||||
|
) if User.current && User.current.id == @article.author.id %>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<%end%>
|
||||||
|
<div class="postDetailTitle fl">
|
||||||
|
<a href="javascript:void(0);" class="f14 linkGrey4 fb" style="overflow:hidden;">主题: <%= @article.title%></a>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
|
||||||
|
<div class="postDetailCreater">
|
||||||
|
<% if @article.try(:author).try(:realname) == ' ' %>
|
||||||
|
<%= link_to @article.try(:author), user_path(@article.author,:host=>Setting.host_user), :class => "linkBlue2", :target=> "_blank" %>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to @article.try(:author).try(:realname), user_path(@article.author,:host=>Setting.host_user), :class => "linkBlue2", :target=> "_blank" %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<div class="postDetailDate mb5"><%= format_time( @article.created_on)%></div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="memo-content upload_img break_word" id="message_description_<%= @article.id %>" style="word-break: break-all; word-wrap:break-word;margin-bottom: 0px !important;" >
|
||||||
|
<%= @article.content.html_safe%>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class=" fl" style="width: 600px">
|
||||||
|
<%#= link_to_attachments_course @topic, :author => false %>
|
||||||
|
<% if @article.attachments.any?%>
|
||||||
|
<% options = {:author => true, :deletable => false} %>
|
||||||
|
<%= render :partial => 'blog_comments/attachments_links', :locals => {:attachments => @article.attachments, :options => options, :is_float => true} %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<% count=0 %>
|
||||||
|
<% if @article.parent %>
|
||||||
|
<% count=@article.parent.children.count%>
|
||||||
|
<% else %>
|
||||||
|
<% count=@article.children.count%>
|
||||||
|
<% end %>
|
||||||
|
<div class="homepagePostReply">
|
||||||
|
<% unless count == 0 %>
|
||||||
|
<div class="homepagePostReplyBanner">
|
||||||
|
<div class="homepagePostReplyBannerCount">回复(<%=count %>)</div>
|
||||||
|
<div class="homepagePostReplyBannerTime"></div>
|
||||||
|
<!-- <div class="homepagePostReplyBannerMore">
|
||||||
|
<%# if @reply_count > 2%>
|
||||||
|
<a href="javascript:void(0);" class="replyGrey" id="reply_btn_<%#= @topic.id%>" onclick="expand_reply('#reply_div_<%#= @topic.id %>','#reply_btn_<%#= @topic.id%>')" data-count="<%#= @reply_count %>" data-init="0" >点击展开更多回复</a>
|
||||||
|
<%# end %>
|
||||||
|
</div>-->
|
||||||
|
</div>
|
||||||
|
<div class="" id="reply_div_<%= @article.id %>">
|
||||||
|
<%@article.children.reorder('created_on desc').each_with_index do |reply,i| %>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
showNormalImage('reply_message_description_<%= reply.id %>');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div class="homepagePostReplyContainer" onmouseover="$('#reply_edit_menu_<%= reply.id%>').show();" onmouseout="$('#reply_edit_menu_<%= reply.id%>').hide();">
|
||||||
|
<div class="homepagePostReplyPortrait">
|
||||||
|
<%= link_to image_tag(url_to_avatar(reply.author), :width => 33,:height => 33), user_path(reply.author) %>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostReplyDes">
|
||||||
|
<div class="homepagePostReplyPublisher">
|
||||||
|
<% if reply.try(:author).try(:realname) == ' ' %>
|
||||||
|
<%= link_to reply.try(:author), user_path(reply.author_id,:host=>Setting.host_user), :class => "newsBlue mr10 f14" %>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to reply.try(:author).try(:realname), user_path(reply.author_id,:host=>Setting.host_user), :class => "newsBlue mr10 f14" %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostReplyContent upload_img break_word" id="reply_message_description_<%= reply.id %>">
|
||||||
|
<%= reply.content.html_safe%>
|
||||||
|
</div>
|
||||||
|
<div style="margin-top: -7px; margin-bottom: 5px">
|
||||||
|
<%= format_time(reply.created_on) %>
|
||||||
|
<div class="fr" id="reply_edit_menu_<%= reply.id%>" style="display: none">
|
||||||
|
<%= link_to(
|
||||||
|
l(:button_reply),
|
||||||
|
{:controller => 'blog_comments',:action => 'quote',:user_id=>reply.author_id,:blog_id=>reply.blog_id, :id => reply.id},
|
||||||
|
:remote => true,
|
||||||
|
:method => 'get',
|
||||||
|
:class => 'fr newsBlue',
|
||||||
|
:title => l(:button_reply)) if !@article.locked? && User.current.logged? %>
|
||||||
|
<%= link_to(
|
||||||
|
l(:button_delete),
|
||||||
|
{:controller => 'blog_comments',:action => 'destroy', :id => reply.id},
|
||||||
|
:method => :delete,
|
||||||
|
:class => 'fr newsGrey mr10',
|
||||||
|
:data => {:confirm => l(:text_are_you_sure)},
|
||||||
|
:title => l(:button_delete)
|
||||||
|
) if reply.author.id == User.current.id %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p id="reply_message_<%= reply.id%>"></p>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<% end %>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<% if !@article.locked? && User.current.logged?%>
|
||||||
|
<div class="talkWrapMsg" nhname="about_talk_reply">
|
||||||
|
<em class="talkWrapArrow"></em>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="talkConIpt ml5 mb10" id="reply<%= @article.id %>">
|
||||||
|
<%= form_for :blog_comment, :url => {:action => 'reply',:controller => 'blog_comments',:user_id=>@article.author.id,:blog_id=>@article.blog_id, :id => @article.id}, :html => {:multipart => true, :id => 'message_form'} do |f| %>
|
||||||
|
<%= render :partial => 'blog_comments/reply_form', :locals => {:f => f,:user=>@user,:article=>@article} %>
|
||||||
|
<%= link_to l(:button_cancel), "javascript:void(0)", :onclick => 'canel_message_replay();', :class => " grey_btn fr c_white mt10 mr5" %>
|
||||||
|
<%= link_to l(:button_submit), "javascript:void(0)", :onclick => 'submit_message_replay();', :class => "blue_btn fr c_white mt10", :style => "margin-right: 5px;" %>
|
||||||
|
<% end %>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -0,0 +1,145 @@
|
||||||
|
<div class="resources mt10" id="user_activity_<%= user_activity_id%>">
|
||||||
|
<div class="homepagePostBrief">
|
||||||
|
<div class="homepagePostPortrait">
|
||||||
|
<%= link_to image_tag(url_to_avatar(activity.author), :width => "50", :height => "50"), user_path(activity.author_id,:host=>Setting.host_user), :alt => "用户头像" %>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostDes">
|
||||||
|
<div class="homepagePostTo break_word mt-4">
|
||||||
|
<% if activity.try(:author).try(:realname) == ' ' %>
|
||||||
|
<%= link_to activity.try(:author), user_path(activity.author_id,:host=>Setting.host_user), :class => "newsBlue mr15" %>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to activity.try(:author).try(:realname), user_path(activity.author_id,:host=>Setting.host_user), :class => "newsBlue mr15" %>
|
||||||
|
<% end %>
|
||||||
|
TO
|
||||||
|
<%= link_to activity.blog.name+" | 博客", user_blogs_path(:user_id=>activity.author_id,:host=>Setting.host_user), :class => "newsBlue ml15 mr5"%>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostTitle hidden m_w530 fl">
|
||||||
|
<% if activity.parent_id.nil? %> <!--+"(帖子标题)"-->
|
||||||
|
<%= link_to activity.title.to_s.html_safe, user_blog_blog_comment_path(:user_id=>activity.author_id, :blog_id=>activity.blog.id,:id=>activity), :class=> "postGrey" %>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to activity.title.subject.to_s.html_safe, user_blog_blog_comment_path(:user_id=>activity.author_id, :blog_id=>activity.blog.id,:id=>activity), :class=> "postGrey"%>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<% if activity.sticky == 1%>
|
||||||
|
<span class="sticky_btn_cir ml10">置顶</span>
|
||||||
|
<% end%>
|
||||||
|
<% if activity.locked%>
|
||||||
|
<span class="locked_btn_cir ml10 fl" title="已锁定"> </span>
|
||||||
|
<% end%>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="homepagePostDate">
|
||||||
|
发帖时间:<%= format_time(activity.created_on) %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="homepagePostIntro break_word upload_img list_style" id="activity_description_<%= user_activity_id%>">
|
||||||
|
<% if activity.parent_id.nil? %>
|
||||||
|
<%= activity.content.to_s.html_safe%>
|
||||||
|
<% else %>
|
||||||
|
<%= activity.parent.content.to_s.html_safe%>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class=" fl" style="width: 600px">
|
||||||
|
<% if activity.attachments.any?%>
|
||||||
|
<% options = {:author => true, :deletable => false } %>
|
||||||
|
<%= render :partial => 'blog_comments/attachments_links', :locals => {:attachments => activity.attachments, :options => options, :is_float => true} %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostSetting" id="act-<%= user_activity_id %>" style="visibility: hidden">
|
||||||
|
<ul>
|
||||||
|
<li class="homepagePostSettingIcon">
|
||||||
|
<ul class="homepagePostSettiongText">
|
||||||
|
<li><a href="javascript:void(0);" class="postOptionLink">编辑</a></li>
|
||||||
|
<li><a href="javascript:void(0);" class="postOptionLink">复制</a></li>
|
||||||
|
<li><a href="javascript:void(0);" class="postOptionLink">删除</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<% count=0 %>
|
||||||
|
<% if activity.parent %>
|
||||||
|
<% count=activity.parent.children.count%>
|
||||||
|
<% else %>
|
||||||
|
<% count=activity.children.count%>
|
||||||
|
<% end %>
|
||||||
|
<div class="homepagePostReply">
|
||||||
|
<div class="topBorder" style="display: <%= count<=0 && !activity.locked ? '': 'none' %>"></div>
|
||||||
|
<div class="homepagePostReplyBanner" style="display: <%= count>0 ? '': 'none' %>">
|
||||||
|
<div class="homepagePostReplyBannerCount" onclick="expand_reply_input('#reply_input_<%= user_activity_id %>');">回复(
|
||||||
|
<%= count %>
|
||||||
|
)</div>
|
||||||
|
<div class="homepagePostReplyBannerTime"><%#=format_date(activity.updated_on)%></div>
|
||||||
|
<%if count > 3 %>
|
||||||
|
<div class="homepagePostReplyBannerMore">
|
||||||
|
<a id="reply_btn_<%=user_activity_id%>" onclick="expand_reply('#reply_div_<%= user_activity_id %> li','#reply_btn_<%=user_activity_id%>')" data-count="<%= count %>" data-init="0" class=" replyGrey" href="javascript:void(0)" value="show_help" >
|
||||||
|
展开更多
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<% activity= activity.parent ? activity.parent : activity%>
|
||||||
|
<% replies_all_i = 0 %>
|
||||||
|
<% if count > 0 %>
|
||||||
|
<div class="" id="reply_div_<%= user_activity_id %>">
|
||||||
|
<ul>
|
||||||
|
<% activity.children.reorder("created_on desc").each do |reply|%>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
showNormalImage('reply_content_<%= reply.id %>');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<% replies_all_i=replies_all_i+1 %>
|
||||||
|
<li class="homepagePostReplyContainer" nhname="reply_rec" style="display:<%= replies_all_i>3 ? 'none' : '' %>">
|
||||||
|
<div class="homepagePostReplyPortrait">
|
||||||
|
<%= link_to image_tag(url_to_avatar(reply.author), :width => "33", :height => "33"), user_path(reply.author_id,:host=>Setting.host_user), :alt => "用户头像" %>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostReplyDes">
|
||||||
|
<div class="homepagePostReplyPublisher mt-4">
|
||||||
|
<% if reply.try(:author).try(:realname) == ' ' %>
|
||||||
|
<%= link_to reply.try(:author), user_path(reply.author_id,:host=>Setting.host_user), :class => "newsBlue mr10 f14" %>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to reply.try(:author).try(:realname), user_path(reply.author_id,:host=>Setting.host_user), :class => "newsBlue mr10 f14" %>
|
||||||
|
<% end %>
|
||||||
|
<%= format_time(reply.created_on) %>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostReplyContent break_word list_style upload_img" id="reply_content_<%= reply.id %>">
|
||||||
|
<%= reply.content.html_safe %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</li>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<% if !activity.locked? %>
|
||||||
|
<div class="homepagePostReplyContainer borderBottomNone minHeight48">
|
||||||
|
<div class="homepagePostReplyPortrait mr15 imageFuzzy" id="reply_image_<%= user_activity_id%>"><%= link_to image_tag(url_to_avatar(User.current), :width => "33", :height => "33"), user_path(activity.author_id), :alt => "用户头像" %></div>
|
||||||
|
<div class="homepagePostReplyInputContainer mb10">
|
||||||
|
<div nhname='new_message_<%= user_activity_id%>' style="display:none;">
|
||||||
|
<%= form_for('new_form',:url => {:controller=>'blog_comments',:action => 'reply', :id => activity.id, :blog_id => activity.blog.id, :user_id => activity.author_id},:method => "post",:remote=>true) do |f|%>
|
||||||
|
<input type="hidden" name="quote[quote]" value="">
|
||||||
|
<input type="hidden" name="blog_comment[sticky]" value="0">
|
||||||
|
<input type="hidden" name="blog_comment[locked]" value="0">
|
||||||
|
<input type="hidden" name="blog_comment[title]" value="RE:<%= activity.title%>">
|
||||||
|
<input type="hidden" name="user_activity_id" value="<%=user_activity_id%>">
|
||||||
|
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='new_message_textarea_<%= user_activity_id%>' name="blog_comment[content]"></textarea>
|
||||||
|
<div nhname='toolbar_container_<%= user_activity_id%>' style="float:left; margin-left: 5px; padding-top:3px;"></div>
|
||||||
|
<a id="new_message_submit_btn_<%= user_activity_id%>" href="javascript:void(0)" class="blue_n_btn fr" style="display:none;margin-top:6px;">发送</a>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<p nhname='contentmsg_<%= user_activity_id%>'></p>
|
||||||
|
<% end%>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
</div>
|
|
@ -0,0 +1,101 @@
|
||||||
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor", '/assets/kindeditor/pasteimg', "init_activity_KindEditor" %>
|
||||||
|
<style type="text/css">
|
||||||
|
/*回复框*/
|
||||||
|
.homepagePostReplyInputContainer .ke-toolbar {display: none; width: 400px; border: none; background: none; padding: 0px 0px;}
|
||||||
|
.homepagePostReplyInputContainer .ke-toolbar-icon {line-height: 26px; font-size: 14px; padding-left: 26px;}
|
||||||
|
.homepagePostReplyInputContainer .ke-toolbar-icon-url {background-image: url(/images/public_icon.png)}
|
||||||
|
.homepagePostReplyInputContainer .ke-outline {padding: 0px 0px; line-height: 26px; font-size: 14px;}
|
||||||
|
.homepagePostReplyInputContainer .ke-icon-emoticons {background-position: 0px -671px; width: 50px; height: 26px;}
|
||||||
|
.homepagePostReplyInputContainer .ke-icon-emoticons:hover {background-position: -79px -671px; width: 50px; height: 26px;}
|
||||||
|
.homepagePostReplyInputContainer .ke-outline {border: none;}
|
||||||
|
.homepagePostReplyInputContainer .ke-inline-block {display: none;}
|
||||||
|
.homepagePostReplyInputContainer .ke-container {float: left;}
|
||||||
|
</style>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
$("#RSide").removeAttr("id");
|
||||||
|
$("#Container").css("width","1000px");
|
||||||
|
});
|
||||||
|
function reset_article(){
|
||||||
|
$("#message_subject").val("");
|
||||||
|
$("#subjectmsg").text("");
|
||||||
|
document.getElementById("blog_comment_sticky").checked=false;
|
||||||
|
document.getElementById("blog_comment_locked").checked=false;
|
||||||
|
$("#topic_attachments").html("<%= escape_javascript(render :partial => 'blog_comments/blog_attachments', :locals => {:container => BlogComment.new})%>");
|
||||||
|
message_content_editor.html("");
|
||||||
|
$("#topic_editor").slideToggle();
|
||||||
|
}
|
||||||
|
<%# if @is_new%>
|
||||||
|
// $(function(){
|
||||||
|
// $("#message_subject").focus();
|
||||||
|
// });
|
||||||
|
<%#end%>
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="homepageRight mt0 ml10">
|
||||||
|
<div class="homepageRightBanner">
|
||||||
|
<div class="NewsBannerName">
|
||||||
|
<%= @user.name%>的博客
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<% if User.current.logged? && User.current.id == @user.id %>
|
||||||
|
<%= labelled_form_for @article, :url =>{:controller=>'blog_comments',:action => 'create',:user_id=>user.id , :blog_id => blog.id},
|
||||||
|
:html => {:nhname=>'form',:multipart => true, :id => 'message-form'} do |f| %>
|
||||||
|
<%= render :partial => 'blog_comments/new', :locals => {:f => f, :article => @article, :edit_mode => false, :user => @user} %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<% if topics%>
|
||||||
|
<% topics.each do |topic| %>
|
||||||
|
<script>
|
||||||
|
function expand_reply(container, btnid) {
|
||||||
|
var target = $(container);
|
||||||
|
var btn = $(btnid);
|
||||||
|
if (btn.data('init') == '0') {
|
||||||
|
btn.data('init', 1);
|
||||||
|
btn.html('收起回复');
|
||||||
|
target.show();
|
||||||
|
} else {
|
||||||
|
btn.data('init', 0);
|
||||||
|
btn.html('展开更多');
|
||||||
|
target.hide();
|
||||||
|
target.eq(0).show();
|
||||||
|
target.eq(1).show();
|
||||||
|
target.eq(2).show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function expand_reply_input(id) {
|
||||||
|
$(id).toggle();
|
||||||
|
}
|
||||||
|
|
||||||
|
$(function () {
|
||||||
|
init_activity_KindEditor_data(<%= topic.id%>, null, "87%");
|
||||||
|
showNormalImage('activity_description_<%= topic.id %>');
|
||||||
|
/*var description_images=$("div#activity_description_<%#= topic.id %>").find("img");
|
||||||
|
if (description_images.length>0) {
|
||||||
|
for (var i=0; i<description_images.length; i++){
|
||||||
|
var image=$(description_images[i]);
|
||||||
|
var element=$("<a></a>").attr("href",image.attr('src'));
|
||||||
|
image.wrap(element);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$('#activity_description_<%#= topic.id %> a').colorbox({rel:'nofollow', close: "关闭", returnFocus: false});*/
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<% if topic %>
|
||||||
|
<%= render :partial => 'blogs/article', :locals => {:activity => topic, :user_activity_id => topic.id} %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<%# if topics.count == 10 %>
|
||||||
|
<!--<div id="show_more_course_topic" class="loadMore mt10 f_grey">展开更多<%#= link_to "", boards_topic_path(@board, :course_id => @board.course.id ,:page => page), :id => "more_topic_link", :remote => "true", :class => "none" %></div>-->
|
||||||
|
<%# end %>
|
||||||
|
<% end%>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
$("#show_more_course_topic").mouseover(function () {
|
||||||
|
$("#more_topic_link").click();
|
||||||
|
});
|
||||||
|
</script>
|
|
@ -0,0 +1,187 @@
|
||||||
|
<style type="text/css">
|
||||||
|
div.talk_new .ke-container{margin-left:2px;}
|
||||||
|
.break_word {width:100%;}
|
||||||
|
</style>
|
||||||
|
<script type="text/javascript">
|
||||||
|
//头部导航
|
||||||
|
var menuids=["TopUserNav"] //Enter id(s) of SuckerTree UL menus, separated by commas
|
||||||
|
function buildsubmenus(){
|
||||||
|
for (var i=0; i<menuids.length; i++){
|
||||||
|
var div = document.getElementById(menuids[i]);
|
||||||
|
if(div == undefined)continue;
|
||||||
|
var ultags=div.getElementsByTagName("ul");
|
||||||
|
for (var t=0; t<ultags.length; t++){
|
||||||
|
ultags[t].parentNode.getElementsByTagName("a")[0].className="subfolderstyle";
|
||||||
|
ultags[t].parentNode.onmouseover=function(){
|
||||||
|
this.getElementsByTagName("ul")[0].style.display="block";
|
||||||
|
}
|
||||||
|
ultags[t].parentNode.onmouseout=function(){
|
||||||
|
this.getElementsByTagName("ul")[0].style.display="none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (window.addEventListener)
|
||||||
|
window.addEventListener("load", buildsubmenus, false)
|
||||||
|
else if (window.attachEvent)
|
||||||
|
window.attachEvent("onload", buildsubmenus)
|
||||||
|
</script>
|
||||||
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg' %>
|
||||||
|
<%#= javascript_include_tag "/assets/kindeditor/kindeditor-min" %>
|
||||||
|
|
||||||
|
|
||||||
|
<%= render :partial => 'blogs/article_list', :locals => {:blog=>@user.blog,:topics => @user.blog.articles.reorder("#{BlogComment.table_name}.sticky desc,#{BlogComment.table_name}.created_on desc"), :page => 0, :user => @user} %>
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">//侧导航
|
||||||
|
|
||||||
|
function nh_check_field(params){
|
||||||
|
var result=true;
|
||||||
|
if(params.subject!=undefined){
|
||||||
|
if($.trim(params.subject.val()) == ""){
|
||||||
|
params.subjectmsg.html('主题不能为空');
|
||||||
|
params.subjectmsg.css({color:'#ff0000'});
|
||||||
|
result=false;
|
||||||
|
}else{
|
||||||
|
params.subjectmsg.html('填写正确');
|
||||||
|
params.subjectmsg.css({color:'#008000'});
|
||||||
|
}
|
||||||
|
params.subjectmsg.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(params.content!=undefined){
|
||||||
|
if(params.content.isEmpty()){
|
||||||
|
result=false;
|
||||||
|
}
|
||||||
|
if(params.content.html()!=params.textarea.html() || params.issubmit==true){
|
||||||
|
params.textarea.html(params.content.html());
|
||||||
|
params.content.sync(); //用上面那句ie11提交到服务器居然木有值
|
||||||
|
if(params.content.isEmpty()){
|
||||||
|
params.contentmsg.html('内容不能为空');
|
||||||
|
params.contentmsg.css({color:'#ff0000'});
|
||||||
|
}else{
|
||||||
|
params.contentmsg.html('填写正确');
|
||||||
|
params.contentmsg.css({color:'#008000'});
|
||||||
|
}
|
||||||
|
params.contentmsg.show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
function nh_init_board(params){
|
||||||
|
//发帖/编辑/回复按钮的click
|
||||||
|
params.showbtn.click(function(){
|
||||||
|
params.textarea.removeAttr('placeholder');
|
||||||
|
if(params.textarea.data('init') == undefined){
|
||||||
|
//初始化编辑器
|
||||||
|
var editor = params.kindutil.create(params.textarea, {
|
||||||
|
// allowPreviewEmoticons : false,
|
||||||
|
// allowImageUpload : false,
|
||||||
|
autoHeightMode : true,
|
||||||
|
resizeType : 1,minWidth:"1px",width:"560px",height:"150px",
|
||||||
|
allowFileManager:true,uploadJson:"/kindeditor/upload",
|
||||||
|
fileManagerJson:"/kindeditor/filemanager",
|
||||||
|
afterChange:function(){//按键事件
|
||||||
|
nh_check_field({content:this,contentmsg:params.contentmsg,textarea:params.textarea});
|
||||||
|
// var edit = this.edit;
|
||||||
|
// var body = edit.doc.body;
|
||||||
|
// edit.iframe.height(minHeight);
|
||||||
|
// this.resize(null, Math.max((params.kindutil.IE ? body.scrollHeight : body.offsetHeight) + 30, minHeight));
|
||||||
|
},
|
||||||
|
afterCreate:function(){
|
||||||
|
this.loadPlugin("autoheight");
|
||||||
|
var userAgent = navigator.userAgent.toLowerCase();
|
||||||
|
if(/trident/.test(userAgent)){
|
||||||
|
$("div.talk_new .ke-container").css({'margin-left':'0px'});
|
||||||
|
}
|
||||||
|
// var toolbar = $("div[class='ke-toolbar']",params.about_talk);
|
||||||
|
// $(".ke-outline>.ke-toolbar-icon",toolbar).append('表情');
|
||||||
|
// params.toolbar_container.append(toolbar);
|
||||||
|
}
|
||||||
|
}).loadPlugin('paste');
|
||||||
|
|
||||||
|
//主题输入框按键事件
|
||||||
|
params.inputsubject.keyup(function(){
|
||||||
|
nh_check_field({subject:params.inputsubject,subjectmsg:params.subjectmsg});
|
||||||
|
})
|
||||||
|
//表单提交
|
||||||
|
params.form.submit(function(){
|
||||||
|
var is_checked = nh_check_field({
|
||||||
|
issubmit:true,
|
||||||
|
subject:params.inputsubject,
|
||||||
|
subjectmsg:params.subjectmsg,
|
||||||
|
content:editor,
|
||||||
|
contentmsg:params.contentmsg,
|
||||||
|
textarea:params.textarea
|
||||||
|
});
|
||||||
|
if(is_checked){
|
||||||
|
//return true 居然不提交 fuck your sister
|
||||||
|
$(this)[0].submit();
|
||||||
|
// return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
//提交按钮click
|
||||||
|
params.submitbtn.click(function(){
|
||||||
|
params.form.submit();
|
||||||
|
});
|
||||||
|
//取消按钮click
|
||||||
|
params.cancelbtn.click(function(){
|
||||||
|
params.about_talk.toggle();//显示/隐藏编辑区
|
||||||
|
if(params.about_talk.is(':hidden')){//隐藏时reset表单数据
|
||||||
|
params.form[0].reset();
|
||||||
|
if(params.type=='reply'){
|
||||||
|
params.textarea.empty();
|
||||||
|
}else{
|
||||||
|
params.textarea.html(params.init_content_val.val());
|
||||||
|
}
|
||||||
|
var str = params.textarea.html();
|
||||||
|
str=str.replace(new RegExp(/</g),'<');
|
||||||
|
str=str.replace(new RegExp(/>/g),'>');
|
||||||
|
editor.html(str);
|
||||||
|
params.subjectmsg.hide();
|
||||||
|
params.contentmsg.hide();
|
||||||
|
if(params.quote_show!=undefined)params.quote_show.empty();
|
||||||
|
if(params.quote_input!=undefined)params.quote_input.empty();
|
||||||
|
}else{
|
||||||
|
if(params.type=='reply'){
|
||||||
|
params.textarea.show();
|
||||||
|
params.textarea.focus();
|
||||||
|
params.textarea.hide();
|
||||||
|
//params.jumphref.attr('href','#'+params.form.attr('id'));
|
||||||
|
//params.jumphref[0].click();
|
||||||
|
}else{
|
||||||
|
params.textarea.show();
|
||||||
|
params.textarea.focus();
|
||||||
|
params.textarea.hide();
|
||||||
|
// params.inputsubject.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
params.textarea.data('init','1');//标记为已经初始化
|
||||||
|
}
|
||||||
|
params.cancelbtn.click();//显示/隐藏编辑区
|
||||||
|
});
|
||||||
|
if(params.type == 'reply'){
|
||||||
|
params.showbtn_child.click(function(){
|
||||||
|
if(params.textarea.data('init') == undefined){
|
||||||
|
params.showbtn.click();
|
||||||
|
}else{
|
||||||
|
params.cancelbtn.click();
|
||||||
|
if(params.about_talk.is(':hidden')){
|
||||||
|
params.cancelbtn.click();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var parent_topic_id = $(this).data('topic-id');
|
||||||
|
if(parent_topic_id!=undefined)$("input[name='parent_topic']",params.form).val(parent_topic_id);
|
||||||
|
var ref_str = params.get_ref_str_call($(this));
|
||||||
|
params.quote_show.html(ref_str);
|
||||||
|
params.quote_input.html(ref_str);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
|
@ -12,5 +12,5 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<%= render :partial => 'boards/course_new',
|
<%= render :partial => 'boards/course_new',
|
||||||
:locals => {:f => f, :edit_mode => edit_mode, :topic => topic} %>
|
:locals => {:f => f, :edit_mode => edit_mode, :topic => topic, :course => course} %>
|
||||||
</div>
|
</div>
|
|
@ -68,13 +68,24 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function expand_reply_input(id) {
|
|
||||||
$(id).toggle();
|
|
||||||
}
|
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
init_activity_KindEditor_data(<%= activity.id%>, null, "87%");
|
init_activity_KindEditor_data(<%= activity.id%>, null, "87%");
|
||||||
showNormalImage('activity_description_<%= activity.id %>');
|
showNormalImage('activity_description_<%= activity.id %>');
|
||||||
|
if($("#intro_content_<%= activity.id %>").height() > 360) {
|
||||||
|
$("#intro_content_show_<%= activity.id %>").show();
|
||||||
|
}
|
||||||
|
$("#intro_content_show_<%= activity.id %>").click(function(){
|
||||||
|
$("#activity_description_<%= activity.id %>").toggleClass("maxh360");
|
||||||
|
$("#activity_description_<%= activity.id%>").toggleClass("lh18");
|
||||||
|
$("#intro_content_show_<%= activity.id %>").hide();
|
||||||
|
$("#intro_content_hide_<%= activity.id %>").show();
|
||||||
|
});
|
||||||
|
$("#intro_content_hide_<%= activity.id %>").click(function(){
|
||||||
|
$("#activity_description_<%= activity.id %>").toggleClass("maxh360");
|
||||||
|
$("#activity_description_<%= activity.id%>").toggleClass("lh18");
|
||||||
|
$("#intro_content_hide_<%= activity.id %>").hide();
|
||||||
|
$("#intro_content_show_<%= activity.id %>").show();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<% if activity && activity.course_act%>
|
<% if activity && activity.course_act%>
|
||||||
|
|
|
@ -4,33 +4,33 @@
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<title>快速进入课程通道</title>
|
<title>快速进入课程通道</title>
|
||||||
<style>
|
<style>
|
||||||
body{ font-size:12px; font-family:"微软雅黑","宋体"; line-height:1.9; background:#fff; font-style:normal;}
|
#popbox{ font-size:12px; font-family:"微软雅黑","宋体"; line-height:1.9; background:#fff; font-style:normal;}
|
||||||
div,html,img,ul,li,p,body,h1,h2,h3,h4,p,a,table,tr,td,fieldset,input,span{ margin:0; padding:0;}
|
#popbox div,html,img,ul,li,p,body,h1,h2,h3,h4,p,a,table,tr,td,fieldset,input,span{ margin:0; padding:0;}
|
||||||
div,img,tr,td{ border:0;}
|
#popbox div,img,tr,td{ border:0;}
|
||||||
table,tr,td{border:0; cellspacing:0; cellpadding:0;}
|
#popbox table,tr,td{border:0; cellspacing:0; cellpadding:0;}
|
||||||
ul,li{ list-style-type:none}
|
#popbox ul,li{ list-style-type:none}
|
||||||
.cl{ clear:both; overflow:hidden; }
|
#popbox .cl{ clear:both; overflow:hidden; }
|
||||||
a{ text-decoration:none; }
|
#popbox a{ text-decoration:none; }
|
||||||
a:hover{}
|
#popbox a:hover{}
|
||||||
|
|
||||||
.alert_box {width:488px;height:550px;position:fixed;z-index:1002;left:50%;top:40%;margin:-215px 0 0 -300px; background:#fff; -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; box-shadow:0px 0px 8px #194a81; padding:5px; overflow:auto; }
|
.alert_box {width:488px;height:550px;position:fixed;z-index:1002;left:50%;top:40%;margin:-215px 0 0 -300px; background:#fff; -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; box-shadow:0px 0px 8px #194a81; padding:5px; overflow:auto; }
|
||||||
#popbox{width:488px;height:368px;}
|
#popbox{width:488px;height:368px;}
|
||||||
.alert .C{width:476px;height:296px;position:absolute;left:5px;top:5px; }
|
.alert .C{width:476px;height:296px;position:absolute;left:5px;top:5px; }
|
||||||
.C_top{ margin-top:20px; width:368px; height:100px; background:#e9e9e9; padding:0px 60px; }
|
#popbox .C_top{ margin-top:20px; width:368px; height:100px; background:#e9e9e9; padding:0px 60px; }
|
||||||
.C_top h2{ color:#1c1d1d; font-size:24px; font-style:normal; font-weight:normal;}
|
#popbox .C_top h2{ color:#1c1d1d; font-size:24px; font-style:normal; font-weight:normal;}
|
||||||
.C_top p{ color:#a9aaaa; line-height:22px;}
|
#popbox .C_top p{ color:#a9aaaa; line-height:22px;}
|
||||||
.C_form{ margin:20px 0 0 60px;}
|
#popbox .C_form{ margin:20px 0 0 60px;}
|
||||||
.C_form ul li{ font-size:14px; color:#3f3a39; line-height:30px; }
|
#popbox .C_form ul li{ font-size:14px; color:#3f3a39; line-height:30px; }
|
||||||
.C_form ul li input{ margin-left:20px; border:0px; border:1px solid #e1e1e1; color:#898989; padding-left:5px; -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; padding: 0 !important; }
|
#popbox .C_form ul li input{ margin-left:20px; border:0px; border:1px solid #e1e1e1; color:#898989; padding-left:5px; -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; padding: 0 !important; }
|
||||||
.C_form ul li.mB5{ color:#898989; font-size:12px; padding-left:97px;}
|
#popbox .C_form ul li.mB5{ color:#898989; font-size:12px; padding-left:97px;}
|
||||||
.width190{ width:190px; height:26px; border-color:#e1e1e1;}
|
#popbox .width190{ width:190px; height:26px; border-color:#e1e1e1;}
|
||||||
.C_form a{ font-size:12px; color:#15bccf; float:left; display:block; height:40px; width:200px; margin-top:25px;}
|
#popbox .C_form a{ font-size:12px; color:#15bccf; float:left; display:block; height:40px; width:200px; margin-top:25px;}
|
||||||
.C_form a:hover{ text-decoration:underline;}
|
#popbox .C_form a:hover{ text-decoration:underline;}
|
||||||
.C_form a.btn_join{ display:block; width:100px; height:36px; padding-top:4px; text-align: center; background:#269ac9; color:#fff; font-size:14px; margin:20px 20px 0 95px;}
|
#popbox .C_form a.btn_join{ display:block; width:100px; height:36px; padding-top:4px; text-align: center; background:#269ac9; color:#fff; font-size:14px; margin:20px 20px 0 95px;}
|
||||||
.C_form a.btn_join:hover{ background:#297fb8; text-decoration: none;}
|
#popbox .C_form a.btn_join:hover{ background:#297fb8; text-decoration: none;}
|
||||||
.C_form a.btn_cancel{ display:block; width:100px; height:36px; padding-top:4px; text-align: center; background:#c1c1c1; color:#fff; font-size:14px; margin:20px 20px 0 95px;}
|
#popbox .C_form a.btn_cancel{ display:block; width:100px; height:36px; padding-top:4px; text-align: center; background:#c1c1c1; color:#fff; font-size:14px; margin:20px 20px 0 95px;}
|
||||||
.C_form a.btn_cancel:hover{ background:#717171; text-decoration: none;}
|
#popbox .C_form a.btn_cancel:hover{ background:#717171; text-decoration: none;}
|
||||||
.IDType {border:1px solid #e1e1e1; outline: none; width: 65px; height: 25px;}
|
#popbox .IDType {border:1px solid #e1e1e1; outline: none; width: 65px; height: 25px;}
|
||||||
</style>
|
</style>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
function submit_form(obj)
|
function submit_form(obj)
|
||||||
|
@ -71,12 +71,12 @@
|
||||||
<span class="tips">密 码:</span>
|
<span class="tips">密 码:</span>
|
||||||
<input class=" width190" type="password" name="course_password" id="course_password" value="" >
|
<input class=" width190" type="password" name="course_password" id="course_password" value="" >
|
||||||
</li>
|
</li>
|
||||||
<li style="margin-top: 30px;display: none">
|
<li style="margin-top: 30px;">
|
||||||
<span style="margin-right: 20px;">身 份:</span>
|
<span style="margin-right: 20px;">身 份:</span>
|
||||||
<select class="IDType">
|
<select name="role" class="IDType">
|
||||||
<option>教师</option>
|
<option value="9">教师</option>
|
||||||
<option>教辅</option>
|
<option value="7">教辅</option>
|
||||||
<option>学生</option>
|
<option value="10">学生</option>
|
||||||
</select>
|
</select>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<% if object_id%>
|
<% if object_id && @state != 6%>
|
||||||
$("#join_in_course_header").html("<%= escape_javascript(join_in_course_header(course, user)) %>");
|
$("#join_in_course_header").html("<%= escape_javascript(join_in_course_header(course, user)) %>");
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if @state %>
|
<% if @state %>
|
||||||
|
@ -18,6 +18,8 @@
|
||||||
alert("您加入的课程不存在");
|
alert("您加入的课程不存在");
|
||||||
<% elsif @state == 5 %>
|
<% elsif @state == 5 %>
|
||||||
alert("您还未登录");
|
alert("您还未登录");
|
||||||
|
<% elsif @state == 6 %>
|
||||||
|
alert("申请成功,请等待审核")
|
||||||
<% else %>
|
<% else %>
|
||||||
alert("未知错误,请稍后再试");
|
alert("未知错误,请稍后再试");
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
<% if @object_id && @state != 6 && @state !=4 %>
|
||||||
|
$("#join_in_course_header").html("<%= escape_javascript(join_in_course_header(@course, @user)) %>");
|
||||||
|
<% end %>
|
||||||
|
<% if @state %>
|
||||||
|
<% if @state == 0 %>
|
||||||
|
alert("加入成功");
|
||||||
|
hidden_join_course_form();
|
||||||
|
$("#try_join_course_link").replaceWith("<a href='<%=url_for(:controller => 'homework_common', :action => 'index',:course=>@course.id, :host=>Setting.host_course)%>' target='_blank' class='blue_n_btn fr mt20'>提交作品</a>");
|
||||||
|
window.location.href= "http://"+"<%= Setting.host_name%>"+"/courses/" + "<%= @course.id%>"
|
||||||
|
<% elsif @state == 1 %>
|
||||||
|
alert("密码错误");
|
||||||
|
<% elsif @state == 2 %>
|
||||||
|
alert("课程已过期\n请联系课程管理员重启课程。(在配置课程处)");
|
||||||
|
<% elsif @state == 3 %>
|
||||||
|
alert("您已经加入了课程");
|
||||||
|
window.location.href= "http://"+"<%= Setting.host_name%>"+"/courses/" + "<%= @course.id%>"
|
||||||
|
<% elsif @state == 4 %>
|
||||||
|
alert("您加入的课程不存在");
|
||||||
|
<% elsif @state == 5 %>
|
||||||
|
alert("您还未登录");
|
||||||
|
<% elsif @state == 6 %>
|
||||||
|
alert("申请成功,请等待审核");
|
||||||
|
hidden_join_course_form();
|
||||||
|
<% elsif @state == 7%>
|
||||||
|
alert("您已经发送过申请了,请耐心等待");
|
||||||
|
hidden_join_course_form();
|
||||||
|
<% else %>
|
||||||
|
alert("未知错误,请稍后再试");
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
|
@ -0,0 +1,6 @@
|
||||||
|
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'student_work/set_score_rule',:locals => {:homework => @homework, :student_path => false}) %>');
|
||||||
|
showModal('ajax-modal', '350px');
|
||||||
|
$('#ajax-modal').siblings().remove();
|
||||||
|
$('#ajax-modal').before("<span style='float: right;cursor:pointer;'>" +
|
||||||
|
"<a href='javascript:' onclick='clickCanel();'><img src='/images/bid/close.png' width='26px' height='26px' /></a></span>");
|
||||||
|
$('#ajax-modal').parent().css("top","25%").css("left","35%").css("position","fixed");
|
|
@ -71,6 +71,14 @@
|
||||||
<textarea class="homepageSignatureTextarea none" placeholder="请编辑签名" id="user_brief_introduction_edit" onblur="edit_user_introduction('<%= edit_brief_introduction_user_path(@user.id)%>');"><%= @user.user_extensions.brief_introduction %></textarea>
|
<textarea class="homepageSignatureTextarea none" placeholder="请编辑签名" id="user_brief_introduction_edit" onblur="edit_user_introduction('<%= edit_brief_introduction_user_path(@user.id)%>');"><%= @user.user_extensions.brief_introduction %></textarea>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
<div class="homepageImageBlock">
|
||||||
|
<div>
|
||||||
|
<%= link_to(@user.blog.blog_comments.where("#{BlogComment.table_name}.parent_id is null").count,
|
||||||
|
{:controller => 'blogs', :action => 'index', :user_id => @user.id }, :class => 'homepageImageNumber',:id => 'user_score') %>
|
||||||
|
</div>
|
||||||
|
<div class="homepageImageText">博客</div>
|
||||||
|
</div>
|
||||||
|
<div class="homepageVerDiv"></div>
|
||||||
<div class="homepageImageBlock">
|
<div class="homepageImageBlock">
|
||||||
<div id="watch_user_number_div">
|
<div id="watch_user_number_div">
|
||||||
<%= link_to User.watched_by(@user.id).count.to_s, {:controller=>"users", :action=>"user_watchlist",:id=>@user.id},:class=>"homepageImageNumber" %>
|
<%= link_to User.watched_by(@user.id).count.to_s, {:controller=>"users", :action=>"user_watchlist",:id=>@user.id},:class=>"homepageImageNumber" %>
|
||||||
|
@ -84,14 +92,8 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="homepageImageText">粉丝</div>
|
<div class="homepageImageText">粉丝</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepageVerDiv"></div>
|
|
||||||
<div class="homepageImageBlock">
|
|
||||||
<div>
|
|
||||||
<%= link_to(format("%.2f" ,get_option_number(@user,1).total_score ).to_i,
|
|
||||||
{:controller => 'users', :action => 'show_new_score', :remote => true, :id => @user.id }, :class => 'homepageImageNumber',:id => 'user_score') %>
|
|
||||||
</div>
|
|
||||||
<div class="homepageImageText">积分</div>
|
|
||||||
</div>
|
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -103,7 +105,21 @@
|
||||||
<a href="javascript:void(0);" class="homepageMenuText" onclick="$('#homepageLeftMenuCourses').slideToggle();">课程</a>
|
<a href="javascript:void(0);" class="homepageMenuText" onclick="$('#homepageLeftMenuCourses').slideToggle();">课程</a>
|
||||||
<% if is_current_user%>
|
<% if is_current_user%>
|
||||||
<% if User.current.user_extensions && User.current.user_extensions.identity == 0 && User.current.allowed_to?(:add_course, nil, :global => true)%>
|
<% if User.current.user_extensions && User.current.user_extensions.identity == 0 && User.current.allowed_to?(:add_course, nil, :global => true)%>
|
||||||
<%=link_to "", new_course_path(:host=> Setting.host_course), :class => "homepageMenuSetting fr", :title => "新建课程"%>
|
<div class="courseMenu" id="courseMenu">
|
||||||
|
<ul>
|
||||||
|
<li class="courseMenuIcon" id="courseMenuIcon">
|
||||||
|
<ul class="topnav_course_menu" id="topnav_course_menu">
|
||||||
|
<li>
|
||||||
|
<%= link_to "新建课程", new_course_path(:host=> Setting.host_course), :class => "menuGrey"%>
|
||||||
|
</li>
|
||||||
|
<!--<li><a href="javascript:void(0);" class="menuGrey">账号设置</a> </li>-->
|
||||||
|
<li>
|
||||||
|
<%= link_to "加入课程",join_private_courses_courses_path,:remote => true,:class => "menuGrey",:method => "post"%>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
<% else%>
|
<% else%>
|
||||||
<%=link_to "", join_private_courses_courses_path, :class => "homepageMenuSetting fr",:remote => true, :title => "加入课程"%>
|
<%=link_to "", join_private_courses_courses_path, :class => "homepageMenuSetting fr",:remote => true, :title => "加入课程"%>
|
||||||
<% end%>
|
<% end%>
|
||||||
|
@ -201,5 +217,13 @@
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div><!--floatbox end-->
|
</div><!--floatbox end-->
|
||||||
</div>
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$("#courseMenu").mouseenter(function(){
|
||||||
|
$("#topnav_course_menu").show();
|
||||||
|
});
|
||||||
|
$("#courseMenu").mouseleave(function(){
|
||||||
|
$("#topnav_course_menu").hide();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
<div class="mail_box" style="border:1px solid #c8c8c8; width:570px; height: auto; padding:15px; margin-top:10px; margin-bottom:10px;">
|
||||||
|
<ul style="list-style-type:none; margin:0; padding:0;">
|
||||||
|
|
||||||
|
<li style="list-style-type:none; margin:0; padding:0;"><span style="float: left;"><strong><%= l(:mail_issue_content)%></strong></span>
|
||||||
|
<span style="float: left; width: 526px">
|
||||||
|
<p><span style="color:#1b55a7; font-weight:bold;"><%= @user.show_name %></span> 请求成为课程:<span style="color:#1b55a7; font-weight:bold;"><%=link_to @course.name, course_url(@course) %></span>的<%= @role.eql?('9') ? '老师': '教辅' %> </p>
|
||||||
|
<p><%=link_to user_message_url(@receive),user_message_url(@receive)%></p>
|
||||||
|
</span>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="cl" style="margin-top: 30px; clear:both; overflow:hidden;"></div>
|
||||||
|
</div>
|
|
@ -0,0 +1,4 @@
|
||||||
|
<%= @user.show_name %>申请成为课程<%= @course.name %>的<%= @role.eql?('9') ? '老师': '教辅' %>
|
||||||
|
<%=link_to user_message_url(@receive),user_message_url(@receive)%>
|
||||||
|
|
||||||
|
|
|
@ -115,7 +115,7 @@
|
||||||
<%= link_to reply.try(:author).try(:realname), user_path(reply.author_id,:host=>Setting.host_user), :class => "newsBlue mr10 f14" %>
|
<%= link_to reply.try(:author).try(:realname), user_path(reply.author_id,:host=>Setting.host_user), :class => "newsBlue mr10 f14" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostReplyContent upload_img break_word" id="reply_message_description_<%= reply.id %>">
|
<div class="homepagePostReplyContent upload_img break_word table_maxWidth" id="reply_message_description_<%= reply.id %>">
|
||||||
<%= reply.content.html_safe%>
|
<%= reply.content.html_safe%>
|
||||||
</div>
|
</div>
|
||||||
<div style="margin-top: -7px; margin-bottom: 5px">
|
<div style="margin-top: -7px; margin-bottom: 5px">
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
:method => :post}
|
:method => :post}
|
||||||
} do |f| %>
|
} do |f| %>
|
||||||
<%= render :partial => 'boards/course_message_edit',
|
<%= render :partial => 'boards/course_message_edit',
|
||||||
:locals => {:f => f, :edit_mode => true, :topic => @message} %>
|
:locals => {:f => f, :edit_mode => true, :topic => @message, :course => @message.course} %>
|
||||||
|
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -603,7 +603,7 @@
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
schoolsResult = data.schools;
|
schoolsResult = data.schools;
|
||||||
count = data.count;
|
count = data.count;
|
||||||
maxPage = count % 100 + 1; //最大页码值
|
maxPage = Math.ceil(count/100) //最大页码值
|
||||||
if(schoolsResult.length != undefined && schoolsResult.length != 0) {
|
if(schoolsResult.length != undefined && schoolsResult.length != 0) {
|
||||||
var i = 0;
|
var i = 0;
|
||||||
$("#search_school_result_list").html('');
|
$("#search_school_result_list").html('');
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
<%= form_for('new_form',:url => {:controller => 'student_work',:action => 'set_score_rule',:homework => homework.id},:method => "post") do |f|%>
|
<%= form_for('new_form',:url => {:controller => 'student_work',:action => 'set_score_rule',:homework => homework.id},:method => "post") do |f|%>
|
||||||
|
<% if student_path %>
|
||||||
|
<%=hidden_field_tag 'student_path', params[:student_path], :value => student_path %>
|
||||||
|
<% end %>
|
||||||
<div class="markPopup" id="popbox02">
|
<div class="markPopup" id="popbox02">
|
||||||
<span class="uploadText">评分设置</span>
|
<span class="uploadText">评分设置</span>
|
||||||
<div class="mt15">
|
<div class="mt15">
|
||||||
|
|
|
@ -1,35 +1,35 @@
|
||||||
<div class="fl">
|
<div class="fl">
|
||||||
<span id="attachments_fields<%= work.id%>" xmlns="http://www.w3.org/1999/html">
|
<span id="attachments_fields<%= work.id%>" xmlns="http://www.w3.org/1999/html">
|
||||||
</span>
|
</span>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<span class="add_attachment" style="font-weight:normal;">
|
<span class="add_attachment" style="font-weight:normal;">
|
||||||
<%= button_tag "文件浏览", :type=>"button", :onclick=>"$('#_file#{work.id}').click();",:onmouseover => 'this.focus()',:class => 'sub_btn' %>
|
<%= button_tag "文件浏览", :type=>"button", :onclick=>"$('#_file#{work.id}').click();",:onmouseover => 'this.focus()',:class => 'sub_btn mb0' %>
|
||||||
<%= file_field_tag 'attachments[dummy][file]',
|
<%= file_field_tag 'attachments[dummy][file]',
|
||||||
:id => "_file#{work.id}",
|
:id => "_file#{work.id}",
|
||||||
:class => 'file_selector',
|
:class => 'file_selector',
|
||||||
:multiple => true,
|
:multiple => true,
|
||||||
:onchange => "addInputFiles_board(this, '#{work.id}');",
|
:onchange => "addInputFiles_board(this, '#{work.id}');",
|
||||||
:style => 'display:none',
|
:style => 'display:none',
|
||||||
:data => {
|
:data => {
|
||||||
:max_file_size => Setting.attachment_max_size.to_i.kilobytes,
|
:max_file_size => Setting.attachment_max_size.to_i.kilobytes,
|
||||||
:max_file_size_message => l(:error_attachment_too_big, :max_size => number_to_human_size(Setting.attachment_max_size.to_i.kilobytes)),
|
:max_file_size_message => l(:error_attachment_too_big, :max_size => number_to_human_size(Setting.attachment_max_size.to_i.kilobytes)),
|
||||||
:max_concurrent_uploads => Redmine::Configuration['max_concurrent_ajax_uploads'].to_i,
|
:max_concurrent_uploads => Redmine::Configuration['max_concurrent_ajax_uploads'].to_i,
|
||||||
:upload_path => uploads_path(:format => 'js'),
|
:upload_path => uploads_path(:format => 'js'),
|
||||||
:description_placeholder => l(:label_optional_description),
|
:description_placeholder => l(:label_optional_description),
|
||||||
:field_is_public => l(:field_is_public),
|
:field_is_public => l(:field_is_public),
|
||||||
:are_you_sure => l(:text_are_you_sure),
|
:are_you_sure => l(:text_are_you_sure),
|
||||||
:file_count => l(:label_file_count),
|
:file_count => l(:label_file_count),
|
||||||
:delete_all_files => l(:text_are_you_sure_all),
|
:delete_all_files => l(:text_are_you_sure_all),
|
||||||
:containerid => "#{work.id}"
|
:containerid => "#{work.id}"
|
||||||
} %>
|
} %>
|
||||||
<span id="upload_file_count<%= work.id%>">
|
<span id="upload_file_count<%= work.id%>">
|
||||||
<%= l(:label_no_file_uploaded) %>
|
<%= l(:label_no_file_uploaded) %>
|
||||||
</span>
|
</span>
|
||||||
(<%= l(:label_max_size) %>:
|
(<%= l(:label_max_size) %>:
|
||||||
<%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)
|
<%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)
|
||||||
</span>
|
</span>
|
||||||
<% content_for :header_tags do %>
|
<% content_for :header_tags do %>
|
||||||
<%= javascript_include_tag 'attachments' %>
|
<%= javascript_include_tag 'attachments' %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
</div>
|
</div>
|
||||||
<%= select_tag(:student_work_in_group,options_for_select(course_group_list(@course),@group), {:class => "classSplit"}) unless course_group_list(@course).empty? %>
|
<%= select_tag(:student_work_in_group,options_for_select(course_group_list(@course),@group), {:class => "classSplit"}) unless course_group_list(@course).empty? %>
|
||||||
<% end%>
|
<% end%>
|
||||||
|
<span class="fr c_grey"> <a href="javascript:void(0);" class="linkGrey2" id="homework_info_show" style="display: none">[ 显示作业信息 ]</a> </span>
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<div id="attachment_<%= attachment.id%>">
|
<div id="attachment_<%= attachment.id%>">
|
||||||
<%= link_to_short_attachment attachment, :class => 'link_file_a fl', :download => true -%>
|
<%= link_to_short_attachment attachment, :class => 'link_file_a fl', :download => true -%>
|
||||||
<%= link_to(' '.html_safe, attachment_path(attachment, :format => 'js'), :method => 'delete', :remote => true, :title => '删除', :class => 'remove-upload fl', :confirm => l(:text_are_you_sure)) if attachment.id && User.current == attachment.author %>
|
<%= link_to(' '.html_safe, attachment_path(attachment, :format => 'js'), :method => 'delete', :remote => true, :title => '删除', :class => 'remove-upload fl', :confirm => l(:text_are_you_sure)) if attachment.id && User.current == attachment.author %>
|
||||||
<span class="ml5 fl">(<%= number_to_human_size attachment.filesize %>)</span>
|
<span class="postAttSize fl ">(<%= number_to_human_size attachment.filesize %>)</span>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
<% end -%>
|
<% end -%>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
//设置评分规则
|
//设置评分规则
|
||||||
function set_score_rule(){
|
function set_score_rule(){
|
||||||
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'student_work/set_score_rule',:locals => {:homework => @homework}) %>');
|
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'student_work/set_score_rule',:locals => {:homework => @homework,:student_path => true}) %>');
|
||||||
showModal('ajax-modal', '350px');
|
showModal('ajax-modal', '350px');
|
||||||
$('#ajax-modal').siblings().remove();
|
$('#ajax-modal').siblings().remove();
|
||||||
$('#ajax-modal').before("<span style='float: right;cursor:pointer;'>" +
|
$('#ajax-modal').before("<span style='float: right;cursor:pointer;'>" +
|
||||||
|
@ -28,6 +28,33 @@
|
||||||
$('#ajax-modal').parent().css("top","25%").css("left","35%").css("position","fixed");
|
$('#ajax-modal').parent().css("top","25%").css("left","35%").css("position","fixed");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$(function(){
|
||||||
|
$("#homework_info_hidden").click(function(){
|
||||||
|
$("#homeworkInformation").hide();
|
||||||
|
$("#homework_info_hidden").hide();
|
||||||
|
$("#homework_info_show").show();
|
||||||
|
});
|
||||||
|
$("#homework_info_show").click(function(){
|
||||||
|
$("#homework_info_show").hide();
|
||||||
|
$("#homeworkInformation").show();
|
||||||
|
$("#homework_info_hidden").show();
|
||||||
|
});
|
||||||
|
|
||||||
|
if($("#homework_description").height() > 54) {
|
||||||
|
$("#homeworkDetailShow").show();
|
||||||
|
}
|
||||||
|
$("#homeworkDetailShow").click(function(){
|
||||||
|
$("#homeworkDetail").toggleClass("max_h54");
|
||||||
|
$("#homeworkDetailShow").hide();
|
||||||
|
$("#homeworkDetailHide").show();
|
||||||
|
});
|
||||||
|
$("#homeworkDetailHide").click(function(){
|
||||||
|
$("#homeworkDetail").toggleClass("max_h54");
|
||||||
|
$("#homeworkDetailHide").hide();
|
||||||
|
$("#homeworkDetailShow").show();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="homepageRight mt0 ml10">
|
<div class="homepageRight mt0 ml10">
|
||||||
|
@ -91,6 +118,59 @@
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="homeworkInfo" id="homeworkInformation">
|
||||||
|
<div class="">
|
||||||
|
<div class="homepagePostTitle fl hidden m_w500" title="<%= @homework.name %>"><%= @homework.name %></div>
|
||||||
|
<% if @homework.homework_detail_manual%>
|
||||||
|
<% if @homework.homework_detail_manual.comment_status == 1%>
|
||||||
|
<span class="grey_btn_cir ml10">未开启匿评</span>
|
||||||
|
<% elsif @homework.homework_detail_manual.comment_status == 2%>
|
||||||
|
<span class="green_btn_cir ml10">匿评中</span>
|
||||||
|
<% elsif @homework.homework_detail_manual.comment_status == 3%>
|
||||||
|
<span class="grey_btn_cir ml10">匿评已结束</span>
|
||||||
|
<% end%>
|
||||||
|
<% end%>
|
||||||
|
<span class="fr c_grey"> <a href="javascript:void(0);" class="linkGrey2" id="homework_info_hidden">[ 隐藏作业信息 ]</a> </span>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="fontGrey2 db mb5">发布者:<%= @homework.user.show_name %></div>
|
||||||
|
<div class="homeworkDetail upload_img break_word list_style max_h54" id="homeworkDetail">
|
||||||
|
<div id="homework_description"><%= @homework.description.html_safe %></div>
|
||||||
|
</div>
|
||||||
|
<div id="homeworkDetailShow" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[展开]</a></div>
|
||||||
|
<div id="homeworkDetailHide" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[收起]</a></div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div>
|
||||||
|
<%= render :partial => 'student_work/work_attachments', :locals => {:attachments => @homework.attachments} %>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<div class="mt5">
|
||||||
|
<div class="fontGrey2 db fl">截止时间:<%= @homework.end_time %></div>
|
||||||
|
<% if @homework.homework_detail_manual%>
|
||||||
|
<% if @homework.homework_detail_manual.comment_status == 1%>
|
||||||
|
<% end_time = @homework.end_time.to_time.to_i + 24*60*60 - 1 %>
|
||||||
|
<% if end_time >= Time.now.to_i %>
|
||||||
|
<div class="fontGrey2 db fr">提交剩余时间: <span class="c_red"><%= (end_time - Time.now.to_i) / (24*60*60) %></span> 天
|
||||||
|
<span class="c_red"><%= ((end_time - Time.now.to_i) % (24*60*60)) / (60*60)%></span> 小时
|
||||||
|
<span class="c_red"><%= (((end_time - Time.now.to_i) % (24*60*60)) % (60*60)) / 60%></span> 分</div>
|
||||||
|
<% else %>
|
||||||
|
<div class="fontGrey2 db fr c_red">提交已截止</div>
|
||||||
|
<% end %>
|
||||||
|
<% elsif @homework.homework_detail_manual.comment_status == 2%>
|
||||||
|
<% end_time = @homework.homework_detail_manual.evaluation_end.to_time.to_i + 24*60*60 - 1 %>
|
||||||
|
<% if end_time >= Time.now.to_i %>
|
||||||
|
<div class="fontGrey2 db fr">匿评剩余时间: <span class="c_red"><%= (end_time - Time.now.to_i) / (24*60*60)%></span> 天
|
||||||
|
<span class="c_red"><%= ((end_time - Time.now.to_i) % (24*60*60)) / (60*60)%></span> 小时
|
||||||
|
<span class="c_red"><%= (((end_time - Time.now.to_i) % (24*60*60)) % (60*60)) / 60%></span> 分</div>
|
||||||
|
<% else %>
|
||||||
|
<div class="fontGrey2 db fr c_red">匿评已截止</div>
|
||||||
|
<% end %>
|
||||||
|
<% end%>
|
||||||
|
<% end%>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="hworkListContainer">
|
<div class="hworkListContainer">
|
||||||
<div class="ctt2">
|
<div class="ctt2">
|
||||||
<div class="dis" id="homework_student_work_list">
|
<div class="dis" id="homework_student_work_list">
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<% is_teacher = User.current.allowed_to?(:as_teacher,activity.course) %>
|
<% is_teacher = User.current.allowed_to?(:as_teacher,activity.course) %>
|
||||||
<div class="resources mt10">
|
<div class="resources mt10" id="user_activity_<%= user_activity_id%>">
|
||||||
<div class="homepagePostBrief">
|
<div class="homepagePostBrief">
|
||||||
<div class="homepagePostPortrait">
|
<div class="homepagePostPortrait">
|
||||||
<%= link_to image_tag(url_to_avatar(activity.user), :width => "50", :height => "50"), user_path(activity.user_id), :alt => "用户头像" %>
|
<%= link_to image_tag(url_to_avatar(activity.user), :width => "50", :height => "50"), user_path(activity.user_id), :alt => "用户头像" %>
|
||||||
|
@ -43,8 +43,18 @@
|
||||||
|
|
||||||
<div class="homepagePostDeadline">截止时间:<%= activity.end_time.to_s %></div>
|
<div class="homepagePostDeadline">截止时间:<%= activity.end_time.to_s %></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostIntro break_word upload_img list_style" id="activity_description_<%= user_activity_id%>">
|
<div class="homepagePostIntro break_word upload_img list_style maxh360 lh18 table_maxWidth" id="activity_description_<%= user_activity_id%>">
|
||||||
<%= activity.description.html_safe %>
|
<div id="intro_content_<%= user_activity_id%>">
|
||||||
|
<%= activity.description.html_safe %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div id="intro_content_show_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[展开]</a></div>
|
||||||
|
<div id="intro_content_hide_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[收起]</a></div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div>
|
||||||
|
<%= render :partial => 'student_work/work_attachments', :locals => {:attachments => activity.attachments} %>
|
||||||
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
<%# if is_teacher%>
|
<%# if is_teacher%>
|
||||||
<!--<div class="homepagePostSetting">
|
<!--<div class="homepagePostSetting">
|
||||||
|
@ -71,4 +81,74 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<% count=activity.journals_for_messages.count %>
|
||||||
|
<div class="homepagePostReply">
|
||||||
|
<div class="topBorder" style="display: <%= count>0 ? 'none': '' %>"></div>
|
||||||
|
<div class="homepagePostReplyBanner" style="display: <%= count>0 ? '': 'none' %>">
|
||||||
|
<div class="homepagePostReplyBannerCount">
|
||||||
|
回复(<%= count %>)
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostReplyBannerTime"></div>
|
||||||
|
<%if count>3 %>
|
||||||
|
<div class="homepagePostReplyBannerMore">
|
||||||
|
<a id="reply_btn_<%=user_activity_id%>" onclick="expand_reply('#reply_div_<%= user_activity_id %> li','#reply_btn_<%=user_activity_id%>')" data-count="<%= count %>" data-init="0" class=" replyGrey" href="javascript:void(0)" value="show_help" >
|
||||||
|
展开更多
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<% replies_all_i = 0 %>
|
||||||
|
<% if count > 0 %>
|
||||||
|
<div class="" id="reply_div_<%= user_activity_id %>">
|
||||||
|
<ul>
|
||||||
|
<% activity.journals_for_messages.reorder("created_on desc").each do |comment| %>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
showNormalImage('reply_content_<%= comment.id %>');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<% replies_all_i = replies_all_i + 1 %>
|
||||||
|
<li class="homepagePostReplyContainer" nhname="reply_rec" style="display:<%= replies_all_i > 3 ? 'none' : '' %>">
|
||||||
|
<div class="homepagePostReplyPortrait">
|
||||||
|
<%= link_to image_tag(url_to_avatar(comment.user), :width => "33", :height => "33", :class =>"mt8"), user_path(comment.user_id), :alt => "用户头像" %>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostReplyDes">
|
||||||
|
<div class="homepagePostReplyPublisher">
|
||||||
|
<% if comment.try(:user).try(:realname) == ' ' %>
|
||||||
|
<%= link_to comment.try(:user), user_path(comment.user_id), :class => "newsBlue mr10 f14" %>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to comment.try(:user).try(:realname), user_path(comment.user_id), :class => "newsBlue mr10 f14" %>
|
||||||
|
<% end %>
|
||||||
|
<%= format_time(comment.created_on) %>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= comment.id %>">
|
||||||
|
<%= comment.notes.html_safe %></div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</li>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<div class="homepagePostReplyContainer borderBottomNone minHeight48">
|
||||||
|
<div class="homepagePostReplyPortrait mr15 imageFuzzy" id="reply_image_<%= user_activity_id%>"><%= link_to image_tag(url_to_avatar(User.current), :width => "33", :height => "33"), :alt => "用户头像" %></div>
|
||||||
|
<div class="homepagePostReplyInputContainer mb10">
|
||||||
|
<div nhname='new_message_<%= user_activity_id%>' style="display:none;">
|
||||||
|
<%= form_for('new_form',:url => {:controller => 'words', :action => 'leave_homework_message', :id => activity.id},:method => "post", :remote => true) do |f|%>
|
||||||
|
<%= hidden_field_tag 'user_activity_id',params[:user_activity_id],:value =>user_activity_id %>
|
||||||
|
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='new_message_textarea_<%= user_activity_id%>' name="homework_message"></textarea>
|
||||||
|
<div nhname='toolbar_container_<%= user_activity_id%>' style="float:left;padding-top:3px; margin-left: 5px;"></div>
|
||||||
|
<a id="new_message_submit_btn_<%= user_activity_id%>" href="javascript:void(0)" class="blue_n_btn fr" style="display:none;margin-top:6px;">发送</a>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<p nhname='contentmsg_<%= user_activity_id%>'></p>
|
||||||
|
<% end%>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -67,7 +67,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= format_time(comment.created_on) %>
|
<%= format_time(comment.created_on) %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostReplyContent break_word list_style upload_img" id="reply_content_<%= comment.id %>">
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= comment.id %>">
|
||||||
<%= comment.notes.html_safe %></div>
|
<%= comment.notes.html_safe %></div>
|
||||||
<% fetch_user_leaveWord_reply(comment).each do |reply| unless fetch_user_leaveWord_reply(comment).nil? %>
|
<% fetch_user_leaveWord_reply(comment).each do |reply| unless fetch_user_leaveWord_reply(comment).nil? %>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
@ -94,7 +94,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= format_time reply.created_on %>
|
<%= format_time reply.created_on %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostReplyContent break_word list_style upload_img" style="max-width: 580px;" id="reply_to_content_<%= reply.id %>">
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" style="max-width: 580px;" id="reply_to_content_<%= reply.id %>">
|
||||||
<%= reply.notes.html_safe %></div>
|
<%= reply.notes.html_safe %></div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -30,14 +30,19 @@
|
||||||
<div class="homepagePostDate">
|
<div class="homepagePostDate">
|
||||||
发帖时间:<%= format_time(activity.created_on) %>
|
发帖时间:<%= format_time(activity.created_on) %>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="homepagePostIntro break_word upload_img list_style maxh360 lh18 table_maxWidth" id="activity_description_<%= user_activity_id%>">
|
||||||
<div class="homepagePostIntro break_word upload_img list_style" id="activity_description_<%= user_activity_id%>">
|
<div id="intro_content_<%= user_activity_id%>">
|
||||||
<% if activity.parent_id.nil? %>
|
<% if activity.parent_id.nil? %>
|
||||||
<%= activity.content.to_s.html_safe%>
|
<%= activity.content.to_s.html_safe%>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= activity.parent.content.to_s.html_safe%>
|
<%= activity.parent.content.to_s.html_safe%>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div id="intro_content_show_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[展开]</a></div>
|
||||||
|
<div id="intro_content_hide_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[收起]</a></div>
|
||||||
|
<div class="cl"></div>
|
||||||
<div class="homepagePostSetting" id="act-<%= user_activity_id %>" style="visibility: hidden">
|
<div class="homepagePostSetting" id="act-<%= user_activity_id %>" style="visibility: hidden">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="homepagePostSettingIcon">
|
<li class="homepagePostSettingIcon">
|
||||||
|
@ -99,7 +104,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= format_time(reply.created_on) %>
|
<%= format_time(reply.created_on) %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostReplyContent break_word list_style upload_img" id="reply_content_<%= reply.id %>">
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= reply.id %>">
|
||||||
<%= reply.content.html_safe %>
|
<%= reply.content.html_safe %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -18,9 +18,15 @@
|
||||||
<div class="homepagePostDate">
|
<div class="homepagePostDate">
|
||||||
发布时间:<%= format_time(activity.created_on) %>
|
发布时间:<%= format_time(activity.created_on) %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostIntro break_word upload_img list_style" id="activity_description_<%= user_activity_id %>">
|
<div class="homepagePostIntro break_word upload_img list_style maxh360 lh18 table_maxWidth" id="activity_description_<%= user_activity_id%>">
|
||||||
<%= activity.description.html_safe %>
|
<div id="intro_content_<%= user_activity_id%>">
|
||||||
|
<%= activity.description.html_safe %>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div id="intro_content_show_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[展开]</a></div>
|
||||||
|
<div id="intro_content_hide_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[收起]</a></div>
|
||||||
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -65,7 +71,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= format_time(comment.created_on) %>
|
<%= format_time(comment.created_on) %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostReplyContent break_word list_style upload_img" id="reply_content_<%= comment.id %>">
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= comment.id %>">
|
||||||
<%= comment.comments.html_safe %></div>
|
<%= comment.comments.html_safe %></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
|
|
@ -29,7 +29,15 @@
|
||||||
<div class="homepagePostDate">
|
<div class="homepagePostDate">
|
||||||
发布时间:<%= format_time(activity.published_at) %>
|
发布时间:<%= format_time(activity.published_at) %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostIntro break_word upload_img" id="activity_description_<%= user_activity_id%>"><%=activity.polls_description.html_safe.to_s%></div>
|
<div class="homepagePostIntro break_word upload_img list_style maxh360 lh18 table_maxWidth" id="activity_description_<%= user_activity_id%>">
|
||||||
|
<div id="intro_content_<%= user_activity_id%>">
|
||||||
|
<%= activity.polls_description.html_safe %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div id="intro_content_show_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[展开]</a></div>
|
||||||
|
<div id="intro_content_hide_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[收起]</a></div>
|
||||||
|
<div class="cl"></div>
|
||||||
<div class="homepagePostSetting" id="act-<%= user_activity_id %>" style="visibility: hidden">
|
<div class="homepagePostSetting" id="act-<%= user_activity_id %>" style="visibility: hidden">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="homepagePostSettingIcon">
|
<li class="homepagePostSettingIcon">
|
||||||
|
|
|
@ -33,29 +33,41 @@
|
||||||
<%=format_time(activity.created_on) %>
|
<%=format_time(activity.created_on) %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostIntro break_word upload_img list_style" id="activity_description_<%= user_activity_id %>">
|
<div class="homepagePostIntro break_word upload_img list_style maxh360 lh18 table_maxWidth" id="activity_description_<%= user_activity_id%>">
|
||||||
<% if activity.description? %>
|
<div id="intro_content_<%= user_activity_id%>">
|
||||||
<%= textAreailizable activity, :description, :attachments => activity.attachments %>
|
<% if activity.description? %>
|
||||||
<% end %>
|
<%= textAreailizable activity, :description, :attachments => activity.attachments %>
|
||||||
<%#= activity.description.html_safe %>
|
<% end %>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div id="intro_content_show_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[展开]</a></div>
|
||||||
|
<div id="intro_content_hide_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[收起]</a></div>
|
||||||
|
<div class="cl"></div>
|
||||||
<div class="mt10" style="font-weight:normal;">
|
<div class="mt10" style="font-weight:normal;">
|
||||||
<% if activity.attachments.any? %>
|
<% if activity.attachments.any? %>
|
||||||
<% activity.attachments.each do |attachment| %>
|
<% activity.attachments.each do |attachment| %>
|
||||||
<div class="break_word">
|
<div class="break_word">
|
||||||
|
<span class="fl">
|
||||||
<span title="<%= attachment.filename %>" id="attachment_">
|
<span title="<%= attachment.filename %>" id="attachment_">
|
||||||
<%= link_to_short_attachment attachment,:length=> 58, :class => 'homepagePostFileAtt newsBlue', :download => true -%>
|
<%= link_to_short_attachment attachment,:length=> 58, :class => 'link_file_a fl newsBlue', :download => true -%>
|
||||||
</span>
|
</span>
|
||||||
<% if attachment.is_text? %>
|
<% if attachment.is_text? %>
|
||||||
<%= link_to image_tag('magnifier.png'),
|
<%= link_to image_tag('magnifier.png'),
|
||||||
:controller => 'attachments',
|
:controller => 'attachments',
|
||||||
:action => 'show',
|
:action => 'show',
|
||||||
:id => attachment,
|
:id => attachment,
|
||||||
|
:class => 'fl',
|
||||||
:filename => attachment.filename %>
|
:filename => attachment.filename %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
</span>
|
||||||
<span class="postAttSize">(
|
<span class="postAttSize">(
|
||||||
<%= number_to_human_size attachment.filesize %>)
|
<%= number_to_human_size attachment.filesize %>)
|
||||||
</span>
|
</span>
|
||||||
|
<span class="author" title="<%= attachment.author%>">
|
||||||
|
<%= link_to h(truncate(attachment.author.name, length: 10, omission: '...')),user_path(attachment.author),:class => "c_orange" %>,
|
||||||
|
<%= format_time(attachment.created_on) %>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
@ -102,7 +114,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= format_time(reply.created_on) %>
|
<%= format_time(reply.created_on) %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostReplyContent break_word list_style upload_img" id="reply_content_<%= reply.id %>">
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= reply.id %>">
|
||||||
<% if reply.details.any? %>
|
<% if reply.details.any? %>
|
||||||
<% details_to_strings(reply.details).each do |string| %>
|
<% details_to_strings(reply.details).each do |string| %>
|
||||||
<p><%= string %></p>
|
<p><%= string %></p>
|
||||||
|
|
|
@ -26,13 +26,19 @@
|
||||||
<div class="homepagePostDate">
|
<div class="homepagePostDate">
|
||||||
时间:<%= format_time(activity.created_on) %>
|
时间:<%= format_time(activity.created_on) %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostIntro break_word upload_img list_style" id="activity_description_<%= user_activity_id%>">
|
<div class="homepagePostIntro break_word upload_img list_style maxh360 lh18 table_maxWidth" id="activity_description_<%= user_activity_id%>">
|
||||||
<% if activity.parent_id.nil? %>
|
<div id="intro_content_<%= user_activity_id%>">
|
||||||
<%= activity.content.to_s.html_safe%>
|
<% if activity.parent_id.nil? %>
|
||||||
<% else %>
|
<%= activity.content.to_s.html_safe%>
|
||||||
<%= activity.parent.content.to_s.html_safe%>
|
<% else %>
|
||||||
<% end %>
|
<%= activity.parent.content.to_s.html_safe%>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div id="intro_content_show_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[展开]</a></div>
|
||||||
|
<div id="intro_content_hide_<%= user_activity_id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[收起]</a></div>
|
||||||
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -79,7 +85,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= format_time(reply.created_on) %>
|
<%= format_time(reply.created_on) %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostReplyContent break_word list_style upload_img" id="reply_content_<%= reply.id %>">
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= reply.id %>">
|
||||||
<%= reply.content.html_safe %></div>
|
<%= reply.content.html_safe %></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
|
|
@ -16,6 +16,19 @@
|
||||||
$(this).addClass("referenceTypeActive");
|
$(this).addClass("referenceTypeActive");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// 点击 checkbox选中引用的资源的时候,保存该资源的id到session里去
|
||||||
|
function store_seleted_resource(dom){
|
||||||
|
if(dom.attr('checked') == 'checked' ){
|
||||||
|
$.get(
|
||||||
|
'<%= store_selected_resource_user_path %>'+'?save=y&res_id='+dom.val()
|
||||||
|
)
|
||||||
|
}else {
|
||||||
|
$.get(
|
||||||
|
'<%= store_selected_resource_user_path %>'+'?save=n&res_id='+dom.val()
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
<!--<div class="referenceResourcesPopup">-->
|
<!--<div class="referenceResourcesPopup">-->
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -39,6 +39,21 @@
|
||||||
$(function() {
|
$(function() {
|
||||||
init_activity_KindEditor_data(<%= user_activity.id%>, null, "87%");
|
init_activity_KindEditor_data(<%= user_activity.id%>, null, "87%");
|
||||||
showNormalImage('activity_description_<%= user_activity.id %>');
|
showNormalImage('activity_description_<%= user_activity.id %>');
|
||||||
|
if($("#intro_content_<%= user_activity.id %>").height() > 360) {
|
||||||
|
$("#intro_content_show_<%= user_activity.id %>").show();
|
||||||
|
}
|
||||||
|
$("#intro_content_show_<%= user_activity.id %>").click(function(){
|
||||||
|
$("#activity_description_<%= user_activity.id %>").toggleClass("maxh360");
|
||||||
|
$("#activity_description_<%= user_activity.id%>").toggleClass("lh18");
|
||||||
|
$("#intro_content_show_<%= user_activity.id %>").hide();
|
||||||
|
$("#intro_content_hide_<%= user_activity.id %>").show();
|
||||||
|
});
|
||||||
|
$("#intro_content_hide_<%= user_activity.id %>").click(function(){
|
||||||
|
$("#activity_description_<%= user_activity.id %>").toggleClass("maxh360");
|
||||||
|
$("#activity_description_<%= user_activity.id%>").toggleClass("lh18");
|
||||||
|
$("#intro_content_hide_<%= user_activity.id %>").hide();
|
||||||
|
$("#intro_content_show_<%= user_activity.id %>").show();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<% unless user_activity.act_type == "ProjectCreateInfo" %>
|
<% unless user_activity.act_type == "ProjectCreateInfo" %>
|
||||||
|
|
|
@ -0,0 +1,159 @@
|
||||||
|
<% is_teacher = User.current.allowed_to?(:as_teacher,homework_common.course) %>
|
||||||
|
<div class="HomeWork mb10" id="homework_common_<%= homework_common.id %>">
|
||||||
|
<div class="homepagePostBrief">
|
||||||
|
<div class="homepagePostPortrait">
|
||||||
|
<%=link_to image_tag(url_to_avatar(homework_common.user),width:"50px", height: "50px"), user_activities_path(homework_common.user.id)%>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostDes">
|
||||||
|
<div class="homepagePostTo mt-4">
|
||||||
|
<%= link_to homework_common.user.show_name, user_activities_path(homework_common.user_id), :class => "newsBlue mr15"%>
|
||||||
|
TO
|
||||||
|
<%= link_to homework_common.course.name, course_path(homework_common.course_id), :class => "newsBlue ml15"%>
|
||||||
|
</div>
|
||||||
|
<span class="homepagePostTitle hidden m_w530 fl">
|
||||||
|
<%= link_to homework_common.name,student_work_index_path(:homework => homework_common.id),:class => "postGrey"%>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<% if homework_common.homework_detail_manual%>
|
||||||
|
<% if homework_common.homework_detail_manual.comment_status == 1%>
|
||||||
|
<span class="grey_btn_cir ml10">未开启匿评</span>
|
||||||
|
<% elsif homework_common.homework_detail_manual.comment_status == 2%>
|
||||||
|
<span class="green_btn_cir ml10">匿评中</span>
|
||||||
|
<% elsif homework_common.homework_detail_manual.comment_status == 3%>
|
||||||
|
<span class="grey_btn_cir ml10">匿评已结束</span>
|
||||||
|
<% end%>
|
||||||
|
<% end%>
|
||||||
|
|
||||||
|
<div class="homepagePostSubmitContainer">
|
||||||
|
<div class="homepagePostSubmit">
|
||||||
|
<%= user_for_homework_common homework_common,is_teacher %>
|
||||||
|
</div>
|
||||||
|
<% if homework_common.homework_type == 2 && is_teacher%>
|
||||||
|
<div class="homepagePostSubmit">
|
||||||
|
<%= link_to "模拟答题", new_user_commit_homework_users_path(homework_id: homework_common.id, is_test: true), class: 'c_blue test-program-btn', title: '教师可以通过模拟答题设置作业的标准答案' %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
<% if homework_common.homework_type == 2%>
|
||||||
|
<div class="homepagePostDeadline mr15">
|
||||||
|
语言:
|
||||||
|
<%= homework_common.language_name%>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
<div class="homepagePostDeadline">
|
||||||
|
<%= l(:label_end_time)%>:<%= homework_common.end_time%>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostIntro break_word upload_img list_style maxh360 lh18 table_maxWidth" id="homework_description_<%= homework_common.id%>">
|
||||||
|
<div id="intro_content_<%= homework_common.id%>">
|
||||||
|
<%= homework_common.description.html_safe %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div id="intro_content_show_<%= homework_common.id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[展开]</a></div>
|
||||||
|
<div id="intro_content_hide_<%= homework_common.id%>" class="fr" style="display:none;"><a href="javascript:void(0);" class="linkBlue">[收起]</a></div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div>
|
||||||
|
<%= render :partial => 'student_work/work_attachments', :locals => {:attachments => homework_common.attachments} %>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<% if is_teacher%>
|
||||||
|
<%# if false%>
|
||||||
|
<div class="homepagePostSetting">
|
||||||
|
<ul>
|
||||||
|
<li class="homepagePostSettingIcon">
|
||||||
|
<ul class="homepagePostSettiongText">
|
||||||
|
<li>
|
||||||
|
<%= link_to l(:button_edit),edit_homework_common_path(homework_common,:is_in_course => is_in_course), :class => "postOptionLink"%>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<%= link_to(l(:label_bid_respond_delete), homework_common_path(homework_common,:is_in_course => is_in_course),:method => 'delete', :confirm => l(:text_are_you_sure), :class => "postOptionLink") %>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<%= link_to("评分设置", score_rule_set_homework_common_path(homework_common),:class => "postOptionLink", :remote => true) %>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<%= link_to("匿评设置", start_evaluation_set_homework_common_path(homework_common),:class => "postOptionLink", :remote => true) if homework_common.homework_detail_manual.comment_status == 1%>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<%= homework_anonymous_comment homework_common %>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<% end%>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<% count=homework_common.journals_for_messages.count %>
|
||||||
|
<div class="homepagePostReply">
|
||||||
|
<div class="topBorder" style="display: <%= count>0 ? 'none': '' %>"></div>
|
||||||
|
<div class="homepagePostReplyBanner" style="display: <%= count>0 ? '': 'none' %>">
|
||||||
|
<div class="homepagePostReplyBannerCount">
|
||||||
|
回复(<%= count %>)
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostReplyBannerTime"></div>
|
||||||
|
<%if count>3 %>
|
||||||
|
<div class="homepagePostReplyBannerMore">
|
||||||
|
<a id="reply_btn_<%=homework_common.id%>" onclick="expand_reply('#reply_div_<%= homework_common.id %> li','#reply_btn_<%=homework_common.id%>')" data-count="<%= count %>" data-init="0" class=" replyGrey" href="javascript:void(0)" value="show_help" >
|
||||||
|
展开更多
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<% replies_all_i = 0 %>
|
||||||
|
<% if count > 0 %>
|
||||||
|
<div class="" id="reply_div_<%= homework_common.id %>">
|
||||||
|
<ul>
|
||||||
|
<% homework_common.journals_for_messages.reorder("created_on desc").each do |comment| %>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function(){
|
||||||
|
showNormalImage('reply_content_<%= comment.id %>');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<% replies_all_i = replies_all_i + 1 %>
|
||||||
|
<li class="homepagePostReplyContainer" nhname="reply_rec" style="display:<%= replies_all_i > 3 ? 'none' : '' %>">
|
||||||
|
<div class="homepagePostReplyPortrait">
|
||||||
|
<%= link_to image_tag(url_to_avatar(comment.user), :width => "33", :height => "33", :class =>"mt8"), user_path(comment.user_id), :alt => "用户头像" %>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostReplyDes">
|
||||||
|
<div class="homepagePostReplyPublisher">
|
||||||
|
<% if comment.try(:user).try(:realname) == ' ' %>
|
||||||
|
<%= link_to comment.try(:user), user_path(comment.user_id), :class => "newsBlue mr10 f14" %>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to comment.try(:user).try(:realname), user_path(comment.user_id), :class => "newsBlue mr10 f14" %>
|
||||||
|
<% end %>
|
||||||
|
<%= format_time(comment.created_on) %>
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= comment.id %>">
|
||||||
|
<%= comment.notes.html_safe %></div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</li>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<div class="homepagePostReplyContainer borderBottomNone minHeight48">
|
||||||
|
<div class="homepagePostReplyPortrait mr15 imageFuzzy" id="reply_image_<%= homework_common.id%>"><%= link_to image_tag(url_to_avatar(User.current), :width => "33", :height => "33"), :alt => "用户头像" %></div>
|
||||||
|
<div class="homepagePostReplyInputContainer mb10">
|
||||||
|
<div nhname='new_message_<%= homework_common.id%>' style="display:none;">
|
||||||
|
<%= form_for('new_form',:url => {:controller => 'words', :action => 'leave_homework_message', :id => homework_common.id},:method => "post", :remote => true) do |f|%>
|
||||||
|
<%= hidden_field_tag 'homework_common_id',params[:homework_common_id],:value =>homework_common.id %>
|
||||||
|
<%= hidden_field_tag 'is_in_course',params[:is_in_course],:value =>is_in_course %>
|
||||||
|
<textarea placeholder="有问题或有建议,请直接给我留言吧!" style="display: none" nhname='new_message_textarea_<%= homework_common.id%>' name="homework_message"></textarea>
|
||||||
|
<div nhname='toolbar_container_<%= homework_common.id%>' style="float:left;padding-top:3px; margin-left: 5px;"></div>
|
||||||
|
<a id="new_message_submit_btn_<%= homework_common.id%>" href="javascript:void(0)" class="blue_n_btn fr" style="display:none;margin-top:6px;">发送</a>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<p nhname='contentmsg_<%= homework_common.id%>'></p>
|
||||||
|
<% end%>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div><!----HomeWork end-->
|
|
@ -1,83 +1,56 @@
|
||||||
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg',"init_activity_KindEditor" %>
|
||||||
|
<style type="text/css">
|
||||||
|
/*回复框*/
|
||||||
|
.homepagePostReplyInputContainer .ke-toolbar {display: none; width: 400px; border: none; background: none; padding: 0px 0px;}
|
||||||
|
.homepagePostReplyInputContainer .ke-toolbar-icon {line-height: 26px; font-size: 14px; padding-left: 26px;}
|
||||||
|
.homepagePostReplyInputContainer .ke-toolbar-icon-url {background-image: url(/images/public_icon.png)}
|
||||||
|
.homepagePostReplyInputContainer .ke-outline {padding: 0px 0px; line-height: 26px; font-size: 14px;}
|
||||||
|
.homepagePostReplyInputContainer .ke-icon-emoticons {background-position: 0px -671px; width: 50px; height: 26px;}
|
||||||
|
.homepagePostReplyInputContainer .ke-icon-emoticons:hover {background-position: -79px -671px; width: 50px; height: 26px;}
|
||||||
|
.homepagePostReplyInputContainer .ke-outline {border: none;}
|
||||||
|
.homepagePostReplyInputContainer .ke-inline-block {display: none;}
|
||||||
|
.homepagePostReplyInputContainer .ke-container {float: left;}
|
||||||
|
</style>
|
||||||
<% homework_commons.each do |homework_common|%>
|
<% homework_commons.each do |homework_common|%>
|
||||||
<% is_teacher = User.current.allowed_to?(:as_teacher,homework_common.course) %>
|
<script type="text/javascript">
|
||||||
<div class="HomeWork mb10">
|
$(function() {
|
||||||
<div class="homepagePostBrief">
|
init_activity_KindEditor_data(<%= homework_common.id%>, null, "87%");
|
||||||
<div class="homepagePostPortrait">
|
showNormalImage('homework_description_<%= homework_common.id%>');
|
||||||
<%=link_to image_tag(url_to_avatar(homework_common.user),width:"50px", height: "50px"), user_activities_path(homework_common.user.id)%>
|
if($("#intro_content_<%= homework_common.id%>").height() > 360) {
|
||||||
</div>
|
$("#intro_content_show_<%= homework_common.id%>").show();
|
||||||
<div class="homepagePostDes">
|
}
|
||||||
<div class="homepagePostTo mt-4">
|
$("#intro_content_show_<%= homework_common.id%>").click(function(){
|
||||||
<%= link_to homework_common.user.show_name, user_activities_path(homework_common.user_id), :class => "newsBlue mr15"%>
|
$("#homework_description_<%= homework_common.id%>").toggleClass("maxh360");
|
||||||
TO
|
$("#homework_description_<%= homework_common.id%>").toggleClass("lh18");
|
||||||
<%= link_to homework_common.course.name, course_path(homework_common.course_id), :class => "newsBlue ml15"%>
|
$("#intro_content_show_<%= homework_common.id%>").hide();
|
||||||
</div>
|
$("#intro_content_hide_<%= homework_common.id%>").show();
|
||||||
<span class="homepagePostTitle hidden m_w530 fl">
|
});
|
||||||
<%= link_to homework_common.name,student_work_index_path(:homework => homework_common.id),:class => "postGrey"%>
|
$("#intro_content_hide_<%= homework_common.id%>").click(function(){
|
||||||
</span>
|
$("#homework_description_<%= homework_common.id%>").toggleClass("maxh360");
|
||||||
|
$("#homework_description_<%= homework_common.id%>").toggleClass("lh18");
|
||||||
|
$("#intro_content_hide_<%= homework_common.id%>").hide();
|
||||||
|
$("#intro_content_show_<%= homework_common.id%>").show();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
<% if homework_common.homework_detail_manual%>
|
function expand_reply(container,btnid){
|
||||||
<% if homework_common.homework_detail_manual.comment_status == 1%>
|
var target = $(container);
|
||||||
<span class="grey_btn_cir ml10">未开启匿评</span>
|
var btn = $(btnid);
|
||||||
<% elsif homework_common.homework_detail_manual.comment_status == 2%>
|
if(btn.data('init')=='0'){
|
||||||
<span class="green_btn_cir ml10">匿评中</span>
|
btn.data('init',1);
|
||||||
<% elsif homework_common.homework_detail_manual.comment_status == 3%>
|
btn.html('收起回复');
|
||||||
<span class="grey_btn_cir ml10">匿评已结束</span>
|
target.show();
|
||||||
<% end%>
|
}else{
|
||||||
<% end%>
|
btn.data('init',0);
|
||||||
|
btn.html('展开更多');
|
||||||
<div class="homepagePostSubmitContainer">
|
target.hide();
|
||||||
<div class="homepagePostSubmit">
|
target.eq(0).show();
|
||||||
<%= user_for_homework_common homework_common,is_teacher %>
|
target.eq(1).show();
|
||||||
</div>
|
target.eq(2).show();
|
||||||
<% if homework_common.homework_type == 2 && is_teacher%>
|
}
|
||||||
<div class="homepagePostSubmit">
|
}
|
||||||
<%= link_to "模拟答题", new_user_commit_homework_users_path(homework_id: homework_common.id, is_test: true), class: 'c_blue test-program-btn', title: '教师可以通过模拟答题设置作业的标准答案' %>
|
</script>
|
||||||
</div>
|
<%= render :partial => 'users/user_homework_detail', :locals => {:homework_common => homework_common,:is_in_course => is_in_course} %>
|
||||||
<% end %>
|
|
||||||
<% if homework_common.homework_type == 2%>
|
|
||||||
<div class="homepagePostDeadline mr15">
|
|
||||||
语言:
|
|
||||||
<%= homework_common.language_name%>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
<div class="homepagePostDeadline">
|
|
||||||
<%= l(:label_end_time)%>:<%= homework_common.end_time%>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="homepagePostIntro upload_img break_word list_style">
|
|
||||||
<%= homework_common.description.html_safe %>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<%= render :partial => 'student_work/work_attachments', :locals => {:attachments => homework_common.attachments} %>
|
|
||||||
<div class="cl"></div>
|
|
||||||
</div>
|
|
||||||
<% if is_teacher%>
|
|
||||||
<%# if false%>
|
|
||||||
<div class="homepagePostSetting">
|
|
||||||
<ul>
|
|
||||||
<li class="homepagePostSettingIcon">
|
|
||||||
<ul class="homepagePostSettiongText">
|
|
||||||
<li>
|
|
||||||
<%= link_to l(:button_edit),edit_homework_common_path(homework_common,:is_in_course => is_in_course), :class => "postOptionLink"%>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<%= link_to(l(:label_bid_respond_delete), homework_common_path(homework_common,:is_in_course => is_in_course),:method => 'delete', :confirm => l(:text_are_you_sure), :class => "postOptionLink") %>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<%= link_to("匿评设置", start_evaluation_set_homework_common_path(homework_common),:class => "postOptionLink", :remote => true) if homework_common.homework_detail_manual.comment_status == 1%>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<%= homework_anonymous_comment homework_common %>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<% end%>
|
|
||||||
</div>
|
|
||||||
<div class="cl"></div>
|
|
||||||
</div>
|
|
||||||
</div><!----HomeWork end-->
|
|
||||||
<% end%>
|
<% end%>
|
||||||
<% if homework_commons.count == 10%>
|
<% if homework_commons.count == 10%>
|
||||||
<% if is_in_course == 1%>
|
<% if is_in_course == 1%>
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= format_time(comment.created_on) %>
|
<%= format_time(comment.created_on) %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostReplyContent break_word list_style upload_img" id="reply_content_<%= user_activity_id %>">
|
<div class="homepagePostReplyContent break_word list_style upload_img table_maxWidth" id="reply_content_<%= user_activity_id %>">
|
||||||
<%= comment.notes.html_safe %>
|
<%= comment.notes.html_safe %>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
||||||
</ul>
|
</ul>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if ma.course_message_type == "HomeworkCommon" && ma.status.nil? && !ma.course_message.nil? %>
|
<% if ma.course_message_type == "HomeworkCommon" && ma.status.nil?%>
|
||||||
<ul class="homepageNewsList fl">
|
<ul class="homepageNewsList fl">
|
||||||
<li class="homepageNewsPortrait fl"><a href="javascript:void(0);"><%=link_to image_tag(url_to_avatar(ma.course_message.user), :width => "30", :height => "30"), user_path(ma.course_message.user) %></a></li>
|
<li class="homepageNewsPortrait fl"><a href="javascript:void(0);"><%=link_to image_tag(url_to_avatar(ma.course_message.user), :width => "30", :height => "30"), user_path(ma.course_message.user) %></a></li>
|
||||||
<li class="homepageNewsPubType fl"><%=link_to ma.course_message.user.lastname + ma.course_message.user.firstname + "老师", user_path(ma.course_message.user), :class => "newsBlue homepageNewsPublisher" %>
|
<li class="homepageNewsPubType fl"><%=link_to ma.course_message.user.lastname + ma.course_message.user.firstname + "老师", user_path(ma.course_message.user), :class => "newsBlue homepageNewsPublisher" %>
|
||||||
|
@ -45,12 +45,12 @@
|
||||||
</li>
|
</li>
|
||||||
<li class="homepageNewsContent fl"><a href="javascript:void(0);" class="newsGrey">
|
<li class="homepageNewsContent fl"><a href="javascript:void(0);" class="newsGrey">
|
||||||
<% if !User.current.allowed_to?(:as_teacher, ma.course_message.course) && cur_user_works_for_homework(ma.course_message).nil? %>
|
<% if !User.current.allowed_to?(:as_teacher, ma.course_message.course) && cur_user_works_for_homework(ma.course_message).nil? %>
|
||||||
<%= link_to ma.course_message.name, new_student_work_path(:homework => ma.course_message.id),
|
<%= link_to "作业题目:" + ma.course_message.name, new_student_work_path(:homework => ma.course_message.id),
|
||||||
:class =>"#{ma.viewed == 0 ? "newsBlack" : "newsGrey"}",
|
:class =>"#{ma.viewed == 0 ? "newsBlack" : "newsGrey"}",
|
||||||
:onmouseover =>"message_titile_show($(this),event)",
|
:onmouseover =>"message_titile_show($(this),event)",
|
||||||
:onmouseout => "message_titile_hide($(this))" %>
|
:onmouseout => "message_titile_hide($(this))" %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= link_to ma.course_message.name, student_work_index_path(:homework => ma.course_message.id),
|
<%= link_to "作业题目:" + ma.course_message.name, student_work_index_path(:homework => ma.course_message.id),
|
||||||
:class => "#{ma.viewed == 0 ? "newsBlack" : "newsGrey"}",
|
:class => "#{ma.viewed == 0 ? "newsBlack" : "newsGrey"}",
|
||||||
:onmouseover => "message_titile_show($(this),event)",
|
:onmouseover => "message_titile_show($(this),event)",
|
||||||
:onmouseout => "message_titile_hide($(this))" %>
|
:onmouseout => "message_titile_hide($(this))" %>
|
||||||
|
@ -62,27 +62,33 @@
|
||||||
<%= User.current.lastname + User.current.firstname %>老师您好!
|
<%= User.current.lastname + User.current.firstname %>老师您好!
|
||||||
<%= User.current.eql?(ma.course_message.user)?"您":(ma.course_message.user.show_name + "老师")%>刚刚发布了一个作业:
|
<%= User.current.eql?(ma.course_message.user)?"您":(ma.course_message.user.show_name + "老师")%>刚刚发布了一个作业:
|
||||||
</p>
|
</p>
|
||||||
<p>课程名称:<%= ma.course_message.course.name %>
|
<ul class="ul_normal_color">
|
||||||
(<%= ma.course_message.course.time.to_s + '年'+ ma.course_message.course.term %>)</p>
|
<li>课程名称:<%= ma.course_message.course.name %>
|
||||||
<p>作业标题:<span style="color:Red"><%= ma.course_message.name %></span></p>
|
(<%= ma.course_message.course.time.to_s + '年'+ ma.course_message.course.term %>)</li>
|
||||||
<p>提交截止:<span style="color:Red;"><%= ma.course_message.end_time %> 24点</span></p>
|
<li>作业标题:<span style="color:Red"><%= ma.course_message.name %></span></li>
|
||||||
<p>匿评开始:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_start %> 24点</span></p>
|
<li>提交截止:<span style="color:Red;"><%= ma.course_message.end_time %> 24点</span></li>
|
||||||
<p>匿评关闭:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_end %> 24点</span></p>
|
<li>匿评开始:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_start %> 24点</span></li>
|
||||||
<p>迟交扣分:<span style="color:Red;"><%= ma.course_message.late_penalty %>分</span></p>
|
<li>匿评关闭:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_end %> 24点</span></li>
|
||||||
<p>缺评扣分:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.absence_penalty %>分</span></p>
|
<li>迟交扣分:<span style="color:Red;"><%= ma.course_message.late_penalty %>分</span></li>
|
||||||
|
<li>缺评扣分:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.absence_penalty %>分</span></li>
|
||||||
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
您可以修改作业内容、评分规则、匿评过程等,谢谢!
|
您可以修改作业内容、评分规则、匿评过程等,谢谢!
|
||||||
</p>
|
</p>
|
||||||
<% else %>
|
<% else %>
|
||||||
<p><%= User.current.lastname + User.current.firstname %>同学您好!<%= ma.course_message.user.lastname + ma.course_message.user.firstname %>老师刚刚发布了一个作业:</p>
|
<p><%= User.current.lastname + User.current.firstname %>同学您好!<%= ma.course_message.user.lastname + ma.course_message.user.firstname %>老师刚刚发布了一个作业:</p>
|
||||||
<p>课程名称:<%= ma.course_message.course.name %>
|
<ul class="ul_normal_color">
|
||||||
(<%= ma.course_message.course.time.to_s + '年'+ ma.course_message.course.term %>)</p>
|
<li>课程名称:<%= ma.course_message.course.name %>
|
||||||
<p>作业标题:<span style="color:Red;"><%= ma.course_message.name %></span></p>
|
(<%= ma.course_message.course.time.to_s + '年'+ ma.course_message.course.term %>)</li>
|
||||||
<p>提交截止:<span style="color:Red;"><%= ma.course_message.end_time %> 24点</span></p>
|
<li>作业标题:<span style="color:Red;"><%= ma.course_message.name %></span></li>
|
||||||
<p>匿评关闭:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_end %> 24点</span></p>
|
<li>提交截止:<span style="color:Red;"><%= ma.course_message.end_time %> 24点</span></li>
|
||||||
<p>迟交扣分:<span style="color:Red;"><%= ma.course_message.late_penalty %>分</span></p>
|
<li>匿评开始:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_start %> 24点</span></li>
|
||||||
|
<li>匿评关闭:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_end %> 24点</span></li>
|
||||||
|
<li>迟交扣分:<span style="color:Red;"><%= ma.course_message.late_penalty %>分</span></li>
|
||||||
|
<li>缺评扣分:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.absence_penalty %>分</span></li>
|
||||||
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
请抓紧时间提交自己的作品,谢谢!
|
请抓紧时间提交您的作品,谢谢!
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
@ -96,7 +102,7 @@
|
||||||
user_path(ma.course_message.user), :class => "newsBlue homepageNewsPublisher", :title => "#{ma.course_message.user.lastname + ma.course_message.user.firstname}老师" %>
|
user_path(ma.course_message.user), :class => "newsBlue homepageNewsPublisher", :title => "#{ma.course_message.user.lastname + ma.course_message.user.firstname}老师" %>
|
||||||
<span class="<%= ma.viewed == 0 ? "homepageNewsTypeNotRead fl":"homepageNewsType fl" %>">发布的作业:</span></li>
|
<span class="<%= ma.viewed == 0 ? "homepageNewsTypeNotRead fl":"homepageNewsType fl" %>">发布的作业:</span></li>
|
||||||
<li class="homepageHomeworkContent fl">
|
<li class="homepageHomeworkContent fl">
|
||||||
<%= link_to ma.course_message.name, student_work_index_path(:homework => ma.course_message.id),
|
<%= link_to "作业题目:" + ma.course_message.name, student_work_index_path(:homework => ma.course_message.id),
|
||||||
:class => "#{ma.viewed == 0 ? "newsBlack" : "newsGrey"}",
|
:class => "#{ma.viewed == 0 ? "newsBlack" : "newsGrey"}",
|
||||||
:onmouseover => "message_titile_show($(this),event)",
|
:onmouseover => "message_titile_show($(this),event)",
|
||||||
:onmouseout => "message_titile_hide($(this))" %>
|
:onmouseout => "message_titile_hide($(this))" %>
|
||||||
|
@ -107,22 +113,16 @@
|
||||||
<%= User.current.lastname + User.current.firstname %>同学您好!
|
<%= User.current.lastname + User.current.firstname %>同学您好!
|
||||||
<%= ma.course_message.user.lastname + ma.course_message.user.firstname %>老师发布的作业截止日期快到了:
|
<%= ma.course_message.user.lastname + ma.course_message.user.firstname %>老师发布的作业截止日期快到了:
|
||||||
</p>
|
</p>
|
||||||
<p>课程名称:<%= ma.course_message.course.name %>(<%= ma.course_message.course.time.to_s + '年'+ ma.course_message.course.term %>)</p>
|
<ul class="ul_normal_color">
|
||||||
<p>作业标题:<span style="color:Red;"><%= ma.course_message.name %></span></p>
|
<li>课程名称:<%= ma.course_message.course.name %>(<%= ma.course_message.course.time.to_s + '年'+ ma.course_message.course.term %>)</li>
|
||||||
<p>提交截止:<span style="color:Red;"><%= ma.course_message.end_time %> 24点</span></p>
|
<li>作业标题:<span style="color:Red;"><%= ma.course_message.name %></span></li>
|
||||||
<p>匿评关闭:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_end %> 24点</span></p>
|
<li>提交截止:<span style="color:Red;"><%= ma.course_message.end_time %> 24点</span></li>
|
||||||
<p>迟交扣分:<span style="color:Red;"><%= ma.course_message.late_penalty %>分</span></p>
|
<li>匿评开始:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_start %> 24点</span></li>
|
||||||
<p>请同学们抓紧时间提交自己的作品,谢谢!</p>
|
<li>匿评关闭:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_end %> 24点</span></li>
|
||||||
<% else %>
|
<li>迟交扣分:<span style="color:Red;"><%= ma.course_message.late_penalty %>分</span></li>
|
||||||
<p><%= User.current.lastname + User.current.firstname %>老师您好!<%= ma.course_message.user.lastname + ma.course_message.user.firstname %>老师发布的作业截止日期快到了:</p>
|
<li>缺评扣分:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.absence_penalty %>分</span></li>
|
||||||
<p>课程名称:<%= ma.course_message.course.name %>(<%= ma.course_message.course.time.to_s + '年'+ ma.course_message.course.term %>)</p>
|
<p>请抓紧时间提交您的作品,谢谢!</p>
|
||||||
<p>作业标题:<span style="color:Red;"><%= ma.course_message.name %></span></p>
|
</ul>
|
||||||
<p>提交截止:<span style="color:Red;"><%= ma.course_message.end_time %> 24点</span></p>
|
|
||||||
<p>匿评开始:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_start %> 24点</span></p>
|
|
||||||
<p>匿评关闭:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_end %> 24点</span></p>
|
|
||||||
<p>迟交扣分:<span style="color:Red;"><%= ma.course_message.late_penalty %>分</span></p>
|
|
||||||
<p>缺评扣分:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.absence_penalty %>分</span></p>
|
|
||||||
<p>您可以修改作业内容、评分规则、匿评过程等,谢谢!</p>
|
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<li class="homepageHomeworkContentWarn fl"> 截止时间快到了!</li>
|
<li class="homepageHomeworkContentWarn fl"> 截止时间快到了!</li>
|
||||||
|
@ -150,14 +150,15 @@
|
||||||
<%= User.current.lastname + User.current.firstname %><%= User.current.allowed_to?(:as_teacher,ma.course_message.course) ? '老师' : '同学' %>您好!
|
<%= User.current.lastname + User.current.firstname %><%= User.current.allowed_to?(:as_teacher,ma.course_message.course) ? '老师' : '同学' %>您好!
|
||||||
<%= User.current.eql?(ma.course_message.user)?"您":(ma.course_message.user.lastname + ma.course_message.user.firstname+"老师") %>开启了匿评,作业详情如下:
|
<%= User.current.eql?(ma.course_message.user)?"您":(ma.course_message.user.lastname + ma.course_message.user.firstname+"老师") %>开启了匿评,作业详情如下:
|
||||||
</p>
|
</p>
|
||||||
<p>课程名称:<%= ma.course_message.course.name %>(<%= ma.course_message.course.time.to_s + '年'+ ma.course_message.course.term %>)</p>
|
<ul class="ul_normal_color">
|
||||||
<p>作业标题:<span style="color:Red;"><%= ma.course_message.name %></span></p>
|
<li>课程名称:<%= ma.course_message.course.name %>(<%= ma.course_message.course.time.to_s + '年'+ ma.course_message.course.term %>)</li>
|
||||||
<p>缺评扣分:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.absence_penalty %>分</span></p>
|
<li>作业标题:<span style="color:Red;"><%= ma.course_message.name %></span></li>
|
||||||
<p>
|
<li>缺评扣分:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.absence_penalty %>分</span></li>
|
||||||
匿评截止:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_end %> 24点</span>
|
<li>匿评截止:<span style="color:Red;"><%= ma.course_message.homework_detail_manual.evaluation_end %> 24点</span></li>
|
||||||
</p>
|
</ul>
|
||||||
<% unless User.current.allowed_to?(:as_teacher, ma.course_message.course)%>
|
<% unless User.current.allowed_to?(:as_teacher, ma.course_message.course)%>
|
||||||
<p>请您尽早完成匿评!如果您在规定时间内未完成匿评,一次将被扣<%= ma.course_message.homework_detail_manual.absence_penalty %>分。</p>
|
<p>请您尽早完成匿评!如果您在截止日期前未完成匿评,您的最终成绩将被扣除<%= ma.course_message.homework_detail_manual.absence_penalty %>分乘以缺评份数。</p>
|
||||||
|
<p>例如,您缺评了两份作品,则您的最终成绩将被扣除 <%= ma.course_message.homework_detail_manual.absence_penalty %> * 2 = <%= ma.course_message.homework_detail_manual.absence_penalty * 2 %>分</p>
|
||||||
<% end%>
|
<% end%>
|
||||||
</div>
|
</div>
|
||||||
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
||||||
|
@ -180,8 +181,10 @@
|
||||||
<%= User.current.lastname + User.current.firstname %><%= User.current.allowed_to?(:as_teacher,ma.course_message.course) ? '老师':'同学'%>您好!
|
<%= User.current.lastname + User.current.firstname %><%= User.current.allowed_to?(:as_teacher,ma.course_message.course) ? '老师':'同学'%>您好!
|
||||||
<%= User.current.eql?(ma.course_message.user)?"您":(ma.course_message.user.lastname + ma.course_message.user.firstname+"老师") %>关闭了匿评,作业详情如下:
|
<%= User.current.eql?(ma.course_message.user)?"您":(ma.course_message.user.lastname + ma.course_message.user.firstname+"老师") %>关闭了匿评,作业详情如下:
|
||||||
</p>
|
</p>
|
||||||
<p>课程名称:<%= ma.course_message.course.name %>(<%= ma.course_message.course.time.to_s + '年'+ ma.course_message.course.term %>)</p>
|
<ul class="ul_grey">
|
||||||
<p>作业标题:<span style="color:Red;"><%= ma.course_message.name %></span></p>
|
<li>课程名称:<%= ma.course_message.course.name %>(<%= ma.course_message.course.time.to_s + '年'+ ma.course_message.course.term %>)</li>
|
||||||
|
<li>作业标题:<%= ma.course_message.name %></li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -206,14 +209,14 @@
|
||||||
<p>
|
<p>
|
||||||
<%= User.current.lastname + User.current.firstname %><%= User.current.allowed_to?(:as_teacher, ma.course_message.course) ? '老师':'同学'%>您好!
|
<%= User.current.lastname + User.current.firstname %><%= User.current.allowed_to?(:as_teacher, ma.course_message.course) ? '老师':'同学'%>您好!
|
||||||
<%= User.current.eql?(ma.course_message.user) ?"您":(ma.course_message.user.lastname + ma.course_message.user.firstname + "老师") %>启动作业匿评失败!
|
<%= User.current.eql?(ma.course_message.user) ?"您":(ma.course_message.user.lastname + ma.course_message.user.firstname + "老师") %>启动作业匿评失败!
|
||||||
<p> 失败原因:提交作品的人数低于2人</p>
|
|
||||||
</p>
|
|
||||||
<p>作业详情如下:</p>
|
|
||||||
<p>课程名称:<%= ma.course_message.course.name %>(<%= ma.course_message.course.time.to_s + '年' + ma.course_message.course.term %>)</p>
|
|
||||||
<p>作业标题:<span style="color:Red;"><%= ma.course_message.name %></span></p>
|
|
||||||
<p>
|
|
||||||
提交截止:<span style="color:Red;"><%= ma.course_message.end_time%> 24点</span>
|
|
||||||
</p>
|
</p>
|
||||||
|
<ul class="ul_normal_color">
|
||||||
|
<li>失败原因:<span style="color:red;">提交作品的人数低于2人</span></li>
|
||||||
|
<li>课程名称:<%= ma.course_message.course.name %>(<%= ma.course_message.course.time.to_s + '年' + ma.course_message.course.term %>)</li>
|
||||||
|
<li>作业标题:<span style="color:Red;"><%= ma.course_message.name %></span></li>
|
||||||
|
<li>提交截止:<span style="color:Red;"><%= ma.course_message.end_time%> 24点</span></li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -300,21 +303,18 @@
|
||||||
<%= User.current.show_name %>同学您好!
|
<%= User.current.show_name %>同学您好!
|
||||||
<%= ma.course_message.reviewer_role == 3? "匿名用户" : (ma.course_message.user.show_name + "老师")%><%= ma.status == 0? "评阅了您的作品":"重新评阅了您的作品"%>。详情如下:
|
<%= ma.course_message.reviewer_role == 3? "匿名用户" : (ma.course_message.user.show_name + "老师")%><%= ma.status == 0? "评阅了您的作品":"重新评阅了您的作品"%>。详情如下:
|
||||||
</p>
|
</p>
|
||||||
<p>课程名称:<%= ma.course.name %>(<%= ma.course.time.to_s + '年'+ ma.course.term %>)</p>
|
<ul class="ul_normal_color">
|
||||||
<p>作业标题:<span style="color:Red;"><%=ma.course_message.student_work.homework_common.name %></span></p>
|
<li>课程名称:<%= ma.course.name %>(<%= ma.course.time.to_s + '年'+ ma.course.term %>)</li>
|
||||||
<% content = ma.content.gsub("作业评分:","").split(" 评语:")%>
|
<li>作业标题:<span style="color:Red;"><%=ma.course_message.student_work.homework_common.name %></span></li>
|
||||||
|
<% content = ma.content.gsub("作业评分:","").split(" 评语:")%>
|
||||||
|
<li>作品评分:<span style="color:Red;"><%= content[0] %>分</span></li>
|
||||||
|
<% if content.size > 1 %>
|
||||||
|
<div class="fl" style="width:74px;"><li>作品评语:</li></div>
|
||||||
|
<div style="margin-left:74px"><span style="color:Red;"><%= content[1] %></span></div>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
作品评分:<%= content[0] %>
|
本次作业将在<%= ma.course_message.student_work.homework_common.homework_detail_manual.evaluation_end %> 24点结束匿评,到时您将可以看到所有其他同学的作品啦!大家可以进一步互相学习。 期待您取得更大的进步!
|
||||||
</p>
|
|
||||||
<% if content.size > 1 %>
|
|
||||||
<div class="fl">作品评语:</div>
|
|
||||||
<div class="ml60"><%= content[1] %></div>
|
|
||||||
<% end %>
|
|
||||||
<p>
|
|
||||||
本次作业将在<%= ma.course_message.student_work.homework_common.homework_detail_manual.evaluation_end %> 24点结束匿评,到时您将可以看到所有其他同学的作品啦!大家可以进一步互相学习。
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
期待您取得更大的进步!
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
@ -350,7 +350,7 @@
|
||||||
</li>
|
</li>
|
||||||
<li class="homepageNewsPubType fl">
|
<li class="homepageNewsPubType fl">
|
||||||
<%= link_to ma.course_message.user.lastname + ma.course_message.user.firstname +
|
<%= link_to ma.course_message.user.lastname + ma.course_message.user.firstname +
|
||||||
"#{ma.course_message.user.members.where("course_id=?", ma.course.id).first.roles.first.name=='Student'?"同学":"老师"}",
|
"#{ma.course_message.user.allowed_to?(:as_teacher, ma.course)?"老师":"同学"}",
|
||||||
user_path(ma.course_message.user), :class => "newsBlue homepageNewsPublisher" %>
|
user_path(ma.course_message.user), :class => "newsBlue homepageNewsPublisher" %>
|
||||||
<span class="<%= ma.viewed == 0 ? "homepageNewsTypeNotRead fl" : "homepageNewsType fl" %>">回复了作品评论:</span>
|
<span class="<%= ma.viewed == 0 ? "homepageNewsTypeNotRead fl" : "homepageNewsType fl" %>">回复了作品评论:</span>
|
||||||
</li>
|
</li>
|
||||||
|
@ -362,42 +362,48 @@
|
||||||
<div style="display: none" class="message_title_red system_message_style">
|
<div style="display: none" class="message_title_red system_message_style">
|
||||||
<p>
|
<p>
|
||||||
<%= User.current.show_name %>老师您好!
|
<%= User.current.show_name %>老师您好!
|
||||||
<%= ma.course_message.user.show_name%><%= ma.course_message.user.allowed_to?(:as_teacher, ma.course)?"老师":"学生"%>回复了您的作品评论。详情如下:
|
<%= ma.course_message.user.show_name%><%= ma.course_message.user.allowed_to?(:as_teacher, ma.course)?"老师":"同学"%>回复了您的作品评论。详情如下:
|
||||||
</p>
|
</p>
|
||||||
<div class="fl">回复内容:</div>
|
<ul class="ul_normal_color">
|
||||||
<div class="ml60"><%= ma.course_message.notes %></div>
|
<li>回复内容:<span style="color:red;"><%= ma.course_message.notes %></span></li>
|
||||||
<div class="fl">您的评论:</div>
|
<li>您的评论:<span style="color:red;"><%= ma.course_message.jour.comment %></span></li>
|
||||||
<div class="ml60"><%= ma.course_message.jour.comment %></div>
|
<li>课程名称:<%= ma.course.name %>(<%= ma.course.time.to_s + '年'+ ma.course.term %>)</li>
|
||||||
<p>课程名称:<%= ma.course.name %>(<%= ma.course.time.to_s + '年'+ ma.course.term %>)</p>
|
<li>作业标题:<span style="color:Red;"><%=ma.course_message.jour.student_work.homework_common.name %></span></li>
|
||||||
<p>作业标题:<span style="color:Red;"><%=ma.course_message.jour.student_work.homework_common.name %></span></p>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
||||||
</ul>
|
</ul>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<!-- 作业迟交,不能参与匿评提醒消息 -->
|
<!-- 作业迟交,不能参与匿评提醒消息 -->
|
||||||
<% if ma.course_message_type == "NoEvaluation" %>
|
<% if ma.course_message_type == "StudentWork" && !ma.course_message.homework_common.nil? %>
|
||||||
<ul class="homepageNewsList fl">
|
<ul class="homepageNewsList fl">
|
||||||
<li class="homepageNewsPortrait fl"><a href="javascript:void(0);"></a></li>
|
<li class="homepageNewsPortrait fl"><a href="javascript:void(0);"><%= link_to image_tag(url_to_avatar(ma.course_message.homework_common.user), :width => "30", :height => "30"), user_path(ma.course_message.homework_common.user) %></a></li>
|
||||||
<li class="homepageNewsPubType fl">
|
<li class="homepageNewsPubType fl">
|
||||||
<span class="<%= ma.viewed == 0 ? "homepageNewsTypeNotRead fl":"homepageNewsType fl" %>">迟交作业,不能参与作业匿评!</span>
|
<%=link_to ma.course_message.homework_common.user.show_name, user_path(ma.course_message.homework_common.user), :class => "newsBlue homepageNewsPublisher" %>
|
||||||
|
<span class="<%= ma.viewed == 0 ? "homepageNewsTypeNotRead fl":"homepageNewsType fl" %>">发布的作业:</span>
|
||||||
</li>
|
</li>
|
||||||
<% student_work = StudentWork.find(ma.course_message_id)%>
|
<li class="homepageHomeworkContent fl"><a href="javascript:void(0);" class="newsGrey">
|
||||||
<li class="homepageNewsContent fl"><a href="javascript:void(0);" class="newsGrey">
|
<%= link_to "作业题目:" + ma.course_message.homework_common.name, student_work_index_path(:homework => ma.course_message.homework_common_id),
|
||||||
<%= link_to "由于迟交作业,您及您的作品都不能参与作业的匿评", student_work_index_path(:homework => student_work.homework_common_id),
|
|
||||||
:class => "#{ma.viewed==0 ? "newsBlack" : "newsGrey"}",
|
:class => "#{ma.viewed==0 ? "newsBlack" : "newsGrey"}",
|
||||||
:onmouseover => "message_titile_show($(this),event)",
|
:onmouseover => "message_titile_show($(this),event)",
|
||||||
:onmouseout => "message_titile_hide($(this))" %></a></li>
|
:onmouseout => "message_titile_hide($(this))" %></a>
|
||||||
|
</li>
|
||||||
<div style="display: none" class="message_title_red system_message_style">
|
<div style="display: none" class="message_title_red system_message_style">
|
||||||
<p>
|
<p>
|
||||||
<%= User.current.lastname + User.current.firstname %>
|
<%= User.current.lastname + User.current.firstname %>
|
||||||
<%= User.current.allowed_to?(:as_teacher,student_work.homework_common.course) ? '老师':'同学'%>您好!由于迟交作业,您及您的作品都不能参与以下作业的匿评。作业详情如下:
|
<%= User.current.allowed_to?(:as_teacher,ma.course_message.homework_common.course) ? '老师':'同学'%>您好!由于迟交作业,您及您的作品都不能参与以下作业的匿评。作业详情如下:
|
||||||
</p>
|
</p>
|
||||||
<p>课程名称:<%= student_work.homework_common.course.name %>(<%= student_work.homework_common.course.time.to_s + '年' + student_work.homework_common.course.term %>)</p>
|
<ul class="ul_grey">
|
||||||
<p>作业标题:<span style="color:Red;"><%=student_work.homework_common.name %></span></p>
|
<li>课程名称:<%= ma.course_message.homework_common.course.name %>(<%= ma.course_message.homework_common.course.time.to_s + '年' + ma.course_message.homework_common.course.term %>)</li>
|
||||||
<p>提交截止:<span style="color:Red;"><%=student_work.homework_common.end_time %> 24:00</span></p>
|
<li>作业标题:<%= ma.course_message.homework_common.name %></li>
|
||||||
<p>提交时间:<span style="color:Red;"><%=format_time(student_work.created_at) %></span></p>
|
<li>提交截止:<%= ma.course_message.homework_common.end_time %> 24:00</li>
|
||||||
|
<li>提交时间:<%= format_time(ma.course_message.created_at) %></li>
|
||||||
|
<li>迟交扣分:<%= ma.course_message.homework_common.late_penalty %>分</li>
|
||||||
|
</ul>
|
||||||
|
<p>如需获得最终成绩,请您联系主讲老师对您的作品进行单独评分!</p>
|
||||||
</div>
|
</div>
|
||||||
|
<li class="homepageHomeworkContentWarn fl"> 您迟交了作品!</li>
|
||||||
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
||||||
</ul>
|
</ul>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
@ -428,4 +434,73 @@
|
||||||
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
||||||
</ul>
|
</ul>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<% if ma.course_message_type == "JoinCourseRequest" %>
|
||||||
|
<ul class="homepageNewsList fl">
|
||||||
|
<li class="homepageNewsPortrait fl"><a href="javascript:void(0);"></a></li>
|
||||||
|
<li class="homepageNewsPubType fl">
|
||||||
|
<span class="newsBlue homepageNewsPublisher">系统提示</span>
|
||||||
|
<span class="<%= ma.viewed == 0 ? "homepageNewsTypeNotRead fl":"homepageNewsType fl" %>">您有了新的课程成员申请:</span>
|
||||||
|
</li>
|
||||||
|
<li class="homepageHomeworkContent fl"><a href="javascript:void(0);" class="newsGrey">
|
||||||
|
<%= link_to User.find(ma.course_message_id).name+"申请成为课程\""+"#{Course.find(ma.course_id).name}"+"\"的"+"#{ma.content == '9' ? "教师" : "教辅"}", user_path(User.find(ma.course_message_id), :course_id => ma.course_id),
|
||||||
|
:class => "#{ma.viewed==0 ? "newsBlack" : "newsGrey"}",
|
||||||
|
:onmouseover => "message_titile_show($(this),event)",
|
||||||
|
:onmouseout => "message_titile_hide($(this))" %></a>
|
||||||
|
</li>
|
||||||
|
<div style="display: none" class="message_title_red system_message_style">
|
||||||
|
<p>
|
||||||
|
<%= User.current.lastname + User.current.firstname %>老师您好!您有了新的课程成员申请,信息如下:
|
||||||
|
</p>
|
||||||
|
<p>真实姓名:<%= User.find(ma.course_message_id).realname %></p>
|
||||||
|
<p>申请课程:<%= Course.find(ma.course_id).name%></p>
|
||||||
|
<div class="fl">课程描述:</div>
|
||||||
|
<div class="ml60"><%= Course.find(ma.course_id).description.html_safe %></div>
|
||||||
|
<p>申请职位:<%= ma.content == '9' ? "教师" : "教辅"%></p>
|
||||||
|
</div>
|
||||||
|
<li class="homepageHomeworkContentWarn fl">
|
||||||
|
<span id="deal_info_<%=ma.id%>">
|
||||||
|
<% if ma.status == 0 || ma.status.nil?%>
|
||||||
|
<%= link_to '同意',dealwith_apply_request_user_path(User.current,:agree=>'Y',:msg_id=>ma.id),:remote=>'true'%>
|
||||||
|
|
|
||||||
|
<%= link_to '拒绝',dealwith_apply_request_user_path(User.current,:agree=>'N',:msg_id=>ma.id),:remote=>'true'%>
|
||||||
|
<% elsif ma.status == 1%> <!-- 同意 -->
|
||||||
|
您已经同意了该申请
|
||||||
|
<% elsif ma.status == 2%> <!-- 拒绝 -->
|
||||||
|
您已经拒绝了该申请
|
||||||
|
<%end %>
|
||||||
|
</span>
|
||||||
|
</li>
|
||||||
|
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
||||||
|
</ul>
|
||||||
|
<% end %>
|
||||||
|
<% if ma.course_message_type == "CourseRequestDealResult" %>
|
||||||
|
<ul class="homepageNewsList fl">
|
||||||
|
<li class="homepageNewsPortrait fl"><a href="javascript:void(0);"></a></li>
|
||||||
|
<li class="homepageNewsPubType fl">
|
||||||
|
<span class="newsBlue homepageNewsPublisher">系统提示</span>
|
||||||
|
<span class="<%= ma.viewed == 0 ? "homepageNewsTypeNotRead fl":"homepageNewsType fl" %>">
|
||||||
|
课程申请进度反馈:</span>
|
||||||
|
</li>
|
||||||
|
<li class="homepageNewsContent fl"><a href="javascript:void(0);" class="newsGrey">
|
||||||
|
<%= link_to ma.status == 1 ?
|
||||||
|
'您申请成为课程"'+Course.find(ma.course_id).name+'"的'+(ma.content == '9' ? '老师' : '教辅')+'申请已通过'
|
||||||
|
:
|
||||||
|
'您申请成为课程"'+Course.find(ma.course_id).name+'"的'+(ma.content == '9' ? '老师' : '教辅')+'的申请被拒绝', course_path(Course.find(ma.course_id)),
|
||||||
|
:class => "#{ma.viewed==0 ? "newsBlack" : "newsGrey"}",
|
||||||
|
:onmouseover => "message_titile_show($(this),event)",
|
||||||
|
:onmouseout => "message_titile_hide($(this))" %></a>
|
||||||
|
</span>
|
||||||
|
</li>
|
||||||
|
<div style="display: none" class="message_title_red system_message_style">
|
||||||
|
<p>
|
||||||
|
<%= User.current.lastname + User.current.firstname %>老师您好!您已成功加入课程<%= Course.find(ma.course_id).name%>。
|
||||||
|
</p>
|
||||||
|
<p>申请课程:<%= Course.find(ma.course_id).name%></p>
|
||||||
|
<div class="fl">课程描述:</div>
|
||||||
|
<div class="ml60"><%= Course.find(ma.course_id).description.html_safe %></div>
|
||||||
|
<p>申请职位:<%= ma.content == '9' ? "教师" : "教辅"%></p>
|
||||||
|
</div>
|
||||||
|
<li class="homepageNewsTime fl"><%= time_tag(ma.created_at).html_safe %> </li>
|
||||||
|
</ul>
|
||||||
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
|
@ -0,0 +1,11 @@
|
||||||
|
$("#deal_info_<%=@msg.id%>").html(
|
||||||
|
<% if @msg.status == 0 || @msg.status.nil?%>
|
||||||
|
<%= link_to '同意',dealwith_apply_request_user_path(User.current,:agree=>'Y',:msg_id=>@msg.id),:remote=>'true'%>
|
||||||
|
'|'
|
||||||
|
<%= link_to '拒绝',dealwith_apply_request_user_path(User.current,:agree=>'N',:msg_id=>@msg.id),:remote=>'true'%>
|
||||||
|
<% elsif @msg.status == 1%>
|
||||||
|
'您已经同意了该申请'
|
||||||
|
<% elsif @msg.status == 2%>
|
||||||
|
'您已经拒绝了该申请'
|
||||||
|
<%end %>
|
||||||
|
);
|
|
@ -1,13 +1,13 @@
|
||||||
<% unless @attachments.empty?%>
|
<% unless @attachments.empty?%>
|
||||||
<% @attachments.each_with_index do |attachment, i| %>
|
<% @attachments.each do |attachment| %>
|
||||||
$("#attachments_fields").append(
|
$("#attachments_fields").append(
|
||||||
'<span id="attachments_p<%= i %>">'+
|
'<span id="attachments_p<%= attachment.id %>">'+
|
||||||
'<%= text_field_tag("attachments[p#{i}][filename]", attachment.filename, :class => "filename link_file", :readonly=>"readonly")%>'+
|
'<%= text_field_tag("attachments[p#{attachment.id}][filename]", attachment.filename, :class => "filename link_file", :readonly=>"readonly")%>'+
|
||||||
'<%= text_field_tag("attachments[p#{i}][description]", attachment.description, :maxlength => 254, :placeholder => l(:label_optional_description), :class => "description", :style=>"display: inline-block;") %>'+
|
'<%= text_field_tag("attachments[p#{attachment.id}][description]", attachment.description, :maxlength => 254, :placeholder => l(:label_optional_description), :class => "description", :style=>"display: inline-block;") %>'+
|
||||||
'<span class="ispublic-label"><%= l(:field_is_public)%>:</span>'+
|
'<span class="ispublic-label"><%= l(:field_is_public)%>:</span>'+
|
||||||
'<%= check_box_tag("attachments[p#{i}][is_public_checkbox]", attachment.is_public,attachment.is_public == 1 ? true : false,:class => "is_public")%>'+
|
'<%= check_box_tag("attachments[p#{attachment.id}][is_public_checkbox]", attachment.is_public,attachment.is_public == 1 ? true : false,:class => "is_public")%>'+
|
||||||
'<%= link_to(" ".html_safe, attachment_path(attachment, :attachment_id => "p#{i}", :format => "js"), :method => "delete", :remote => true, :class => "remove-upload") unless attachment.id.nil? %>'+
|
'<%= link_to(" ".html_safe, attachment_path(attachment, :attachment_id => "p#{attachment.id}", :format => "js"), :method => "delete", :remote => true, :class => "remove-upload") unless attachment.id.nil? %>'+
|
||||||
'<%= hidden_field_tag "attachments[p#{i}][token]", "#{attachment.token}" %>'+
|
'<%= hidden_field_tag "attachments[p#{attachment.id}][token]", "#{attachment.token}" %>'+
|
||||||
'</span>'+
|
'</span>'+
|
||||||
'<div class="cl"></div>')
|
'<div class="cl"></div>')
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
<% if @user_activity_id %>
|
||||||
|
$("#user_activity_<%= @user_activity_id%>").replaceWith("<%= escape_javascript(render :partial => 'users/course_homework', :locals => {:activity => @homework_common,:user_activity_id =>@user_activity_id}) %>");
|
||||||
|
init_activity_KindEditor_data(<%= @user_activity_id%>,"","87%");
|
||||||
|
<% elsif @homework_common_id && @is_in_course %>
|
||||||
|
$("#homework_common_<%= @homework_common_id %>").replaceWith("<%= escape_javascript(render :partial => 'users/user_homework_detail', :locals => {:homework_common => @homework_common,:is_in_course => @is_in_course}) %>");
|
||||||
|
init_activity_KindEditor_data(<%= @homework_common_id%>,"","87%");
|
||||||
|
<% end %>
|
|
@ -27,7 +27,7 @@ zh:
|
||||||
# 资源库 (课程、项目按类型分)
|
# 资源库 (课程、项目按类型分)
|
||||||
label_course_file: 资源库
|
label_course_file: 资源库
|
||||||
label_upload_files: 上传资源
|
label_upload_files: 上传资源
|
||||||
|
label_apply_join_course: 申请加入课程
|
||||||
#
|
#
|
||||||
# 课程托管平台主页
|
# 课程托管平台主页
|
||||||
#
|
#
|
||||||
|
|
|
@ -102,6 +102,7 @@ RedmineApp::Application.routes.draw do
|
||||||
get 'stop_anonymous_comment'
|
get 'stop_anonymous_comment'
|
||||||
get 'alert_anonymous_comment'
|
get 'alert_anonymous_comment'
|
||||||
get 'start_evaluation_set'
|
get 'start_evaluation_set'
|
||||||
|
get 'score_rule_set'
|
||||||
post 'set_evaluation_attr'
|
post 'set_evaluation_attr'
|
||||||
end
|
end
|
||||||
collection do
|
collection do
|
||||||
|
@ -387,9 +388,19 @@ RedmineApp::Application.routes.draw do
|
||||||
get 'user_resource_type'
|
get 'user_resource_type'
|
||||||
get 'user_ref_resource_search'
|
get 'user_ref_resource_search'
|
||||||
post 'import_resources_to_homework'
|
post 'import_resources_to_homework'
|
||||||
|
get 'dealwith_apply_request'
|
||||||
get 'store_selected_resource'
|
get 'store_selected_resource'
|
||||||
# end
|
# end
|
||||||
end
|
end
|
||||||
|
#resources :blogs
|
||||||
|
resources :blogs do
|
||||||
|
resources :blog_comments do
|
||||||
|
member do
|
||||||
|
post 'reply'
|
||||||
|
get 'quote'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
match 'users/:id/user_newfeedback', :to => 'users#user_newfeedback', :via => :get, :as => "feedback"
|
match 'users/:id/user_newfeedback', :to => 'users#user_newfeedback', :via => :get, :as => "feedback"
|
||||||
match 'users/:id/user_projects', :to => 'users#user_projects', :via => :get
|
match 'users/:id/user_projects', :to => 'users#user_projects', :via => :get
|
||||||
|
@ -856,6 +867,7 @@ RedmineApp::Application.routes.draw do
|
||||||
match 'projects/:id/feedback', :to => 'projects#feedback', :via => :get, :as => 'project_feedback'
|
match 'projects/:id/feedback', :to => 'projects#feedback', :via => :get, :as => 'project_feedback'
|
||||||
match 'project/:id/share', :to => 'projects#share', :as => 'share_show' #share
|
match 'project/:id/share', :to => 'projects#share', :as => 'share_show' #share
|
||||||
post 'words/:id/leave_user_message', :to => 'words#leave_user_message', :as => "leave_user_message"
|
post 'words/:id/leave_user_message', :to => 'words#leave_user_message', :as => "leave_user_message"
|
||||||
|
post 'words/:id/leave_homework_message', :to => 'words#leave_homework_message', :as => "leave_homework_message"
|
||||||
|
|
||||||
post 'join_in/join', :to => 'courses#join', :as => 'join'
|
post 'join_in/join', :to => 'courses#join', :as => 'join'
|
||||||
delete 'join_in/join', :to => 'courses#unjoin'
|
delete 'join_in/join', :to => 'courses#unjoin'
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
class CreateBlogs < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
create_table :blogs do |t|
|
||||||
|
t.string "name", :default => "", :null => false
|
||||||
|
t.text "description"
|
||||||
|
t.integer "position", :default => 1
|
||||||
|
t.integer "article_count", :default => 0, :null => false
|
||||||
|
t.integer "comments_count", :default => 0, :null => false
|
||||||
|
t.integer "last_comments_id"
|
||||||
|
t.integer "parent_id"
|
||||||
|
t.integer "author_id"
|
||||||
|
t.timestamps
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -0,0 +1,19 @@
|
||||||
|
class CreateBlogComments < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
create_table :blog_comments do |t|
|
||||||
|
t.integer "blog_id", :null => false
|
||||||
|
t.integer "parent_id"
|
||||||
|
t.string "title", :default => "", :null => false
|
||||||
|
t.text "content"
|
||||||
|
t.integer "author_id"
|
||||||
|
t.integer "comments_count", :default => 0, :null => false
|
||||||
|
t.integer "last_comment_id"
|
||||||
|
t.datetime "created_on", :null => false
|
||||||
|
t.datetime "updated_on", :null => false
|
||||||
|
t.boolean "locked", :default => false
|
||||||
|
t.integer "sticky", :default => 0
|
||||||
|
t.integer "reply_id"
|
||||||
|
t.timestamps
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
77
db/schema.rb
77
db/schema.rb
|
@ -11,7 +11,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended to check this file into your version control system.
|
# It's strongly recommended to check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(:version => 20151020021234) do
|
ActiveRecord::Schema.define(:version => 20151022071804) do
|
||||||
|
|
||||||
create_table "activities", :force => true do |t|
|
create_table "activities", :force => true do |t|
|
||||||
t.integer "act_id", :null => false
|
t.integer "act_id", :null => false
|
||||||
|
@ -144,6 +144,36 @@ ActiveRecord::Schema.define(:version => 20151020021234) do
|
||||||
t.integer "open_anonymous_evaluation", :default => 1
|
t.integer "open_anonymous_evaluation", :default => 1
|
||||||
end
|
end
|
||||||
|
|
||||||
|
create_table "blog_comments", :force => true do |t|
|
||||||
|
t.integer "blog_id", :null => false
|
||||||
|
t.integer "parent_id"
|
||||||
|
t.string "title", :default => "", :null => false
|
||||||
|
t.text "content"
|
||||||
|
t.integer "author_id"
|
||||||
|
t.integer "comments_count", :default => 0, :null => false
|
||||||
|
t.integer "last_comment_id"
|
||||||
|
t.datetime "created_on", :null => false
|
||||||
|
t.datetime "updated_on", :null => false
|
||||||
|
t.boolean "locked", :default => false
|
||||||
|
t.integer "sticky", :default => 0
|
||||||
|
t.integer "reply_id"
|
||||||
|
t.datetime "created_at", :null => false
|
||||||
|
t.datetime "updated_at", :null => false
|
||||||
|
end
|
||||||
|
|
||||||
|
create_table "blogs", :force => true do |t|
|
||||||
|
t.string "name", :default => "", :null => false
|
||||||
|
t.text "description"
|
||||||
|
t.integer "position", :default => 1
|
||||||
|
t.integer "article_count", :default => 0, :null => false
|
||||||
|
t.integer "comments_count", :default => 0, :null => false
|
||||||
|
t.integer "last_comments_id"
|
||||||
|
t.integer "parent_id"
|
||||||
|
t.integer "author_id"
|
||||||
|
t.datetime "created_at", :null => false
|
||||||
|
t.datetime "updated_at", :null => false
|
||||||
|
end
|
||||||
|
|
||||||
create_table "boards", :force => true do |t|
|
create_table "boards", :force => true do |t|
|
||||||
t.integer "project_id", :null => false
|
t.integer "project_id", :null => false
|
||||||
t.string "name", :default => "", :null => false
|
t.string "name", :default => "", :null => false
|
||||||
|
@ -497,26 +527,23 @@ ActiveRecord::Schema.define(:version => 20151020021234) do
|
||||||
add_index "documents", ["created_on"], :name => "index_documents_on_created_on"
|
add_index "documents", ["created_on"], :name => "index_documents_on_created_on"
|
||||||
add_index "documents", ["project_id"], :name => "documents_project_id"
|
add_index "documents", ["project_id"], :name => "documents_project_id"
|
||||||
|
|
||||||
create_table "dts", :primary_key => "Num", :force => true do |t|
|
create_table "dts", :force => true do |t|
|
||||||
t.string "Defect", :limit => 50
|
t.string "IPLineCode"
|
||||||
t.string "Category", :limit => 50
|
|
||||||
t.string "File"
|
|
||||||
t.string "Method"
|
|
||||||
t.string "Module", :limit => 20
|
|
||||||
t.string "Variable", :limit => 50
|
|
||||||
t.integer "StartLine"
|
|
||||||
t.integer "IPLine"
|
|
||||||
t.string "IPLineCode", :limit => 200
|
|
||||||
t.string "Judge", :limit => 15
|
|
||||||
t.integer "Review", :limit => 1
|
|
||||||
t.string "Description"
|
t.string "Description"
|
||||||
t.text "PreConditions", :limit => 2147483647
|
t.string "Num"
|
||||||
t.text "TraceInfo", :limit => 2147483647
|
t.string "Variable"
|
||||||
t.text "Code", :limit => 2147483647
|
t.string "TraceInfo"
|
||||||
|
t.string "Method"
|
||||||
|
t.string "File"
|
||||||
|
t.string "IPLine"
|
||||||
|
t.string "Review"
|
||||||
|
t.string "Category"
|
||||||
|
t.string "Defect"
|
||||||
|
t.string "PreConditions"
|
||||||
|
t.string "StartLine"
|
||||||
t.integer "project_id"
|
t.integer "project_id"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.integer "id", :null => false
|
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "enabled_modules", :force => true do |t|
|
create_table "enabled_modules", :force => true do |t|
|
||||||
|
@ -785,6 +812,16 @@ ActiveRecord::Schema.define(:version => 20151020021234) do
|
||||||
|
|
||||||
add_index "journal_details", ["journal_id"], :name => "journal_details_journal_id"
|
add_index "journal_details", ["journal_id"], :name => "journal_details_journal_id"
|
||||||
|
|
||||||
|
create_table "journal_details_copy", :force => true do |t|
|
||||||
|
t.integer "journal_id", :default => 0, :null => false
|
||||||
|
t.string "property", :limit => 30, :default => "", :null => false
|
||||||
|
t.string "prop_key", :limit => 30, :default => "", :null => false
|
||||||
|
t.text "old_value"
|
||||||
|
t.text "value"
|
||||||
|
end
|
||||||
|
|
||||||
|
add_index "journal_details_copy", ["journal_id"], :name => "journal_details_journal_id"
|
||||||
|
|
||||||
create_table "journal_replies", :id => false, :force => true do |t|
|
create_table "journal_replies", :id => false, :force => true do |t|
|
||||||
t.integer "journal_id"
|
t.integer "journal_id"
|
||||||
t.integer "user_id"
|
t.integer "user_id"
|
||||||
|
@ -1155,7 +1192,6 @@ ActiveRecord::Schema.define(:version => 20151020021234) do
|
||||||
t.string "enterprise_name"
|
t.string "enterprise_name"
|
||||||
t.integer "organization_id"
|
t.integer "organization_id"
|
||||||
t.integer "project_new_type"
|
t.integer "project_new_type"
|
||||||
t.integer "gpid"
|
|
||||||
end
|
end
|
||||||
|
|
||||||
add_index "projects", ["lft"], :name => "index_projects_on_lft"
|
add_index "projects", ["lft"], :name => "index_projects_on_lft"
|
||||||
|
@ -1572,7 +1608,6 @@ ActiveRecord::Schema.define(:version => 20151020021234) do
|
||||||
t.string "identity_url"
|
t.string "identity_url"
|
||||||
t.string "mail_notification", :default => "", :null => false
|
t.string "mail_notification", :default => "", :null => false
|
||||||
t.string "salt", :limit => 64
|
t.string "salt", :limit => 64
|
||||||
t.integer "gid"
|
|
||||||
end
|
end
|
||||||
|
|
||||||
add_index "users", ["auth_source_id"], :name => "index_users_on_auth_source_id"
|
add_index "users", ["auth_source_id"], :name => "index_users_on_auth_source_id"
|
||||||
|
|
|
@ -263,7 +263,7 @@ K.options = {
|
||||||
cssData : '',
|
cssData : '',
|
||||||
minWidth : 650,
|
minWidth : 650,
|
||||||
minHeight : 100,
|
minHeight : 100,
|
||||||
minChangeSize : 50,
|
minChangeSize : 1,
|
||||||
zIndex : 811213,
|
zIndex : 811213,
|
||||||
items : ['code','emoticons','fontname',
|
items : ['code','emoticons','fontname',
|
||||||
'forecolor', 'hilitecolor', 'bold', '|', 'justifyleft', 'justifycenter', 'insertorderedlist','insertunorderedlist', '|',
|
'forecolor', 'hilitecolor', 'bold', '|', 'justifyleft', 'justifycenter', 'insertorderedlist','insertunorderedlist', '|',
|
||||||
|
@ -277,7 +277,7 @@ K.options = {
|
||||||
['#337FE5', '#003399', '#4C33E5', '#9933E5', '#CC33E5', '#EE33EE'],
|
['#337FE5', '#003399', '#4C33E5', '#9933E5', '#CC33E5', '#EE33EE'],
|
||||||
['#FFFFFF', '#CCCCCC', '#999999', '#666666', '#333333', '#000000']
|
['#FFFFFF', '#CCCCCC', '#999999', '#666666', '#333333', '#000000']
|
||||||
],
|
],
|
||||||
fontSizeTable : ['9px', '10px', '12px', '14px', '16px', '18px', '24px', '32px'],
|
fontSizeTable : ['选中的字体大小:','9px', '10px', '12px', '14px', '16px', '18px', '24px', '32px'],
|
||||||
htmlTags : {
|
htmlTags : {
|
||||||
font : ['id', 'class', 'color', 'size', 'face', '.background-color'],
|
font : ['id', 'class', 'color', 'size', 'face', '.background-color'],
|
||||||
span : [
|
span : [
|
||||||
|
@ -5737,20 +5737,45 @@ _plugin('core', function(K) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
self.clickToolbar('fontsize', function() {
|
self.clickToolbar('fontsize', function() {
|
||||||
|
// knode = self.getSelectedAnchor();
|
||||||
|
|
||||||
|
//console.log(self.cmd.range.startContainer.parentElement.style.fontSize)
|
||||||
var curVal = self.cmd.val('fontsize'),
|
var curVal = self.cmd.val('fontsize'),
|
||||||
menu = self.createMenu({
|
menu = self.createMenu({
|
||||||
name : 'fontsize',
|
name : 'fontsize',
|
||||||
width : 150
|
width : 150
|
||||||
});
|
});
|
||||||
_each(self.fontSizeTable, function(i, val) {
|
_each(self.fontSizeTable, function(i, val) {
|
||||||
menu.addItem({
|
if (i==0){
|
||||||
title : '<span style="font-size:' + val + ';" unselectable="on">' + val + '</span>',
|
fontsize = "14px"
|
||||||
height : _removeUnit(val) + 12,
|
if(self.cmd.range.startContainer.parentElement.style.fontSize) {
|
||||||
checked : curVal === val,
|
fontsize = self.cmd.range.startContainer.parentElement.style.fontSize
|
||||||
click : function() {
|
menu.addItem({
|
||||||
self.exec('fontsize', val).hideMenu();
|
title: '<span style="font-size:14px ;" unselectable="on">首个选中字体:' + fontsize + '</span>',
|
||||||
}
|
height: 14,
|
||||||
});
|
click: function () {
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}else {
|
||||||
|
menu.addItem({
|
||||||
|
title: '<span style="font-size:14px ;" unselectable="on">当前为默认字体:' + fontsize + '</span>',
|
||||||
|
height: 14,
|
||||||
|
click: function () {
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
menu.addItem({
|
||||||
|
title: '<span style="font-size:' + val + ';" unselectable="on">' + val + '</span>',
|
||||||
|
height: _removeUnit(val) + 12,
|
||||||
|
checked: curVal === val,
|
||||||
|
click: function () {
|
||||||
|
self.exec('fontsize', val).hideMenu();
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
_each('forecolor,hilitecolor'.split(','), function(i, name) {
|
_each('forecolor,hilitecolor'.split(','), function(i, name) {
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 976 B |
Binary file not shown.
After Width: | Height: | Size: 976 B |
|
@ -0,0 +1,82 @@
|
||||||
|
function regexTopicSubject() {
|
||||||
|
var name = $("#message_subject").val();
|
||||||
|
if(name.length ==0)
|
||||||
|
{
|
||||||
|
$("#subjectmsg").text("标题不能为空");
|
||||||
|
$("#subjectmsg").css('color','#ff0000');
|
||||||
|
$("#message_subject").focus();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else if(name.length <= 255)
|
||||||
|
{
|
||||||
|
$("#subjectmsg").text("填写正确");
|
||||||
|
$("#subjectmsg").css('color','#008000');
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$("#subjectmsg").text("标题超过255个字符");
|
||||||
|
$("#subjectmsg").css('color','#ff0000');
|
||||||
|
$("#message_subject").focus();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function submit_article()
|
||||||
|
{
|
||||||
|
if(regexTopicSubject() && regexTopicDescription())
|
||||||
|
{
|
||||||
|
message_content_editor.sync();
|
||||||
|
$("#message-form").submit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function regexTopicDescription()
|
||||||
|
{
|
||||||
|
var name = message_content_editor.html();
|
||||||
|
if(name.length ==0)
|
||||||
|
{
|
||||||
|
$("#message_content_span").text("描述不能为空");
|
||||||
|
$("#message_content_span").css('color','#ff0000');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else if(name.length >=20000){
|
||||||
|
$("#message_content_span").text("描述最多20000个汉字(或40000个英文字符)");
|
||||||
|
$("#message_content_span").css('color','#ff0000');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$("#message_content_span").text("填写正确");
|
||||||
|
$("#message_content_span").css('color','#008000');
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function MessageReplayVevify() {
|
||||||
|
var content = message_content_editor.html();//$.trim($("#message_content").val());
|
||||||
|
if (content.length == 0) {
|
||||||
|
$("#message_content_span").text("回复不能为空");
|
||||||
|
$("#message_content_span").css('color', '#ff0000');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$("#message_content_span").text("填写正确");
|
||||||
|
$("#message_content_span").css('color', '#008000');
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function submit_message_replay()
|
||||||
|
{
|
||||||
|
if(MessageReplayVevify())
|
||||||
|
{
|
||||||
|
message_content_editor.sync();//提交内容之前要sync,不然服务器端取不到值
|
||||||
|
$("#message_form").submit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function canel_message_replay()
|
||||||
|
{
|
||||||
|
$("#reply").hide(200);
|
||||||
|
$("#message_quote").html("");
|
||||||
|
}
|
|
@ -1871,7 +1871,7 @@ span.required {color: #bb0000;}
|
||||||
#attachments_fields .ajax-waiting input.filename {background:url(../images/hourglass.png) no-repeat 0px 50%;}
|
#attachments_fields .ajax-waiting input.filename {background:url(../images/hourglass.png) no-repeat 0px 50%;}
|
||||||
#attachments_fields .ajax-loading input.filename {background:url(../images/loading.gif) no-repeat 0px 50%;}
|
#attachments_fields .ajax-loading input.filename {background:url(../images/loading.gif) no-repeat 0px 50%;}
|
||||||
#attachments_fields div.ui-progressbar { width: 100px; height:14px; margin: 2px 0 -5px 8px; display: inline-block; }
|
#attachments_fields div.ui-progressbar { width: 100px; height:14px; margin: 2px 0 -5px 8px; display: inline-block; }
|
||||||
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%; width:1px; display:inline-block; padding-left:16px;}
|
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%; width:1px; display:inline-block; padding-left:16px;margin-left: 5px;}
|
||||||
a.remove-upload:hover {text-decoration:none !important;}
|
a.remove-upload:hover {text-decoration:none !important;}
|
||||||
|
|
||||||
/*gcm upload file count and deleteall*/
|
/*gcm upload file count and deleteall*/
|
||||||
|
|
|
@ -84,6 +84,15 @@ a.hworkSearchIcon:hover {background:url(../images/nav_icon.png) -49px -1px no-re
|
||||||
.ml100{margin-left: 100px;}
|
.ml100{margin-left: 100px;}
|
||||||
.mt16{margin-top: 16px;}
|
.mt16{margin-top: 16px;}
|
||||||
.pr10{padding-right: 10px;}
|
.pr10{padding-right: 10px;}
|
||||||
|
|
||||||
|
/*作业信息*/
|
||||||
|
.mt-2 {margin-top:-2px;}
|
||||||
|
.homeworkInfo {background:#F6F6F6; padding:10px; margin-bottom:10px;}
|
||||||
|
.homeworkDetail {line-height:18px; font-size:12px; color:#484848; overflow:hidden;}
|
||||||
|
.max_h54 {max-height:54px; }
|
||||||
|
.homeworkState {padding:3px 5px; background-color:#28be6c; border-radius:3px; float:left; margin-left:15px; color:#ffffff;}
|
||||||
|
.homeworkClose {padding:3px 5px; background-color:#b2b2b2; border-radius:3px; float:left; margin-left:15px; color:#ffffff;}
|
||||||
|
|
||||||
/*课程右侧动态 new_user.css*/
|
/*课程右侧动态 new_user.css*/
|
||||||
.resources {width:718px; background-color:#ffffff; padding:15px; border:1px solid #dddddd;float: right}
|
.resources {width:718px; background-color:#ffffff; padding:15px; border:1px solid #dddddd;float: right}
|
||||||
.homepageRight {width:750px; float:left; margin-top:10px; margin-bottom:10px;}
|
.homepageRight {width:750px; float:left; margin-top:10px; margin-bottom:10px;}
|
||||||
|
@ -111,7 +120,7 @@ a.postTypeGrey:hover {color:#269ac9;}
|
||||||
.homepagePostSubmitContainer {height:25px; margin-top: 8px; margin-bottom: 5px;}
|
.homepagePostSubmitContainer {height:25px; margin-top: 8px; margin-bottom: 5px;}
|
||||||
.homepagePostSubmit {font-size:14px; color:#888888; border:1px solid #dddddd; background-color:#eaeaea; float:left; margin-right:20px; padding:0px 10px;}
|
.homepagePostSubmit {font-size:14px; color:#888888; border:1px solid #dddddd; background-color:#eaeaea; float:left; margin-right:20px; padding:0px 10px;}
|
||||||
.homepagePostSubmit:hover {background-color:#d8d8d8;}
|
.homepagePostSubmit:hover {background-color:#d8d8d8;}
|
||||||
.homepagePostIntro {font-size:14px; color:#484848;}
|
.homepagePostIntro {font-size:14px; color:#484848;overflow:hidden;}
|
||||||
.homepagePostDeadline {font-size:12px; color:#888888; float:left; margin-top: 2px;}
|
.homepagePostDeadline {font-size:12px; color:#888888; float:left; margin-top: 2px;}
|
||||||
.homepagePostDate {font-size:12px; color:#888888;margin-bottom: 5px;}
|
.homepagePostDate {font-size:12px; color:#888888;margin-bottom: 5px;}
|
||||||
.homepagePostReply {width:710px; margin:0px auto; background-color:#f1f1f1; margin-top:10px;}
|
.homepagePostReply {width:710px; margin:0px auto; background-color:#f1f1f1; margin-top:10px;}
|
||||||
|
@ -147,11 +156,12 @@ a.postOptionLink:hover {color:#ffffff; background-color:#269ac9;}
|
||||||
.homepagePostReplyDes {float:left; width:632px; margin-left:15px;}
|
.homepagePostReplyDes {float:left; width:632px; margin-left:15px;}
|
||||||
.homepagePostReplyPublisher {font-size:12px; color:#888888; margin-bottom:5px;}
|
.homepagePostReplyPublisher {font-size:12px; color:#888888; margin-bottom:5px;}
|
||||||
.homepagePostReplyContent {font-size:12px; color:#484848; margin-bottom:12px;}
|
.homepagePostReplyContent {font-size:12px; color:#484848; margin-bottom:12px;}
|
||||||
|
.table_maxWidth table {max-width: 642px;}
|
||||||
.homepagePostProjectState {width:52px; height:20px; line-height:20px; border-radius:1px; background-color:#28be6c; color:#ffffff; text-align:center; vertical-align:middle; font-size:12px; display:inline-block; margin-left:5px;}
|
.homepagePostProjectState {width:52px; height:20px; line-height:20px; border-radius:1px; background-color:#28be6c; color:#ffffff; text-align:center; vertical-align:middle; font-size:12px; display:inline-block; margin-left:5px;}
|
||||||
.homepagePostAssignTo {float:left; font-size:14px; color:#269ac9;}
|
.homepagePostAssignTo {float:left; font-size:14px; color:#269ac9;}
|
||||||
.homepagePostFileAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/homepage_icon.png) -85px -150px no-repeat; padding-left:35px; font-size:14px; margin-right:25px;}
|
.homepagePostFileAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/public_icon.png) -27px -577px no-repeat; padding-left:25px; font-size:14px;}
|
||||||
.homepagePostImageAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/homepage_icon.png) -86px -195px no-repeat; padding-left:35px; font-size:14px; margin-right:25px;}
|
.homepagePostImageAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/homepage_icon.png) -86px -195px no-repeat; padding-left:35px; font-size:14px; margin-right:25px;}
|
||||||
.postAttSize {color:#888888; font-size:12px;}
|
.postAttSize {color:#888888; font-size:12px; margin-left: 5px;}
|
||||||
a.postGrey {color:#484848;}
|
a.postGrey {color:#484848;}
|
||||||
a.postGrey:hover {color:#000000;}
|
a.postGrey:hover {color:#000000;}
|
||||||
a.gz_btn{display:block; background:url(../images/pic_uersall.png) -318px -25px no-repeat; width:53px; height:18px; border:1px solid #cdcdcd; color:#333333; padding:0px 0 0 18px;margin-top: 2px;margin-right: 15px;}
|
a.gz_btn{display:block; background:url(../images/pic_uersall.png) -318px -25px no-repeat; width:53px; height:18px; border:1px solid #cdcdcd; color:#333333; padding:0px 0 0 18px;margin-top: 2px;margin-right: 15px;}
|
||||||
|
@ -194,6 +204,9 @@ a.menuGrey:hover {color:#fe7d68;}
|
||||||
#navSearchAlert {display:none;}
|
#navSearchAlert {display:none;}
|
||||||
.homepagePostReplyjournal{margin-left: 15px; float: left;}
|
.homepagePostReplyjournal{margin-left: 15px; float: left;}
|
||||||
|
|
||||||
|
.lh18 {line-height: 18px;}
|
||||||
|
.maxh360 {max-height: 360px;}
|
||||||
|
|
||||||
/*邮件邀请*/
|
/*邮件邀请*/
|
||||||
.box_main{ width:345px; margin:0 auto;}
|
.box_main{ width:345px; margin:0 auto;}
|
||||||
.box_h3{ color:#15bccf; text-align:center; font-size:16px;}
|
.box_h3{ color:#15bccf; text-align:center; font-size:16px;}
|
||||||
|
@ -538,7 +551,7 @@ blockquote {background: #e8e8e8;padding: 10px;margin-bottom: 5px;word-break: bre
|
||||||
|
|
||||||
#attachments_fields input.description {margin-left: 4px;width: 100px;}
|
#attachments_fields input.description {margin-left: 4px;width: 100px;}
|
||||||
#attachments_fields span.ispublic-label {display: inline-block;width: 30px;margin-left: 10px;}
|
#attachments_fields span.ispublic-label {display: inline-block;width: 30px;margin-left: 10px;}
|
||||||
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;}
|
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;margin-left: 5px;}
|
||||||
#attachments_fields input.filename {border: 0;height: 1.8em;width: 150px;color: #555;background-color: inherit;background: url(../images/attachment.png) no-repeat 1px 50%;padding-left: 18px;padding-top: 2px; white-space: nowrap; text-overflow:ellipsis;}
|
#attachments_fields input.filename {border: 0;height: 1.8em;width: 150px;color: #555;background-color: inherit;background: url(../images/attachment.png) no-repeat 1px 50%;padding-left: 18px;padding-top: 2px; white-space: nowrap; text-overflow:ellipsis;}
|
||||||
span.add_attachment {font-size: 80%;line-height: 2.5em;}
|
span.add_attachment {font-size: 80%;line-height: 2.5em;}
|
||||||
#attachments_fields span {display: block;white-space: nowrap;}
|
#attachments_fields span {display: block;white-space: nowrap;}
|
||||||
|
@ -556,7 +569,7 @@ span.add_attachment {font-size: 80%;line-height: 2.5em;}
|
||||||
a.remove-upload:hover {text-decoration:none !important;}
|
a.remove-upload:hover {text-decoration:none !important;}
|
||||||
|
|
||||||
.attachments_fields span.ispublic-label {display: inline-block;width: 30px;margin-left: 10px;}
|
.attachments_fields span.ispublic-label {display: inline-block;width: 30px;margin-left: 10px;}
|
||||||
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;}
|
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;margin-left: 5px;}
|
||||||
.attachments_fields input.filename {border: 0;height: 1.8em;width: 150px;color: #555;background-color: inherit;background: url(../images/attachment.png) no-repeat 1px 50%;padding-left: 18px;padding-top: 2px;}
|
.attachments_fields input.filename {border: 0;height: 1.8em;width: 150px;color: #555;background-color: inherit;background: url(../images/attachment.png) no-repeat 1px 50%;padding-left: 18px;padding-top: 2px;}
|
||||||
span.add_attachment {font-size: 80%;line-height: 2.5em;}
|
span.add_attachment {font-size: 80%;line-height: 2.5em;}
|
||||||
.attachments_fields span {display: block;white-space: nowrap;}
|
.attachments_fields span {display: block;white-space: nowrap;}
|
||||||
|
@ -953,13 +966,14 @@ a:hover.icon_remove{background:url(../images/course/icons.png) -20px -338px no-r
|
||||||
.W50{ width:50px;}
|
.W50{ width:50px;}
|
||||||
.W200{ width:200px;}
|
.W200{ width:200px;}
|
||||||
.m_w530{max-width: 530px;}
|
.m_w530{max-width: 530px;}
|
||||||
|
.m_w500{max-width: 500px;}
|
||||||
.ProResultTable{ color:#888888;}
|
.ProResultTable{ color:#888888;}
|
||||||
.T_C{ text-align:center;}
|
.T_C{ text-align:center;}
|
||||||
.SearchIcon{background:url(../images/homepage_icon2.png) 676px -393px no-repeat; }
|
.SearchIcon{background:url(../images/homepage_icon2.png) 676px -393px no-repeat; }
|
||||||
.SearchIcon:hover{background:url(../images/homepage_icon2.png) 676px -419px no-repeat; }
|
.SearchIcon:hover{background:url(../images/homepage_icon2.png) 676px -419px no-repeat; }
|
||||||
a.link_file{ background:url(../images/pic_file.png) 0 2px no-repeat; padding-left:20px; }
|
a.link_file{ background:url(../images/pic_file.png) 0 2px no-repeat; padding-left:20px; }
|
||||||
a:hover.link_file{ background:url(../images/pic_file.png) 0 -25px no-repeat; color:#3ca5c6;}
|
a:hover.link_file{ background:url(../images/pic_file.png) 0 -25px no-repeat; color:#3ca5c6;}
|
||||||
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;}
|
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;margin-left: 5px;}
|
||||||
a.FilesName{ max-width:540px;overflow:hidden; white-space:nowrap; text-overflow:ellipsis; display:block;}
|
a.FilesName{ max-width:540px;overflow:hidden; white-space:nowrap; text-overflow:ellipsis; display:block;}
|
||||||
a.FilesName02{ max-width:665px;overflow:hidden; white-space:nowrap; text-overflow:ellipsis; display:block;}
|
a.FilesName02{ max-width:665px;overflow:hidden; white-space:nowrap; text-overflow:ellipsis; display:block;}
|
||||||
.ProResultUl span { display:block; float:left;}
|
.ProResultUl span { display:block; float:left;}
|
||||||
|
@ -1032,6 +1046,8 @@ a.pro_mes_w{ height:20px; display:block; color:#999999;}
|
||||||
.rside_work_con{ width:650px;}
|
.rside_work_con{ width:650px;}
|
||||||
a.c_grey{ color:#999999;}
|
a.c_grey{ color:#999999;}
|
||||||
a:hover.c_grey{ color:#333;}
|
a:hover.c_grey{ color:#333;}
|
||||||
|
a.link_file_a{ background:url(../images/pic_file.png) 0 2px no-repeat; padding-left:20px; }
|
||||||
|
a:hover.link_file_a{ background:url(../images/pic_file.png) 0 -25px no-repeat; color:#3ca5c6;}
|
||||||
.link_file_a{ display:block; max-width:450px;overflow:hidden; white-space: nowrap; text-overflow:ellipsis;}
|
.link_file_a{ display:block; max-width:450px;overflow:hidden; white-space: nowrap; text-overflow:ellipsis;}
|
||||||
.last_time{width:auto; text-align:right; margin-right:70px;}
|
.last_time{width:auto; text-align:right; margin-right:70px;}
|
||||||
.link_file_box{ width:360px;}
|
.link_file_box{ width:360px;}
|
||||||
|
|
|
@ -105,6 +105,7 @@ a.linkGrey6:hover {color:#ffffff !important;}
|
||||||
.mt12 { margin-top:12px;}
|
.mt12 { margin-top:12px;}
|
||||||
.mt15 {margin-top:15px;}
|
.mt15 {margin-top:15px;}
|
||||||
.mt19 {margin-top:19px !important;}
|
.mt19 {margin-top:19px !important;}
|
||||||
|
.mb0 {margin-bottom: 0px !important;}
|
||||||
.mb4{ margin-bottom:4px;}
|
.mb4{ margin-bottom:4px;}
|
||||||
.mb5{ margin-bottom:5px;}
|
.mb5{ margin-bottom:5px;}
|
||||||
.mb8 {margin-bottom:8px !important;}
|
.mb8 {margin-bottom:8px !important;}
|
||||||
|
@ -501,7 +502,7 @@ input.sendSourceText:hover {background-color:#297fb8;}
|
||||||
.popbox{/* width:300px; *//* height:100px; */position:fixed !important;/* z-index:100; */left:50%;top:50%;margin:-100px 0 0 -150px; /* background:#fff; */ -moz-border-radius:5px; /* -webkit-border-radius:5px; */ /* border-radius:5px; */ /* box-shadow:0px 0px 8px #194a81; */ /* overflow:auto; */}
|
.popbox{/* width:300px; *//* height:100px; */position:fixed !important;/* z-index:100; */left:50%;top:50%;margin:-100px 0 0 -150px; /* background:#fff; */ -moz-border-radius:5px; /* -webkit-border-radius:5px; */ /* border-radius:5px; */ /* box-shadow:0px 0px 8px #194a81; */ /* overflow:auto; */}
|
||||||
/*上传资源弹窗*/
|
/*上传资源弹窗*/
|
||||||
.resourceUploadPopup {width:400px; height:auto; border:3px solid #269ac9; padding-left:16px; padding-bottom:16px; background-color:#ffffff; position:absolute; top:50%; left:50%; margin-left:-200px; z-index:1000;}
|
.resourceUploadPopup {width:400px; height:auto; border:3px solid #269ac9; padding-left:16px; padding-bottom:16px; background-color:#ffffff; position:absolute; top:50%; left:50%; margin-left:-200px; z-index:1000;}
|
||||||
.uploadText {font-size:16px; color:#269ac9; line-height:16px; padding-top:20px; width:140px; display:inline-block;}
|
.uploadText {font-size:16px; color:#269ac9; line-height:16px; padding-top:15px; width:140px; display:inline-block;}
|
||||||
.uploadBoxContainer {height:33px; line-height:33px; margin-top:10px; position:relative;}
|
.uploadBoxContainer {height:33px; line-height:33px; margin-top:10px; position:relative;}
|
||||||
.uploadBox {width:100px; height:33px; line-height:33px; text-align:center; vertical-align:middle; background-color:#269ac9; border-radius:3px; float:left; margin-right:12px;}
|
.uploadBox {width:100px; height:33px; line-height:33px; text-align:center; vertical-align:middle; background-color:#269ac9; border-radius:3px; float:left; margin-right:12px;}
|
||||||
.uploadBox:hover {background-color:#297fb8;}
|
.uploadBox:hover {background-color:#297fb8;}
|
||||||
|
@ -646,7 +647,7 @@ a.postTypeGrey:hover {color:#269ac9;}
|
||||||
.homepagePostSubmitContainer {height:25px; margin-top: 8px; margin-bottom: 5px;}
|
.homepagePostSubmitContainer {height:25px; margin-top: 8px; margin-bottom: 5px;}
|
||||||
.homepagePostSubmit {font-size:14px; color:#888888; border:1px solid #dddddd; background-color:#eaeaea; float:left; margin-right:20px; padding:0px 10px;}
|
.homepagePostSubmit {font-size:14px; color:#888888; border:1px solid #dddddd; background-color:#eaeaea; float:left; margin-right:20px; padding:0px 10px;}
|
||||||
.homepagePostSubmit:hover {background-color:#d8d8d8;}
|
.homepagePostSubmit:hover {background-color:#d8d8d8;}
|
||||||
.homepagePostIntro {font-size:14px; color:#484848;}
|
.homepagePostIntro {font-size:14px; color:#484848;overflow:hidden;}
|
||||||
.homepagePostDeadline {font-size:12px; color:#888888; float:left; margin-top: 2px;}
|
.homepagePostDeadline {font-size:12px; color:#888888; float:left; margin-top: 2px;}
|
||||||
.homepagePostDate {font-size:12px; color:#888888;margin-bottom: 5px;}
|
.homepagePostDate {font-size:12px; color:#888888;margin-bottom: 5px;}
|
||||||
.homepagePostReply {width:720px; margin:0px auto; background-color:#f1f1f1; margin-top:10px;}
|
.homepagePostReply {width:720px; margin:0px auto; background-color:#f1f1f1; margin-top:10px;}
|
||||||
|
@ -682,16 +683,24 @@ a.postOptionLink:hover {color:#ffffff; background-color:#269ac9;}
|
||||||
.homepagePostReplyDes {float:left; width:642px; margin-left:15px;}
|
.homepagePostReplyDes {float:left; width:642px; margin-left:15px;}
|
||||||
.homepagePostReplyPublisher {font-size:12px; color:#888888; margin-bottom:5px;}
|
.homepagePostReplyPublisher {font-size:12px; color:#888888; margin-bottom:5px;}
|
||||||
.homepagePostReplyContent {font-size:12px; color:#484848; margin-bottom:12px;}
|
.homepagePostReplyContent {font-size:12px; color:#484848; margin-bottom:12px;}
|
||||||
|
.table_maxWidth table {max-width: 642px;}
|
||||||
.homepagePostProjectState {width:52px; height:20px; line-height:20px; border-radius:1px; background-color:#28be6c; color:#ffffff; text-align:center; vertical-align:middle; font-size:12px; display:inline-block; margin-left:5px;}
|
.homepagePostProjectState {width:52px; height:20px; line-height:20px; border-radius:1px; background-color:#28be6c; color:#ffffff; text-align:center; vertical-align:middle; font-size:12px; display:inline-block; margin-left:5px;}
|
||||||
.homepagePostAssignTo {float:left; font-size:14px; color:#269ac9;}
|
.homepagePostAssignTo {float:left; font-size:14px; color:#269ac9;}
|
||||||
.homepagePostFileAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/homepage_icon.png) -85px -150px no-repeat; padding-left:35px; font-size:14px; margin-right:25px;}
|
.homepagePostFileAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/public_icon.png) -27px -577px no-repeat; padding-left:25px; font-size:14px;}
|
||||||
.homepagePostImageAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/homepage_icon.png) -86px -195px no-repeat; padding-left:35px; font-size:14px; margin-right:25px;}
|
.homepagePostImageAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/homepage_icon.png) -86px -195px no-repeat; padding-left:35px; font-size:14px; margin-right:25px;}
|
||||||
.postAttSize {color:#888888; font-size:12px;}
|
.postAttSize {color:#888888; font-size:12px; margin-left: 5px;}
|
||||||
a.postGrey {color:#484848;}
|
a.postGrey {color:#484848;}
|
||||||
a.postGrey:hover {color:#000000;}
|
a.postGrey:hover {color:#000000;}
|
||||||
a.gz_btn{display:block; background:url(../images/pic_uersall.png) -318px -25px no-repeat; width:53px; height:18px; border:1px solid #cdcdcd; color:#333333; padding:0px 0 0 18px;margin-top: 2px;margin-right: 15px;}
|
a.gz_btn{display:block; background:url(../images/pic_uersall.png) -318px -25px no-repeat; width:53px; height:18px; border:1px solid #cdcdcd; color:#333333; padding:0px 0 0 18px;margin-top: 2px;margin-right: 15px;}
|
||||||
a:hover.gz_btn{ color:#ff5722;}
|
a:hover.gz_btn{ color:#ff5722;}
|
||||||
.homepagePostReplyjournal{margin-left: 15px; float: left;}
|
.homepagePostReplyjournal{margin-left: 15px; float: left;}
|
||||||
|
.lh18 {line-height: 18px;}
|
||||||
|
.maxh360 {max-height: 360px;}
|
||||||
|
|
||||||
|
.courseMenu {width:30px; display:block; float:right;height: 50px;}
|
||||||
|
.courseMenuIcon {display:inline-block; background:url(../images/homepage_icon2.png) -190px -365px no-repeat; width:15px; height:15px; margin-top: 16px; margin-right: 15px; position: relative;line-height:0;}
|
||||||
|
.topnav_course_menu{display: none; border:1px solid #eaeaea; background:#fff; padding-left:10px; padding-bottom:10px; padding-top:8px; width:60px; left:-7px; position:absolute; z-index:9999; line-height:2; box-shadow: 0px 2px 8px rgba(146, 153, 169, 0.5); margin-top: 20px;}
|
||||||
|
.topnav_course_menu a{color:#269ac9;}
|
||||||
|
|
||||||
/*课程主页css*/
|
/*课程主页css*/
|
||||||
.homepageCoursesType {width:75px; background-color:#ffffff; float:left; list-style:none; position:absolute; border:1px solid #eaeaea; border-radius:5px; top:15px; padding:5px 10px; left:-65px; font-size:12px; color:#4b4b4b; line-height:2; z-index:9999; display:none;}
|
.homepageCoursesType {width:75px; background-color:#ffffff; float:left; list-style:none; position:absolute; border:1px solid #eaeaea; border-radius:5px; top:15px; padding:5px 10px; left:-65px; font-size:12px; color:#4b4b4b; line-height:2; z-index:9999; display:none;}
|
||||||
|
@ -1069,7 +1078,7 @@ a:hover.icon_remove{background:url(../images/course/icons.png) -20px -338px no-r
|
||||||
.SearchIcon:hover{background:url(../images/homepage_icon2.png) 676px -419px no-repeat; }
|
.SearchIcon:hover{background:url(../images/homepage_icon2.png) 676px -419px no-repeat; }
|
||||||
a.link_file{ background:url(../images/pic_file.png) 0 2px no-repeat; padding-left:20px; }
|
a.link_file{ background:url(../images/pic_file.png) 0 2px no-repeat; padding-left:20px; }
|
||||||
a:hover.link_file{ background:url(../images/pic_file.png) 0 -25px no-repeat; color:#3ca5c6;}
|
a:hover.link_file{ background:url(../images/pic_file.png) 0 -25px no-repeat; color:#3ca5c6;}
|
||||||
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;}
|
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;margin-left: 5px;}
|
||||||
a.FilesName{ max-width:540px;overflow:hidden; white-space:nowrap; text-overflow:ellipsis; display:block;}
|
a.FilesName{ max-width:540px;overflow:hidden; white-space:nowrap; text-overflow:ellipsis; display:block;}
|
||||||
a.FilesName02{ max-width:665px;overflow:hidden; white-space:nowrap; text-overflow:ellipsis; display:block;}
|
a.FilesName02{ max-width:665px;overflow:hidden; white-space:nowrap; text-overflow:ellipsis; display:block;}
|
||||||
.ProResultUl span { display:block; float:left;}
|
.ProResultUl span { display:block; float:left;}
|
||||||
|
@ -1266,7 +1275,7 @@ a:hover.tijiao{ background:#0f99a9;}
|
||||||
#cboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
|
#cboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
|
||||||
#cboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
|
#cboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
|
||||||
#cboxClose{position:absolute; bottom:0; right:0; display:block; color:#444;}
|
#cboxClose{position:absolute; bottom:0; right:0; display:block; color:#444;}
|
||||||
.system_message_style {line-height: 19.1px; max-width: 681px;overflow:hidden; work-wrap: break-word; word-break: break-all;}
|
.system_message_style {line-height: 19.1px; max-width: 681px; work-wrap: break-word; word-break: break-all; text-overflow:clip; z-index:9999}
|
||||||
.system_message_style img {max-width: 100%;}
|
.system_message_style img {max-width: 100%;}
|
||||||
/*20150906关联项目LB*/
|
/*20150906关联项目LB*/
|
||||||
a.RalationIcon{ background: url(../images/homepage_icon.png) -183px -396px no-repeat; height:20px; display:block; padding-left:20px; color:#888888;}
|
a.RalationIcon{ background: url(../images/homepage_icon.png) -183px -396px no-repeat; height:20px; display:block; padding-left:20px; color:#888888;}
|
||||||
|
@ -1296,3 +1305,7 @@ a:hover.link_file_a{ background:url(../images/pic_file.png) 0 -25px no-repeat; c
|
||||||
|
|
||||||
.list_style ol li{list-style-type: decimal;margin-left: 20px;}
|
.list_style ol li{list-style-type: decimal;margin-left: 20px;}
|
||||||
.list_style ul li{list-style-type: disc;margin-left: 20px;}
|
.list_style ul li{list-style-type: disc;margin-left: 20px;}
|
||||||
|
.ul_grey li {color:#909090; list-style-position:inside; padding-left:1px;list-style-image:url('../images/news_dot2.png')}
|
||||||
|
.ul_normal_color li {list-style-position:inside; padding-left:1px; list-style-image:url('../images/news_dot.png')}
|
||||||
|
span.author { font-size: 0.9em; color: #888; }
|
||||||
|
.ReplyToMessageInputContainer {width: 582px;float: left;}
|
||||||
|
|
|
@ -724,9 +724,16 @@ div.actions input[type="text"] {
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.memo-content li {
|
.memo-content ol li {
|
||||||
list-style-type: decimal;
|
list-style-type: decimal;
|
||||||
}
|
}
|
||||||
|
.memo-content ul li {
|
||||||
|
list-style-type: disc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.memo-content ul li {
|
||||||
|
list-style-type: disc;
|
||||||
|
}
|
||||||
|
|
||||||
.memo-timestamp {
|
.memo-timestamp {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
@ -360,7 +360,7 @@ blockquote {background: #eeeeee;padding: 10px;margin-bottom: 10px;}
|
||||||
a.remove-upload:hover {text-decoration:none !important;}
|
a.remove-upload:hover {text-decoration:none !important;}
|
||||||
|
|
||||||
#attachments_fields span.ispublic-label {display: inline-block;width: 30px;margin-left: 10px;}
|
#attachments_fields span.ispublic-label {display: inline-block;width: 30px;margin-left: 10px;}
|
||||||
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;}
|
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;margin-left: 5px;}
|
||||||
#attachments_fields input.filename {border: 0;height: 1.8em;width: 150px;color: #555;background-color: inherit;background: url(../images/attachment.png) no-repeat 1px 50%;padding-left: 18px;padding-top: 2px; white-space: nowrap; text-overflow:ellipsis;}
|
#attachments_fields input.filename {border: 0;height: 1.8em;width: 150px;color: #555;background-color: inherit;background: url(../images/attachment.png) no-repeat 1px 50%;padding-left: 18px;padding-top: 2px; white-space: nowrap; text-overflow:ellipsis;}
|
||||||
span.add_attachment {font-size: 80%;line-height: 2.5em;}
|
span.add_attachment {font-size: 80%;line-height: 2.5em;}
|
||||||
#attachments_fields span {display: block;white-space: nowrap;}
|
#attachments_fields span {display: block;white-space: nowrap;}
|
||||||
|
@ -378,7 +378,7 @@ a.remove-upload:hover {text-decoration:none !important;}
|
||||||
|
|
||||||
|
|
||||||
.attachments_fields span.ispublic-label {display: inline-block;width: 30px;margin-left: 10px;}
|
.attachments_fields span.ispublic-label {display: inline-block;width: 30px;margin-left: 10px;}
|
||||||
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;}
|
a.remove-upload {background: url(../images/delete.png) no-repeat 1px 50%;width: 1px;display: inline-block;padding-left: 16px;margin-left: 5px;}
|
||||||
.attachments_fields input.filename {border: 0;height: 1.8em;width: 150px;color: #555;background-color: inherit;background: url(../images/attachment.png) no-repeat 1px 50%;padding-left: 18px;padding-top: 2px;}
|
.attachments_fields input.filename {border: 0;height: 1.8em;width: 150px;color: #555;background-color: inherit;background: url(../images/attachment.png) no-repeat 1px 50%;padding-left: 18px;padding-top: 2px;}
|
||||||
span.add_attachment {font-size: 80%;line-height: 2.5em;}
|
span.add_attachment {font-size: 80%;line-height: 2.5em;}
|
||||||
.attachments_fields span {display: block;white-space: nowrap;}
|
.attachments_fields span {display: block;white-space: nowrap;}
|
||||||
|
|
|
@ -109,6 +109,7 @@ h4{ font-size:14px; color:#3b3b3b;}
|
||||||
.mt15 {margin-top:15px;}
|
.mt15 {margin-top:15px;}
|
||||||
.mt19 {margin-top:19px !important;}
|
.mt19 {margin-top:19px !important;}
|
||||||
.ml70{margin-left: 70px;}
|
.ml70{margin-left: 70px;}
|
||||||
|
.mb0 {margin-bottom: 0px !important;}
|
||||||
.mb4{ margin-bottom:4px;}
|
.mb4{ margin-bottom:4px;}
|
||||||
.mb5{ margin-bottom:5px;}
|
.mb5{ margin-bottom:5px;}
|
||||||
.mb8 {margin-bottom:8px;}
|
.mb8 {margin-bottom:8px;}
|
||||||
|
@ -539,7 +540,7 @@ a.postTypeGrey:hover {color:#269ac9;}
|
||||||
.homepagePostSubmitContainer {height:25px; margin-top: 8px; margin-bottom: 5px;}
|
.homepagePostSubmitContainer {height:25px; margin-top: 8px; margin-bottom: 5px;}
|
||||||
.homepagePostSubmit {font-size:14px; color:#888888; border:1px solid #dddddd; background-color:#eaeaea; float:left; margin-right:20px; padding:0px 10px;}
|
.homepagePostSubmit {font-size:14px; color:#888888; border:1px solid #dddddd; background-color:#eaeaea; float:left; margin-right:20px; padding:0px 10px;}
|
||||||
.homepagePostSubmit:hover {background-color:#d8d8d8;}
|
.homepagePostSubmit:hover {background-color:#d8d8d8;}
|
||||||
.homepagePostIntro {font-size:14px; color:#484848;}
|
.homepagePostIntro {font-size:14px; color:#484848;overflow:hidden;}
|
||||||
.homepagePostDeadline {font-size:12px; color:#888888; float:left; margin-top: 2px;}
|
.homepagePostDeadline {font-size:12px; color:#888888; float:left; margin-top: 2px;}
|
||||||
.homepagePostDate {font-size:12px; color:#888888;margin-bottom: 5px;}
|
.homepagePostDate {font-size:12px; color:#888888;margin-bottom: 5px;}
|
||||||
.homepagePostReplyBanner {width:708px; height:33px; border:1px solid #e4e4e4; line-height:33px; vertical-align:middle; font-size:12px; color:#888888;}
|
.homepagePostReplyBanner {width:708px; height:33px; border:1px solid #e4e4e4; line-height:33px; vertical-align:middle; font-size:12px; color:#888888;}
|
||||||
|
@ -571,11 +572,12 @@ a.postReplyCancel:hover {color:#ffffff;}
|
||||||
.homepagePostReplyDes {float:left; width:620px; margin-left:15px;}
|
.homepagePostReplyDes {float:left; width:620px; margin-left:15px;}
|
||||||
.homepagePostReplyPublisher {font-size:12px; color:#484848; margin-bottom:5px;}
|
.homepagePostReplyPublisher {font-size:12px; color:#484848; margin-bottom:5px;}
|
||||||
.homepagePostReplyContent {font-size:12px; color:#484848; margin-bottom:12px;}
|
.homepagePostReplyContent {font-size:12px; color:#484848; margin-bottom:12px;}
|
||||||
|
.table_maxWidth table {max-width: 642px;}
|
||||||
.homepagePostProjectState {width:42px; height:20px; line-height:20px; border-radius:1px; background-color:#28be6c; color:#ffffff; text-align:center; vertical-align:middle; font-size:12px; display:inline-block; margin-left:5px;}
|
.homepagePostProjectState {width:42px; height:20px; line-height:20px; border-radius:1px; background-color:#28be6c; color:#ffffff; text-align:center; vertical-align:middle; font-size:12px; display:inline-block; margin-left:5px;}
|
||||||
.homepagePostAssignTo {float:left; font-size:14px; color:#15bccf; height:30px; line-height:30px; vertical-align:middle;}
|
.homepagePostAssignTo {float:left; font-size:14px; color:#15bccf; height:30px; line-height:30px; vertical-align:middle;}
|
||||||
.homepagePostFileAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/homepage_icon.png) -85px -150px no-repeat; padding-left:35px; font-size:14px; margin-right:25px;}
|
.homepagePostFileAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/homepage_icon.png) -85px -150px no-repeat; padding-left:35px; font-size:14px;}
|
||||||
.homepagePostImageAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/homepage_icon.png) -86px -195px no-repeat; padding-left:35px; font-size:14px; margin-right:25px;}
|
.homepagePostImageAtt {height:22px; line-height:22px; vertical-align:middle; background:url(../images/homepage_icon.png) -86px -195px no-repeat; padding-left:35px; font-size:14px; margin-right:25px;}
|
||||||
.postAttSize {color:#888888; font-size:12px;}
|
.postAttSize {color:#888888; font-size:12px; margin-left: 5px;}
|
||||||
a.postGrey {color:#484848;}
|
a.postGrey {color:#484848;}
|
||||||
a.postGrey:hover {color:#000000;}
|
a.postGrey:hover {color:#000000;}
|
||||||
.homepagePostReplyjournal{margin-left: 15px; float: left;}
|
.homepagePostReplyjournal{margin-left: 15px; float: left;}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe BlogCommentsController, :type => :controller do
|
||||||
|
|
||||||
|
end
|
|
@ -0,0 +1,5 @@
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe BlogsController, :type => :controller do
|
||||||
|
|
||||||
|
end
|
|
@ -0,0 +1,6 @@
|
||||||
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
||||||
|
|
||||||
|
FactoryGirl.define do
|
||||||
|
factory :blog_comment do
|
||||||
|
end
|
||||||
|
end
|
|
@ -0,0 +1,6 @@
|
||||||
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
||||||
|
|
||||||
|
FactoryGirl.define do
|
||||||
|
factory :blog do
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue