Merge branch 'cxt_course' into szzh
This commit is contained in:
commit
798b1805cc
|
@ -1,8 +1,10 @@
|
||||||
class ExerciseController < ApplicationController
|
class ExerciseController < ApplicationController
|
||||||
layout "base_courses"
|
layout "base_courses"
|
||||||
|
|
||||||
before_filter :find_exercise_and_course, :only => [:create_exercise_question, :edit, :update, :show, :destroy, :commit_exercise, :commit_answer,:publish_exercise,:republish_exercise,:show_student_result]
|
before_filter :find_exercise_and_course, :only => [:create_exercise_question, :edit, :update, :show, :destroy,
|
||||||
before_filter :find_course, :only => [:index,:new,:create,:student_exercise_list]
|
:commit_exercise, :commit_answer,:publish_exercise,:republish_exercise,
|
||||||
|
:show_student_result,:student_exercise_list]
|
||||||
|
before_filter :find_course, :only => [:index,:new,:create]
|
||||||
include ExerciseHelper
|
include ExerciseHelper
|
||||||
|
|
||||||
def index
|
def index
|
||||||
|
@ -354,8 +356,20 @@ class ExerciseController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def student_exercise_list
|
def student_exercise_list
|
||||||
|
=begin
|
||||||
|
if @exercise.end_time <= Time.now
|
||||||
|
@course.student.each do |student|
|
||||||
|
if ExerciseUser.where("user_id = ? && exercise_id = ?",student.student_id,@exercise.id).empty?
|
||||||
|
ExerciseUser.create(:user_id => student.student_id, :exercise_id => @exercise.id, :start_at => @exercise.end_time, :status => true,:score=>0)
|
||||||
|
end
|
||||||
|
|
||||||
|
s_score = calculate_student_score(@exercise, student.student)
|
||||||
|
exercise_user = ExerciseUser.where("user_id =? and exercise_id=?", student.student_id, @exercise.id).first
|
||||||
|
exercise_user.update_attributes(:score => s_score)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
=end
|
||||||
@is_teacher = User.current.allowed_to?(:as_teacher,@course) || User.current.admin?
|
@is_teacher = User.current.allowed_to?(:as_teacher,@course) || User.current.admin?
|
||||||
@exercise = Exercise.find params[:id]
|
|
||||||
@all_exercises = @course.exercises.where("exercise_status > 1").order("created_at desc")
|
@all_exercises = @course.exercises.where("exercise_status > 1").order("created_at desc")
|
||||||
@exercise_count = @exercise.exercise_users.where('score is not NULL').count
|
@exercise_count = @exercise.exercise_users.where('score is not NULL').count
|
||||||
if @is_teacher || (!@exercise.exercise_users.where(:user_id => User.current.id).empty? && @exercise.end_time <= Time.now)
|
if @is_teacher || (!@exercise.exercise_users.where(:user_id => User.current.id).empty? && @exercise.end_time <= Time.now)
|
||||||
|
@ -543,11 +557,11 @@ class ExerciseController < ApplicationController
|
||||||
def show_student_result
|
def show_student_result
|
||||||
@user = User.find params[:user_id]
|
@user = User.find params[:user_id]
|
||||||
@can_edit_excercise = false
|
@can_edit_excercise = false
|
||||||
@exercise_user = ExerciseUser.where("user_id =? and exercise_id=?", @user.id, @exercise.id).first
|
|
||||||
@exercise_questions = @exercise.exercise_questions
|
@exercise_questions = @exercise.exercise_questions
|
||||||
score = calculate_student_score(@exercise, @user)
|
score = calculate_student_score(@exercise, @user)
|
||||||
eu = get_exercise_user(@exercise.id, @user.id)
|
eu = get_exercise_user(@exercise.id, @user.id)
|
||||||
eu.update_attributes(:score => score)
|
eu.update_attributes(:score => score)
|
||||||
|
@exercise_user = ExerciseUser.where("user_id =? and exercise_id=?", @user.id, @exercise.id).first
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html {render :layout => 'base_courses'}
|
format.html {render :layout => 'base_courses'}
|
||||||
end
|
end
|
||||||
|
@ -565,15 +579,15 @@ class ExerciseController < ApplicationController
|
||||||
standard_answer = get_user_standard_answer(question, user)
|
standard_answer = get_user_standard_answer(question, user)
|
||||||
unless answer.empty?
|
unless answer.empty?
|
||||||
# 问答题有多个答案
|
# 问答题有多个答案
|
||||||
if question.question_type == 3
|
if question.question_type == 3 && !standard_answer.empty?
|
||||||
if standard_answer.include?(answer.first.answer_text)
|
if standard_answer.include?(answer.first.answer_text)
|
||||||
score1 = score1+ question.question_score unless question.question_score.nil?
|
score1 = score1+ question.question_score unless question.question_score.nil?
|
||||||
end
|
end
|
||||||
elsif question.question_type == 1
|
elsif question.question_type == 1 && !standard_answer.nil?
|
||||||
if answer.first.exercise_choice.choice_position == standard_answer.exercise_choice_id
|
if answer.first.exercise_choice.choice_position == standard_answer.exercise_choice_id
|
||||||
score2 = score2 + question.question_score unless question.question_score.nil?
|
score2 = score2 + question.question_score unless question.question_score.nil?
|
||||||
end
|
end
|
||||||
else
|
elsif question.question_type == 2 && !standard_answer.nil?
|
||||||
arr = get_mulscore(question, user)
|
arr = get_mulscore(question, user)
|
||||||
if arr.to_i == standard_answer.exercise_choice_id
|
if arr.to_i == standard_answer.exercise_choice_id
|
||||||
score3 = score3 + question.question_score unless question.question_score.nil?
|
score3 = score3 + question.question_score unless question.question_score.nil?
|
||||||
|
|
|
@ -84,9 +84,20 @@ class HomeworkCommonController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
#分组作业
|
||||||
|
if @homework.homework_type == 3
|
||||||
|
@homework.homework_detail_group ||= HomeworkDetailGroup.new
|
||||||
|
@homework_detail_group = @homework.homework_detail_group
|
||||||
|
@homework_detail_group.min_num = params[:min_num].to_i
|
||||||
|
@homework_detail_group.max_num = params[:max_num].to_i
|
||||||
|
@homework_detail_group.base_on_project = params[:base_on_project].to_i
|
||||||
|
end
|
||||||
|
|
||||||
if @homework.save
|
if @homework.save
|
||||||
@homework_detail_manual.save if @homework_detail_manual
|
@homework_detail_manual.save if @homework_detail_manual
|
||||||
@homework_detail_programing.save if @homework_detail_programing
|
@homework_detail_programing.save if @homework_detail_programing
|
||||||
|
@homework_detail_group.save if @homework_detail_group
|
||||||
|
|
||||||
if params[:is_in_course] == "1"
|
if params[:is_in_course] == "1"
|
||||||
redirect_to homework_common_index_path(:course => @course.id)
|
redirect_to homework_common_index_path(:course => @course.id)
|
||||||
elsif params[:is_in_course] == "0"
|
elsif params[:is_in_course] == "0"
|
||||||
|
|
|
@ -215,7 +215,6 @@ class StudentWorkController < ApplicationController
|
||||||
student_work ||= StudentWork.new
|
student_work ||= StudentWork.new
|
||||||
student_work.name = params[:student_work][:name]
|
student_work.name = params[:student_work][:name]
|
||||||
student_work.description = params[:student_work][:description]
|
student_work.description = params[:student_work][:description]
|
||||||
student_work.project_id = params[:student_work][:project_id]
|
|
||||||
student_work.homework_common_id = @homework.id
|
student_work.homework_common_id = @homework.id
|
||||||
student_work.user_id = User.current.id
|
student_work.user_id = User.current.id
|
||||||
student_work.save_attachments(params[:attachments])
|
student_work.save_attachments(params[:attachments])
|
||||||
|
@ -305,15 +304,28 @@ class StudentWorkController < ApplicationController
|
||||||
@work.save_attachments(params[:attachments])
|
@work.save_attachments(params[:attachments])
|
||||||
render_attachment_warning_if_needed(@work)
|
render_attachment_warning_if_needed(@work)
|
||||||
if @work.save
|
if @work.save
|
||||||
|
if @homework.homework_type == 3
|
||||||
|
@student_work_project = @homework.student_work_projects.where("user_id=?",User.current.id).first
|
||||||
|
student_work_projects = @homework.student_work_projects.where("student_work_id=? and is_leader =?",@work.id,0)
|
||||||
|
student_work_projects.delete_all
|
||||||
|
members = params[:group_member_ids].split(',')
|
||||||
|
for i in 1 .. members.count-1
|
||||||
|
stu_project = StudentWorkProject.new
|
||||||
|
stu_project.homework_common_id = @homework.id
|
||||||
|
stu_project.student_work_id = @work.id
|
||||||
|
if @homework.homework_detail_group.base_on_project == 1
|
||||||
|
stu_project.project_id = @student_work_project.project_id
|
||||||
|
else @homework.homework_detail_group.base_on_project == 0
|
||||||
|
stu_project.project_id = -1
|
||||||
|
end
|
||||||
|
stu_project.user_id = members[i].to_i
|
||||||
|
stu_project.is_leader = 0
|
||||||
|
stu_project.save
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
course_message = CourseMessage.new(:user_id =>User.current.id,:content=>"edit",:course_message_id=>@work.id,:course_id => @course.id,:course_message_type=>"StudentWork", :status => 9) #作品提交记录
|
course_message = CourseMessage.new(:user_id =>User.current.id,:content=>"edit",:course_message_id=>@work.id,:course_id => @course.id,:course_message_type=>"StudentWork", :status => 9) #作品提交记录
|
||||||
course_message.save
|
course_message.save
|
||||||
=begin
|
|
||||||
respond_to do |format|
|
|
||||||
format.html {
|
|
||||||
flash[:notice] = l(:notice_successful_edit)
|
|
||||||
redirect_to student_work_index_url(:homework => @homework.id)
|
|
||||||
}
|
|
||||||
=end
|
|
||||||
@student_work = @work
|
@student_work = @work
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.js
|
format.js
|
||||||
|
@ -689,7 +701,12 @@ class StudentWorkController < ApplicationController
|
||||||
unless params[:name].nil?
|
unless params[:name].nil?
|
||||||
name = params[:name]
|
name = params[:name]
|
||||||
end
|
end
|
||||||
|
if @homework.homework_detail_group.base_on_project == 0
|
||||||
all_student_ids = "(" + @homework.course.student.map{|student| student.student_id}.join(",") + ")"
|
all_student_ids = "(" + @homework.course.student.map{|student| student.student_id}.join(",") + ")"
|
||||||
|
else
|
||||||
|
pro = Project.find @homework.student_work_projects.where("user_id=?",User.current.id).first.project_id
|
||||||
|
all_student_ids = "(" + pro.members.map{|member| member.user_id}.join(",") + ")"
|
||||||
|
end
|
||||||
all_students = User.where("id in #{all_student_ids}")
|
all_students = User.where("id in #{all_student_ids}")
|
||||||
@commit_student_ids = @homework.student_work_projects.map{|student| student.user_id}
|
@commit_student_ids = @homework.student_work_projects.map{|student| student.user_id}
|
||||||
@users = searchstudent_by_name all_students,name
|
@users = searchstudent_by_name all_students,name
|
||||||
|
|
|
@ -415,6 +415,7 @@ class UsersController < ApplicationController
|
||||||
def user_select_homework
|
def user_select_homework
|
||||||
homework = HomeworkCommon.find_by_id params[:checkMenu]
|
homework = HomeworkCommon.find_by_id params[:checkMenu]
|
||||||
homework_detail_programing = homework.homework_detail_programing
|
homework_detail_programing = homework.homework_detail_programing
|
||||||
|
homework_detail_group = homework.homework_detail_group
|
||||||
@homework = HomeworkCommon.new
|
@homework = HomeworkCommon.new
|
||||||
@select_course = params[:select_course] || 0
|
@select_course = params[:select_course] || 0
|
||||||
if homework
|
if homework
|
||||||
|
@ -444,6 +445,14 @@ class UsersController < ApplicationController
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if homework_detail_group
|
||||||
|
@homework.homework_detail_group = HomeworkDetailGroup.new
|
||||||
|
@homework_detail_group = @homework.homework_detail_group
|
||||||
|
@homework_detail_group.min_num = homework_detail_group.min_num
|
||||||
|
@homework_detail_group.max_num = homework_detail_group.max_num
|
||||||
|
@homework_detail_group.base_on_project = homework_detail_group.base_on_project
|
||||||
|
end
|
||||||
end
|
end
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.js
|
format.js
|
||||||
|
|
|
@ -43,8 +43,9 @@ module ExerciseHelper
|
||||||
ecs.each do |ec|
|
ecs.each do |ec|
|
||||||
arr << ec.exercise_choice.choice_position
|
arr << ec.exercise_choice.choice_position
|
||||||
end
|
end
|
||||||
arr.sort
|
#arr = arr.sort
|
||||||
arr = arr.join("")
|
str = arr.sort.join("")
|
||||||
|
return str
|
||||||
end
|
end
|
||||||
|
|
||||||
# 判断用户是否已经提交了问卷
|
# 判断用户是否已经提交了问卷
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
include AvatarHelper
|
include AvatarHelper
|
||||||
include StudentWorkHelper
|
include StudentWorkHelper
|
||||||
|
include ApiHelper
|
||||||
module ProjectsHelper
|
module ProjectsHelper
|
||||||
def link_to_version(version, options = {})
|
def link_to_version(version, options = {})
|
||||||
return '' unless version && version.is_a?(Version)
|
return '' unless version && version.is_a?(Version)
|
||||||
|
|
|
@ -267,7 +267,7 @@ class JournalsForMessage < ActiveRecord::Base
|
||||||
|
|
||||||
# 课程成员得分(英雄榜)
|
# 课程成员得分(英雄榜)
|
||||||
def act_as_student_score
|
def act_as_student_score
|
||||||
unless self.user.allowed_to?(:as_teacher, self.jour)
|
if !self.user.allowed_to?(:as_teacher, self.jour) && self.jour_type == "Course"
|
||||||
course_member_score(self.jour_id, self.user_id, "JournalForMessage")
|
course_member_score(self.jour_id, self.user_id, "JournalForMessage")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -12,11 +12,7 @@
|
||||||
div.recall_con .reply_btn{margin-left:525px;margin-top:5px;}
|
div.recall_con .reply_btn{margin-left:525px;margin-top:5px;}
|
||||||
/*.ke-container{height: 80px !important;}*/
|
/*.ke-container{height: 80px !important;}*/
|
||||||
</style>
|
</style>
|
||||||
<%= content_for(:header_tags) do %>
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg',"init_KindEditor" %>
|
||||||
<%= import_ke(enable_at: false, prettify: false, init_activity: true) %>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
|
|
||||||
<script >
|
<script >
|
||||||
init_KindEditor_data('',80);
|
init_KindEditor_data('',80);
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
<div>
|
<div>
|
||||||
<div class="testEditTitle"> 第<%= list_index+1%>题:<%= exercise_question.question_title %> (<%= exercise_question.question_score %>分)
|
<div class="testEditTitle"> 第<%= list_index+1%>题:<%= exercise_question.question_title %> (<%= exercise_question.question_score %>分)
|
||||||
<br />
|
<br />
|
||||||
标准答案:<%= convert_to_char(exercise_question.exercise_standard_answers.first.exercise_choice_id.to_s) %>
|
标准答案:<%= convert_to_char(exercise_question.exercise_standard_answers.first.exercise_choice_id.to_s) if exercise_question.exercise_standard_answers.first %>
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<div class="ur_inputs">
|
<div class="ur_inputs">
|
||||||
|
@ -64,7 +64,7 @@
|
||||||
<div>
|
<div>
|
||||||
<div class="testEditTitle"> 第<%= list_index+1%>题:<%= exercise_question.question_title %> (<%= exercise_question.question_score %>分)
|
<div class="testEditTitle"> 第<%= list_index+1%>题:<%= exercise_question.question_title %> (<%= exercise_question.question_score %>分)
|
||||||
<br />
|
<br />
|
||||||
标准答案:<%= convert_to_char(exercise_question.exercise_standard_answers.first.exercise_choice_id.to_s) %>
|
标准答案:<%= convert_to_char(exercise_question.exercise_standard_answers.first.exercise_choice_id.to_s) if exercise_question.exercise_standard_answers.first%>
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<div class="ur_inputs">
|
<div class="ur_inputs">
|
||||||
|
|
|
@ -35,17 +35,19 @@
|
||||||
});
|
});
|
||||||
$(function(){
|
$(function(){
|
||||||
<% if Time.parse(h(@exercise.end_time)).strftime("%Y-%m-%d-%H-%M-%S") <= Time.now.strftime("%Y-%m-%d-%H-%M-%S") %>
|
<% if Time.parse(h(@exercise.end_time)).strftime("%Y-%m-%d-%H-%M-%S") <= Time.now.strftime("%Y-%m-%d-%H-%M-%S") %>
|
||||||
$("#show_student_result_div").on('click',show_result);
|
$("#show_student_result_div_<%= exercise.id%>").on('click',function() {
|
||||||
|
window.location.href = '<%=show_student_result_exercise_path(@exercise,:user_id => exercise.user_id) %>';
|
||||||
|
});
|
||||||
<% else %>
|
<% else %>
|
||||||
$("#show_student_result_div").attr("title","截止日期未到,暂不能查看学生答题结果");
|
$("#show_student_result_div_<%= exercise.id%>").attr("title","截止日期未到,暂不能查看学生答题结果");
|
||||||
$("#student_name_<%= exercise.id%>").attr("title","截止日期未到,暂不能查看学生答题结果");
|
$("#student_name_<%= exercise.id%>").attr("title","截止日期未到,暂不能查看学生答题结果");
|
||||||
$("#student_id_<%= exercise.id%>").attr("title","截止日期未到,暂不能查看学生答题结果");
|
$("#student_id_<%= exercise.id%>").attr("title","截止日期未到,暂不能查看学生答题结果");
|
||||||
$("#student_class_<%= exercise.id%>").attr("title","截止日期未到,暂不能查看学生答题结果");
|
$("#student_class_<%= exercise.id%>").attr("title","截止日期未到,暂不能查看学生答题结果");
|
||||||
<% end %>
|
<% end %>
|
||||||
});
|
});
|
||||||
function show_result() {
|
/*function show_result(id) {
|
||||||
window.location.href = '<%=show_student_result_exercise_path(@exercise,:user_id => exercise.user.id) %>';
|
window.location.href = '<%#=show_student_result_exercise_path(@exercise,:user_id => exercise.user.id) %>';
|
||||||
}
|
}*/
|
||||||
</script>
|
</script>
|
||||||
<ul class="hworkListRow" id="student_work_<%= exercise.id%>">
|
<ul class="hworkListRow" id="student_work_<%= exercise.id%>">
|
||||||
<li class="hworkList340 width530">
|
<li class="hworkList340 width530">
|
||||||
|
@ -53,7 +55,7 @@
|
||||||
<li class="hworkPortrait mt15 mr10">
|
<li class="hworkPortrait mt15 mr10">
|
||||||
<%= link_to(image_tag(url_to_avatar(exercise.user),:width =>"40",:height => "40"),user_activities_path(exercise.user)) %>
|
<%= link_to(image_tag(url_to_avatar(exercise.user),:width =>"40",:height => "40"),user_activities_path(exercise.user)) %>
|
||||||
</li>
|
</li>
|
||||||
<div id="show_student_result_div" style="cursor: pointer;" class="student_work_<%= exercise.id%>">
|
<div id="show_student_result_div_<%= exercise.id%>" style="cursor: pointer;" class="student_work_<%= exercise.id%>">
|
||||||
<li>
|
<li>
|
||||||
<ul class="mt10 fl">
|
<ul class="mt10 fl">
|
||||||
<li class="hworkStName mr15 mt16" title="姓名" id="student_name_<%= exercise.id%>">
|
<li class="hworkStName mr15 mt16" title="姓名" id="student_name_<%= exercise.id%>">
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
<div class="footerAboutContainer">
|
<div class="footerAboutContainer">
|
||||||
<ul class="footerAbout">
|
<ul class="footerAbout">
|
||||||
<li class="fl"><a href="javascript:void:(0);" class="f_grey mw20" target="_blank"><%= l(:label_about_us)%></a>|</li>
|
<li class="fl"><a href="javascript:void:(0);" class="f_grey mw20" target="_blank"><%= l(:label_about_us)%></a>|</li>
|
||||||
<li class="fl"><a href="http://forge.trustie.net/projects/2/feedback" class="f_grey mw20" target="_blank"><%= l(:label_contact_us)%></a>|</li>
|
<li class="fl"><a href="https://forge.trustie.net/projects/2/feedback" class="f_grey mw20" target="_blank"><%= l(:label_contact_us)%></a>|</li>
|
||||||
<li class="fl"><a href="javascript:void:(0);" class="f_grey mw20" target="_blank"><%= l(:label_recruitment_information)%></a>|</li>
|
<li class="fl"><a href="javascript:void:(0);" class="f_grey mw20" target="_blank"><%= l(:label_recruitment_information)%></a>|</li>
|
||||||
<li class="fl"><a href="http://forge.trustie.net/forums/1/memos/1168" class="f_grey mw20" target="_blank"><%= l(:label_surpport_group)%></a>|</li>
|
<li class="fl"><%= link_to l(:label_surpport_group), "https://#{Setting.host_name}/forums/1/memos/1168", :class => "f_grey mw20", :target=>"_blank" %>|</li>
|
||||||
<li class="fl"><a href="javascript:void:(0);" class="f_grey mw20" target="_blank"><%= l(:label_forums)%></a>|</li>
|
<li class="fl"><a href="javascript:void:(0);" class="f_grey mw20" target="_blank"><%= l(:label_forums)%></a>|</li>
|
||||||
<li class="fl"><a href="javascript:void:(0);" class="f_grey ml20" target="_blank"><%= l(:label_language)%></a>
|
<li class="fl"><a href="javascript:void:(0);" class="f_grey ml20" target="_blank"><%= l(:label_language)%></a>
|
||||||
<select class="languageBox">
|
<select class="languageBox">
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<li class="fl"><a href="<%= about_us_path %>" class="f_grey mw20" target="_blank"><%= l(:label_about_us)%></a>|</li>
|
<li class="fl"><a href="<%= about_us_path %>" class="f_grey mw20" target="_blank"><%= l(:label_about_us)%></a>|</li>
|
||||||
<li class="fl"><a href="<%= agreement_path %>" class="f_grey mw20" target="_blank">服务协议</a>|</li>
|
<li class="fl"><a href="<%= agreement_path %>" class="f_grey mw20" target="_blank">服务协议</a>|</li>
|
||||||
<li class="fl" style="display: none"><span class="f_grey mw20" title="暂未开放"><%= l(:label_recruitment_information)%></span>|</li>
|
<li class="fl" style="display: none"><span class="f_grey mw20" title="暂未开放"><%= l(:label_recruitment_information)%></span>|</li>
|
||||||
<li class="fl"><a href="http://forge.trustie.net/forums/1/memos/1168" class="f_grey mw20" target="_blank"><%= l(:label_surpport_group)%></a>|</li>
|
<li class="fl"><%= link_to l(:label_surpport_group), "https://#{Setting.host_name}/forums/1/memos/1168", :class => "f_grey mw20", :target=>"_blank" %>|</li>
|
||||||
<li class="fl"><a href="<%= forums_path(:reorder_complex=>'desc')%>" class="f_grey mw20" target="_blank" ><%= l(:label_forums)%></a></li>
|
<li class="fl"><a href="<%= forums_path(:reorder_complex=>'desc')%>" class="f_grey mw20" target="_blank" ><%= l(:label_forums)%></a></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<%= link_to "作业", user_homeworks_user_path(User.current.id), :class => "c_white f16 db p10"%>
|
<%= link_to "作业", user_homeworks_user_path(User.current.id), :class => "c_white f16 db p10"%>
|
||||||
</li>
|
</li>
|
||||||
<li class="navHomepageMenu fl mr30">
|
<li class="navHomepageMenu fl mr30">
|
||||||
<a href="http://forge.trustie.net/forums/1/memos/1168" class="c_white f16 db p10">帮助中心</a>
|
<%= link_to "帮助中心", "https://#{Setting.host_name}/forums/1/memos/1168", :class =>"c_white f16 db p10" %>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<div class="fl">
|
<div class="fl">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="navHomepageMenu fl mr40">
|
<li class="navHomepageMenu fl mr40">
|
||||||
<a href="http://forge.trustie.net/forums/1/memos/1168" class="c_white f16 p10">帮助中心</a>
|
<%= link_to "帮助中心", "https://#{Setting.host_name}/forums/1/memos/1168", :class =>"c_white f16 db p10" %>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
<%= content_for(:header_tags) do %>
|
<%= javascript_include_tag "/assets/kindeditor/kindeditor",'/assets/kindeditor/pasteimg',"init_activity_KindEditor",'blog' %>
|
||||||
<%= import_ke(enable_at: false, prettify: false, init_activity: false) %>
|
|
||||||
<%= javascript_include_tag 'blog' %>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
$(function() {
|
$(function() {
|
||||||
init_activity_KindEditor_data(<%= @document.id%>,null,"85%");
|
init_activity_KindEditor_data(<%= @document.id%>,null,"85%");
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<div id="popbox02">
|
<div id="popbox02">
|
||||||
<div>
|
<div>
|
||||||
<div class="relateText fl">请添加小组成员</div>
|
<div class="relateText fl">请从<%= @homework.homework_detail_group.base_on_project == 1 ? '项目成员':'课程成员' %>中添加小组成员</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="resourcePopupClose"> <a href="javascript:void(0);" class="resourceClose" onclick="clickCanel();"></a></div>
|
<div class="resourcePopupClose"> <a href="javascript:void(0);" class="resourceClose" onclick="clickCanel();"></a></div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
@ -92,5 +92,17 @@
|
||||||
url: '<%= url_for(:controller => 'student_work', :action => 'search_course_students') %>'+'?homework='+<%=@homework.id %>,
|
url: '<%= url_for(:controller => 'student_work', :action => 'search_course_students') %>'+'?homework='+<%=@homework.id %>,
|
||||||
type:'get'
|
type:'get'
|
||||||
});
|
});
|
||||||
|
<% if defined?(edit_mode) && edit_mode %>
|
||||||
|
<% pro = @homework.student_work_projects.where("user_id = ?",User.current.id).first.project_id.to_i %>
|
||||||
|
<% members = @homework.student_work_projects.where("project_id = ? and is_leader =?",pro,0) %>
|
||||||
|
<% members.each do |member| %>
|
||||||
|
var link = "<li id='choose_student_<%=member.user_id%>' onclick='delete_student(<%=member.user_id %>);'><%=member.user.show_name %>";
|
||||||
|
<% unless member.user.user_extensions.student_id == "" %>
|
||||||
|
link += "(<%=member.user.user_extensions.student_id %>)";
|
||||||
|
<% end %>
|
||||||
|
link += "</li>";
|
||||||
|
$("#choose_students_list").append(link);
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
<% if @homework.anonymous_comment == 0%>
|
<% if @homework.anonymous_comment == 0%>
|
||||||
<li class="hworkList50 <%= score_color student_work.student_score%> student_score_info">
|
<li class="hworkList50 <%= score_color student_work.student_score%> student_score_info">
|
||||||
<%= student_work.student_score.nil? ? "--" : format("%.1f",student_work.student_score)%>
|
<%= student_work.student_score.nil? ? "未参与" : format("%.1f",student_work.student_score)%>
|
||||||
<% unless student_work.student_score.nil?%>
|
<% unless student_work.student_score.nil?%>
|
||||||
<span class="linkBlue">
|
<span class="linkBlue">
|
||||||
(<%= student_work.student_works_scores.where(:reviewer_role => 3).count%>)
|
(<%= student_work.student_works_scores.where(:reviewer_role => 3).count%>)
|
||||||
|
@ -84,7 +84,7 @@
|
||||||
缺评扣分
|
缺评扣分
|
||||||
<span class="c_red"> <%= student_work.absence_penalty%> </span>分,
|
<span class="c_red"> <%= student_work.absence_penalty%> </span>分,
|
||||||
最终成绩为
|
最终成绩为
|
||||||
<span class="c_red"> <%= format("%.1f",score)%> </span>分。
|
<span class="c_red"> <%= format("%.1f",score<0 ? 0 : score)%> </span>分。
|
||||||
</div>
|
</div>
|
||||||
<% end%>
|
<% end%>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<%=form_tag url_for(:controller=>'student_work',:action=>'student_work_project',:homework=>@homework.id,:user_activity_id=>@user_activity_id,:is_in_course=>@is_in_course,:course_activity =>@course_activity),:id =>'student_work_relate_project',:class=>'resourcesSearchBox',:remote => true do %>
|
<%=form_tag url_for(:controller=>'student_work',:action=>'student_work_project',:homework=>@homework.id,:user_activity_id=>@user_activity_id,:is_in_course=>@is_in_course,:course_activity =>@course_activity),:id =>'student_work_relate_project',:class=>'resourcesSearchBox',:remote => true do %>
|
||||||
<input type="text" name="project" placeholder="输入项目名称进行搜索" class="searchResourcePopup mb10" />
|
<input type="text" name="project" placeholder="输入项目名称进行搜索" class="searchResourcePopup mb10" />
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<p id="no_search_result" class="c_red" style="width:220px;display: none">您当前尚未参与任何项目,请先加入项目再关联。</p>
|
<p id="no_search_result" class="c_red" style="width:220px;display: none">您当前尚未创建任何项目,请先创建项目再关联。</p>
|
||||||
<ul id="search_project_list" class="maxHeight100"></ul>
|
<ul id="search_project_list" class="maxHeight100"></ul>
|
||||||
<p id="notes" class="c_red"></p>
|
<p id="notes" class="c_red"></p>
|
||||||
<div class="courseSendSubmit mt10"><a href="javascript:void(0);" class="sendSourceText" onclick="clickOK();">确定</a></div>
|
<div class="courseSendSubmit mt10"><a href="javascript:void(0);" class="sendSourceText" onclick="clickOK();">确定</a></div>
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
<div class="HomeWorkBox">
|
<div class="HomeWorkBox">
|
||||||
<div class="">
|
<div class="">
|
||||||
<div class="homepagePostTitle fl">
|
<div class="homepagePostTitle fl m_w530 hidden">
|
||||||
<%= @homework.name%>(作业名称)
|
<%= @homework.name%>(作业名称)
|
||||||
</div>
|
</div>
|
||||||
<span class="fr c_grey">
|
<span class="fr c_grey">
|
||||||
|
@ -31,7 +31,11 @@
|
||||||
提示:作品名称和描述中不要出现真实的姓名信息
|
提示:作品名称和描述中不要出现真实的姓名信息
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
<% if @homework.homework_type == 3 %>
|
||||||
|
<span id="min_num_member" style="display: none"><%=@homework.homework_detail_group.min_num %></span>
|
||||||
|
<span id="max_num_member" style="display: none"><%=@homework.homework_detail_group.max_num %></span>
|
||||||
|
<%=hidden_field_tag 'group_member_ids', params[:group_member_ids], :value=>User.current.id %>
|
||||||
|
<% end %>
|
||||||
<div>
|
<div>
|
||||||
<input type="text" name="student_work[name]" id="student_work_name" placeholder="请简洁的概括作品的功能或特性" class="InputBox W700" maxlength="200" onkeyup="regexStudentWorkName();" value="<%= @work.name%>">
|
<input type="text" name="student_work[name]" id="student_work_name" placeholder="请简洁的概括作品的功能或特性" class="InputBox W700" maxlength="200" onkeyup="regexStudentWorkName();" value="<%= @work.name%>">
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
@ -51,6 +55,12 @@
|
||||||
<%= render :partial => 'users/user_homework_attachment', :locals => {:container => @work, :has_program=>false,:has_group=>false} %>
|
<%= render :partial => 'users/user_homework_attachment', :locals => {:container => @work, :has_program=>false,:has_group=>false} %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<% if @homework.homework_type == 3 %>
|
||||||
|
<div class="mt5 fl">
|
||||||
|
<a href="javascript:void(0);" class="memberBtn fl mt3 mr15" title="请添加小组的其他成员" onclick="show_group_member();">合作成员</a>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
<div class="mt5">
|
<div class="mt5">
|
||||||
<a href="javascript:void(0);" class="BlueCirBtnMini fr" onclick="popupRegex();edit_student_work(<%= @work.id%>);">确定</a>
|
<a href="javascript:void(0);" class="BlueCirBtnMini fr" onclick="popupRegex();edit_student_work(<%= @work.id%>);">确定</a>
|
||||||
<span class="fr mr10 mt3">或</span>
|
<span class="fr mr10 mt3">或</span>
|
||||||
|
@ -61,9 +71,38 @@
|
||||||
</div><!----HomeWorkCon end-->
|
</div><!----HomeWorkCon end-->
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
<% if @homework.homework_detail_group %>
|
||||||
|
$(function(){
|
||||||
|
<%members = @work.student_work_projects.where("is_leader =?",0) %>
|
||||||
|
var str = $('#group_members_show').html();
|
||||||
|
<% members.each do |member| %>
|
||||||
|
str += '、<%= (User.find member.user_id).show_name %>';
|
||||||
|
<% end %>
|
||||||
|
$('#group_members_show').html(str);
|
||||||
|
$('span.group_detail_info').text('分组人数:<%=@homework.homework_detail_group.min_num %>-<%=@homework.homework_detail_group.max_num %> 人');
|
||||||
|
});
|
||||||
|
<% end %>
|
||||||
|
// 添加组成员
|
||||||
|
function show_group_member() {
|
||||||
|
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'student_work/choose_group_member',:locals => {:homework=>@homework,:edit_mode => true}) %>');
|
||||||
|
showModal('ajax-modal', '528px');
|
||||||
|
$('#ajax-modal').siblings().remove();
|
||||||
|
$('#ajax-modal').parent().css("top","").css("left","");
|
||||||
|
$('#ajax-modal').parent().addClass("addMemberCP");
|
||||||
|
}
|
||||||
|
|
||||||
function popupRegex(){
|
function popupRegex(){
|
||||||
if(regexStudentWorkName()&®exStudentWorkDescription())
|
if(regexStudentWorkName()&®exStudentWorkDescription())
|
||||||
{
|
{
|
||||||
|
if($("#group_member_ids").length > 0) {
|
||||||
|
if(regexStudentWorkMember(parseInt($.trim($("#min_num_member").html())),parseInt($.trim($("#max_num_member").html())))) {
|
||||||
|
$('#ajax-modal').html("<div><p align='center' style='margin-top: 35px'>作品信息完整性校验中,请稍等...</p></div>");
|
||||||
|
showModal('ajax-modal', '500px');
|
||||||
|
$('#ajax-modal').siblings().remove();
|
||||||
|
$('#ajax-modal').parent().css("top","").css("left","");
|
||||||
|
$('#ajax-modal').parent().addClass("anonymos");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
$('#ajax-modal').html("<div><p align='center' style='margin-top: 35px'>作品信息完整性校验中,请稍等...</p></div>");
|
$('#ajax-modal').html("<div><p align='center' style='margin-top: 35px'>作品信息完整性校验中,请稍等...</p></div>");
|
||||||
showModal('ajax-modal', '500px');
|
showModal('ajax-modal', '500px');
|
||||||
$('#ajax-modal').siblings().remove();
|
$('#ajax-modal').siblings().remove();
|
||||||
|
@ -71,4 +110,5 @@
|
||||||
$('#ajax-modal').parent().addClass("anonymos");
|
$('#ajax-modal').parent().addClass("anonymos");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
|
@ -11,6 +11,11 @@
|
||||||
$('#ajax-modal').parent().addClass("anonymos_work");
|
$('#ajax-modal').parent().addClass("anonymos_work");
|
||||||
});
|
});
|
||||||
<% end%>
|
<% end%>
|
||||||
|
<% if @homework.homework_detail_group %>
|
||||||
|
$(function(){
|
||||||
|
$('span.group_detail_info').text('分组人数:<%=@homework.homework_detail_group.min_num %>-<%=@homework.homework_detail_group.max_num %> 人');
|
||||||
|
});
|
||||||
|
<% end %>
|
||||||
|
|
||||||
//快速创建项目的弹框
|
//快速创建项目的弹框
|
||||||
function new_project(){
|
function new_project(){
|
||||||
|
@ -83,7 +88,7 @@
|
||||||
|
|
||||||
<div class="HomeWorkBox">
|
<div class="HomeWorkBox">
|
||||||
<div class="">
|
<div class="">
|
||||||
<div class="homepagePostTitle fl">
|
<div class="homepagePostTitle fl m_w530 hidden">
|
||||||
<%= @homework.name%>(作业名称)
|
<%= @homework.name%>(作业名称)
|
||||||
</div>
|
</div>
|
||||||
<span class="fr c_grey">
|
<span class="fr c_grey">
|
||||||
|
|
|
@ -18,7 +18,7 @@ $("#all_students_list").empty();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
<% if user.id.to_i != User.current.id.to_i && (@commit_student_ids.find{|e| e.to_i == user.id.to_i}).nil? %>
|
<% if user.id.to_i != User.current.id.to_i && (@commit_student_ids.find{|e| e.to_i == user.id.to_i}).nil? && user.member_of_course?(@course) %>
|
||||||
if (str.indexOf(<%=user.id.to_s %>) < 0) {
|
if (str.indexOf(<%=user.id.to_s %>) < 0) {
|
||||||
$("#student_<%=user.id %>").one("click",function choose_student() {
|
$("#student_<%=user.id %>").one("click",function choose_student() {
|
||||||
var li = "<li id='choose_student_<%=user.id %>'";
|
var li = "<li id='choose_student_<%=user.id %>'";
|
||||||
|
@ -29,6 +29,10 @@ $("#all_students_list").empty();
|
||||||
$("#choose_students_list").append(li);
|
$("#choose_students_list").append(li);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
<% elsif !user.member_of_course?(@course) %>
|
||||||
|
if (str.indexOf(<%=user.id.to_s %>) < 0) {
|
||||||
|
$("#student_<%=user.id %>").attr("title","该项目成员不是本课程的学生");
|
||||||
|
}
|
||||||
<% else %>
|
<% else %>
|
||||||
if (str.indexOf(<%=user.id.to_s %>) < 0) {
|
if (str.indexOf(<%=user.id.to_s %>) < 0) {
|
||||||
$("#student_<%=user.id %>").attr("title","该学生已加入其它分组");
|
$("#student_<%=user.id %>").attr("title","该学生已加入其它分组");
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<% end %> TO <!--+"(课程名称)" -->
|
<% end %> TO <!--+"(课程名称)" -->
|
||||||
<%= link_to activity.course.name.to_s+" | 课程作业", homework_common_index_path(:course => activity.course.id, :host=> Setting.host_course), :class => "newsBlue ml15"%>
|
<%= link_to activity.course.name.to_s+" | 课程作业", homework_common_index_path(:course => activity.course.id, :host=> Setting.host_course), :class => "newsBlue ml15"%>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostTitle hidden m_w505 fl"> <!--+"(作业名称)"-->
|
<div class="homepagePostTitle hidden fl m_w505"> <!--+"(作业名称)"-->
|
||||||
<%= link_to activity.name.to_s, student_work_index_path(:homework => activity.id,:host=> Setting.host_course), :class => "postGrey"%>
|
<%= link_to activity.name.to_s, student_work_index_path(:homework => activity.id,:host=> Setting.host_course), :class => "postGrey"%>
|
||||||
</div>
|
</div>
|
||||||
<% if activity.homework_detail_manual%>
|
<% if activity.homework_detail_manual%>
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
<% works = cur_user_works_for_homework activity %>
|
<% works = cur_user_works_for_homework activity %>
|
||||||
<% if works.nil? && projects.nil? %>
|
<% if works.nil? && projects.nil? %>
|
||||||
<div class="homepagePostSubmit">
|
<div class="homepagePostSubmit">
|
||||||
<%=link_to "关联项目",new_student_work_project_student_work_index_path(:homework => activity.id,:is_in_course=>-1,:user_activity_id=>user_activity_id,:course_activity=>course_activity),remote: true,:class=> 'c_blue', :title=> '请选择分组作业关联的项目' %>
|
<%=link_to "关联项目",new_student_work_project_student_work_index_path(:homework => activity.id,:is_in_course=>-1,:user_activity_id=>user_activity_id,:course_activity=>course_activity),remote: true,:class=> 'c_blue', :title=> '请各组长关联作业项目' %>
|
||||||
<%#= relate_project(activity,is_teacher,-1,user_activity_id,course_activity) %>
|
<%#= relate_project(activity,is_teacher,-1,user_activity_id,course_activity) %>
|
||||||
</div>
|
</div>
|
||||||
<% elsif works.nil? %>
|
<% elsif works.nil? %>
|
||||||
|
@ -81,7 +81,11 @@
|
||||||
<%= activity.language_name%>
|
<%= activity.language_name%>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<% if activity.homework_type == 3 && activity.homework_detail_group%>
|
||||||
|
<div class="homepagePostDeadline mr15">
|
||||||
|
分组人数:<%=activity.homework_detail_group.min_num %>-<%=activity.homework_detail_group.max_num %> 人
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
<div class="homepagePostDeadline">截止时间:<%= activity.end_time.to_s %> 23:59</div>
|
<div class="homepagePostDeadline">截止时间:<%= activity.end_time.to_s %> 23:59</div>
|
||||||
</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 maxh360 lh18 table_maxWidth" id="activity_description_<%= user_activity_id%>">
|
||||||
|
@ -93,25 +97,49 @@
|
||||||
<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_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 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="cl"></div>
|
||||||
|
<div class="mt5">
|
||||||
|
<div class="homepagePostDeadline">
|
||||||
|
匿评开启时间:<%= activity.homework_detail_manual.evaluation_start%> 00:00
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostDeadline ml15">
|
||||||
|
匿评关闭时间:<%= activity.homework_detail_manual.evaluation_end%> 23:59
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
<div>
|
<div>
|
||||||
<%= render :partial => 'student_work/work_attachments', :locals => {:attachments => activity.attachments} %>
|
<%= render :partial => 'student_work/work_attachments', :locals => {:attachments => activity.attachments} %>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
<% if activity.homework_type == 3 && !activity.student_work_projects.empty? && activity.homework_detail_group.base_on_project == 1 %>
|
<% if activity.homework_type == 3 && activity.homework_detail_group.base_on_project == 1 %>
|
||||||
<div class="mt10">
|
<div class="mt10">
|
||||||
|
<% projects = activity.student_work_projects.where("is_leader = 1") %>
|
||||||
<div class="fl mr5 fontGrey3">
|
<div class="fl mr5 fontGrey3">
|
||||||
<!--<img src="/images/course/proRelated.png" width="25" height="25" class="borderRadius mt7 ml7" title="已关联项目" />-->
|
已关联项目:<%='各小组尚未将小组项目关联到本次作业。' if projects.empty? %>
|
||||||
已关联项目:
|
|
||||||
</div>
|
</div>
|
||||||
<% activity.student_work_projects.where("is_leader = 1").each do |pro| %>
|
<% projects.each do |pro| %>
|
||||||
<div class="mr10 mb10 fl">
|
|
||||||
<% project = Project.find pro.project_id %>
|
<% project = Project.find pro.project_id %>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function(){
|
||||||
|
$("#project_img_<%=project.id %>").mouseover(function(){
|
||||||
|
$("#relatePInfo_<%=project.id %>").css("display","block");
|
||||||
|
}).mouseout(function(){
|
||||||
|
$("#relatePInfo_<%=project.id %>").css("display","none");
|
||||||
|
})
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div class="mr20 mb10 fl">
|
||||||
<% if project.is_public || User.current.member_of?(project) || User.current.admin? %>
|
<% if project.is_public || User.current.member_of?(project) || User.current.admin? %>
|
||||||
<%= link_to image_tag(url_to_avatar(project),:width=>"40",:height => "40",:class => "borderRadius"),project_path(project.id,:host=>Setting.host_name),:alt =>"项目头像" %>
|
<%= link_to image_tag(url_to_avatar(project),:width=>"40",:height => "40",:class => "borderRadius"),project_path(project.id,:host=>Setting.host_name),:id=>"project_img_"+project.id.to_s,:alt =>"项目头像" %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= image_tag(url_to_avatar(project),:width=>"40",:height => "40",:class => "borderRadius") %>
|
<%= image_tag(url_to_avatar(project),:width=>"40",:height => "40",:class => "borderRadius",:id=>"project_img_"+project.id.to_s,:alt =>"项目头像") %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<p class="c_red tac" title="综合评分"><%=project.project_score.score.to_i %></p>
|
<div class="relatePInfo" id="relatePInfo_<%=project.id %>">
|
||||||
|
项目名称:<%=project.name %><br />
|
||||||
|
创建者:<%=(User.find project.user_id).show_name %>(组长)<br />
|
||||||
|
<% time=project.updated_on %>
|
||||||
|
<% time=ForgeActivity.where("project_id=?",project.id).last.updated_at if ForgeActivity.where("project_id=?",project.id).last %>
|
||||||
|
更新时间:<%=time_from_now time %>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<div class="mb10 mt10">
|
<div class="mb10 mt10">
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" class="mr5" name="base_on_project" value="<%=(edit_mode && homework.is_group_homework?) ? homework.homework_detail_group.base_on_project : 0 %>" id="base_on_project"/>
|
<input type="checkbox" class="mr5" name="base_on_project" value="<%=(edit_mode && homework.is_group_homework?) ? homework.homework_detail_group.base_on_project : 0 %>" id="base_on_project"/>
|
||||||
<span class="f14 fontGrey3 mr10">是否基于项目实施</span>
|
<span class="f14 fontGrey3 mr10">基于项目实施</span>
|
||||||
</label>
|
</label>
|
||||||
<p class="c_red">提醒:勾选后各小组必须在Trustie平台创建项目,教师可随时观察平台对各小组最新进展的实时统计。</p>
|
<p class="c_red">提醒:勾选后各小组必须在Trustie平台创建项目,教师可随时观察平台对各小组最新进展的实时统计。</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -48,11 +48,13 @@
|
||||||
<span class="fl fontGrey2" id="group_members"></span>
|
<span class="fl fontGrey2" id="group_members"></span>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<% if @homework && @homework.homework_type == 3 %>
|
<% if @homework && @homework.homework_type == 3 %>
|
||||||
|
<% unless defined?(show_member) && show_member %>
|
||||||
<sapn class="fl fontGrey2" id="group_members_show">
|
<sapn class="fl fontGrey2" id="group_members_show">
|
||||||
合作成员:<%=User.current.show_name %>(组长)
|
合作成员:<%=User.current.show_name %>(组长)
|
||||||
</sapn>
|
</sapn>
|
||||||
<span id="student_work_group_textarea" class="ml10 c_red fl"></span>
|
<span id="student_work_group_textarea" class="ml10 c_red fl"></span>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<% end %>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<span class="fl fontGrey2" id="relate_project_show">
|
<span class="fl fontGrey2" id="relate_project_show">
|
||||||
<% if @homework && @homework.homework_type == 3 && @homework.homework_detail_group.base_on_project == 1 %>
|
<% if @homework && @homework.homework_type == 3 && @homework.homework_detail_group.base_on_project == 1 %>
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
TO
|
TO
|
||||||
<%= link_to homework_common.course.name, course_path(homework_common.course_id), :class => "newsBlue ml15"%>
|
<%= link_to homework_common.course.name, course_path(homework_common.course_id), :class => "newsBlue ml15"%>
|
||||||
</div>
|
</div>
|
||||||
<span class="homepagePostTitle hidden m_w505 fl">
|
<span class="homepagePostTitle hidden fl m_w505">
|
||||||
<%= link_to homework_common.name,student_work_index_path(:homework => homework_common.id),:class => "postGrey"%>
|
<%= link_to homework_common.name,student_work_index_path(:homework => homework_common.id),:class => "postGrey"%>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
@ -45,8 +45,10 @@
|
||||||
<% end%>
|
<% end%>
|
||||||
<% end%>
|
<% end%>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<% if homework_common.homework_type == 3%>
|
<% if homework_common.homework_type == 3 && homework_common.homework_detail_group.base_on_project == 1%>
|
||||||
<span class="c_red">系统提示:该作业要求各组长<%=link_to "创建项目", new_project_path(:host=>Setting.host_name),:class=>"c_red",:title=>"新建项目",:style=>"text-decoration:underline;"%>,组成员加入项目,然后由组长关联项目。谢谢配合!</span>
|
<span class="c_red">系统提示:该作业要求各组长<%=link_to "创建项目", new_project_path(:host=>Setting.host_name),:class=>"c_red",:title=>"新建项目",:style=>"text-decoration:underline;"%>,组成员加入项目,然后由组长关联项目。谢谢配合!</span>
|
||||||
|
<% elsif homework_common.homework_type == 3 && homework_common.homework_detail_group.base_on_project == 0%>
|
||||||
|
<span class="c_red">系统提示:该作业要求各组长提交作品,提交作品时请添加组成员。谢谢配合!</span>
|
||||||
<% end %>
|
<% end %>
|
||||||
<div class="homepagePostSubmitContainer">
|
<div class="homepagePostSubmitContainer">
|
||||||
<% if homework_common.homework_type == 3 && !is_teacher && homework_common.homework_detail_group.base_on_project == 1 && User.current.member_of_course?(homework_common.course) %>
|
<% if homework_common.homework_type == 3 && !is_teacher && homework_common.homework_detail_group.base_on_project == 1 && User.current.member_of_course?(homework_common.course) %>
|
||||||
|
@ -54,7 +56,7 @@
|
||||||
<% works = cur_user_works_for_homework homework_common %>
|
<% works = cur_user_works_for_homework homework_common %>
|
||||||
<% if works.nil? && projects.nil? %>
|
<% if works.nil? && projects.nil? %>
|
||||||
<div class="homepagePostSubmit">
|
<div class="homepagePostSubmit">
|
||||||
<%=link_to "关联项目",new_student_work_project_student_work_index_path(:homework => homework_common.id,:is_in_course=>is_in_course,:user_activity_id=>-1,:course_activity=>-1),remote: true,:class=> 'c_blue', :title=> '请选择分组作业关联的项目' %>
|
<%=link_to "关联项目",new_student_work_project_student_work_index_path(:homework => homework_common.id,:is_in_course=>is_in_course,:user_activity_id=>-1,:course_activity=>-1),remote: true,:class=> 'c_blue', :title=> '请各组长关联作业项目' %>
|
||||||
<%#= relate_project(activity,is_teacher,-1,user_activity_id,course_activity) %>
|
<%#= relate_project(activity,is_teacher,-1,user_activity_id,course_activity) %>
|
||||||
</div>
|
</div>
|
||||||
<% elsif works.nil? %>
|
<% elsif works.nil? %>
|
||||||
|
@ -77,6 +79,11 @@
|
||||||
<%= homework_common.language_name%>
|
<%= homework_common.language_name%>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<% if homework_common.homework_type == 3 && homework_common.homework_detail_group%>
|
||||||
|
<div class="homepagePostDeadline mr15">
|
||||||
|
分组人数:<%=homework_common.homework_detail_group.min_num %>-<%=homework_common.homework_detail_group.max_num %> 人
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
<div class="homepagePostDeadline">
|
<div class="homepagePostDeadline">
|
||||||
<%= l(:label_end_time)%>:<%= homework_common.end_time%> 23:59
|
<%= l(:label_end_time)%>:<%= homework_common.end_time%> 23:59
|
||||||
</div>
|
</div>
|
||||||
|
@ -95,25 +102,49 @@
|
||||||
<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_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 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 class="cl"></div>
|
||||||
|
<div class="mt5">
|
||||||
|
<div class="homepagePostDeadline">
|
||||||
|
匿评开启时间:<%= homework_common.homework_detail_manual.evaluation_start%> 00:00
|
||||||
|
</div>
|
||||||
|
<div class="homepagePostDeadline ml15">
|
||||||
|
匿评关闭时间:<%= homework_common.homework_detail_manual.evaluation_end%> 23:59
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
<div>
|
<div>
|
||||||
<%= render :partial => 'student_work/work_attachments', :locals => {:attachments => homework_common.attachments} %>
|
<%= render :partial => 'student_work/work_attachments', :locals => {:attachments => homework_common.attachments} %>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
<% if homework_common.homework_type == 3 && !homework_common.student_work_projects.empty? && homework_common.homework_detail_group.base_on_project == 1 %>
|
<% if homework_common.homework_type == 3 && homework_common.homework_detail_group.base_on_project == 1 %>
|
||||||
<div class="mt10">
|
<div class="mt10">
|
||||||
|
<% projects = homework_common.student_work_projects.where("is_leader = 1") %>
|
||||||
<div class="fl mr5 fontGrey3">
|
<div class="fl mr5 fontGrey3">
|
||||||
<!--<img src="/images/course/proRelated.png" width="25" height="25" class="borderRadius mt7 ml7" title="已关联项目" />-->
|
已关联项目:<%='各小组尚未将小组项目关联到本次作业。' if projects.empty? %>
|
||||||
已关联项目:
|
|
||||||
</div>
|
</div>
|
||||||
<% homework_common.student_work_projects.where("is_leader = 1").each do |pro| %>
|
<% projects.each do |pro| %>
|
||||||
<div class="mr10 mb10 fl">
|
|
||||||
<% project = Project.find pro.project_id %>
|
<% project = Project.find pro.project_id %>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function(){
|
||||||
|
$("#project_img_<%=project.id %>").mouseover(function(){
|
||||||
|
$("#relatePInfo_<%=project.id %>").css("display","block");
|
||||||
|
}).mouseout(function(){
|
||||||
|
$("#relatePInfo_<%=project.id %>").css("display","none");
|
||||||
|
})
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<div class="mr20 mb10 fl">
|
||||||
<% if project.is_public || User.current.member_of?(project) || User.current.admin? %>
|
<% if project.is_public || User.current.member_of?(project) || User.current.admin? %>
|
||||||
<%= link_to image_tag(url_to_avatar(project),:width=>"40",:height => "40",:class => "borderRadius"),project_path(project.id,:host=>Setting.host_name),:alt =>"项目头像" %>
|
<%= link_to image_tag(url_to_avatar(project),:width=>"40",:height => "40",:class => "borderRadius"),project_path(project.id,:host=>Setting.host_name),:id=>"project_img_"+project.id.to_s,:alt =>"项目头像" %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= image_tag(url_to_avatar(project),:width=>"40",:height => "40",:class => "borderRadius") %>
|
<%= image_tag(url_to_avatar(project),:width=>"40",:height => "40",:class => "borderRadius",:id=>"project_img_"+project.id.to_s,:alt =>"项目头像") %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<p class="c_red tac" title="综合评分"><%=project.project_score.score.to_i %></p>
|
<div class="relatePInfo" id="relatePInfo_<%=project.id %>">
|
||||||
|
项目名称:<%=project.name %><br />
|
||||||
|
创建者:<%=(User.find project.user_id).show_name %>(组长)<br />
|
||||||
|
<% time=project.updated_on %>
|
||||||
|
<% time=ForgeActivity.where("project_id=?",project.id).last.updated_at if ForgeActivity.where("project_id=?",project.id).last %>
|
||||||
|
更新时间:<%=time_from_now time %>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
|
|
||||||
<div id="homework_attachments">
|
<div id="homework_attachments">
|
||||||
<!-- 编辑作业 && 作业类型为匿评作业 时没有编程选项-->
|
<!-- 编辑作业 && 作业类型为匿评作业 时没有编程选项-->
|
||||||
<%= render :partial => 'users/user_homework_attachment', :locals => {:container => homework, :has_program=>!(edit_mode && homework.homework_type != 2), :has_group=>!(edit_mode && homework.homework_type != 3)} %>
|
<%= render :partial => 'users/user_homework_attachment', :locals => {:container => homework, :has_program=>!(edit_mode && homework.homework_type != 2), :has_group=>(!(edit_mode && homework.homework_type != 3))&& homework.student_works.empty?,:show_member => true} %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,13 @@ $("#homework_end_time").val("<%= @homework.end_time%>");
|
||||||
<% if @select_course == "0"%>
|
<% if @select_course == "0"%>
|
||||||
$("#course_id").val("<%= @homework.course_id%>");
|
$("#course_id").val("<%= @homework.course_id%>");
|
||||||
<% end%>
|
<% end%>
|
||||||
$("#homework_attachments").html("<%= escape_javascript(render :partial => 'users/user_homework_attachment', :locals => { :container => @homework,:has_program => true,:has_group => true })%>");
|
$("#homework_attachments").html("<%= escape_javascript(render :partial => 'users/user_homework_attachment', :locals => { :container => @homework,:has_program => true,:has_group => true,:show_member=>true})%>");
|
||||||
homework_description_editor.html("<%= escape_javascript(@homework.description.html_safe)%>");
|
homework_description_editor.html("<%= escape_javascript(@homework.description.html_safe)%>");
|
||||||
|
<% if @homework_detail_group %>
|
||||||
|
$('span.group_detail_info').text('分组人数:<%=@homework_detail_group.min_num %>-<%=@homework_detail_group.max_num %> 人');
|
||||||
|
<% end %>
|
||||||
$("#BluePopupBox").html("<%=escape_javascript( render :partial => 'users/user_programing_attr', :locals => {:edit_mode => true, :homework => @homework})%>");
|
$("#BluePopupBox").html("<%=escape_javascript( render :partial => 'users/user_programing_attr', :locals => {:edit_mode => true, :homework => @homework})%>");
|
||||||
|
$("#GroupPopupBox").html("<%=escape_javascript( render :partial => 'users/user_group_attr', :locals => {:edit_mode => true, :homework => @homework})%>");
|
||||||
//$("input[name='homework_type']").val("<%#= @homework.homework_type%>");
|
//$("input[name='homework_type']").val("<%#= @homework.homework_type%>");
|
||||||
$("#homework_editor").show();
|
$("#homework_editor").show();
|
||||||
$("#BluePopupBox a.BlueCirBtn").click();
|
$("#BluePopupBox a.BlueCirBtn").click();
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
class DeleteValidateCourseContributor < ActiveRecord::Migration
|
||||||
|
def up
|
||||||
|
course_contributors = CourseContributorScore.where("course_id>? and created_at<? ", 450, "2015-12-15 19:51:48")
|
||||||
|
course_contributors.delete_all
|
||||||
|
c170 = CourseContributorScore.where("course_id =?", 170)
|
||||||
|
c170.delete_all
|
||||||
|
c436 = CourseContributorScore.where("course_id =?", 436)
|
||||||
|
c436.delete_all
|
||||||
|
end
|
||||||
|
|
||||||
|
def down
|
||||||
|
end
|
||||||
|
end
|
|
@ -0,0 +1,9 @@
|
||||||
|
class DeleteExerciseUser < ActiveRecord::Migration
|
||||||
|
def up
|
||||||
|
eus=ExerciseUser.where("score is null and status=?",0)
|
||||||
|
eus.delete_all
|
||||||
|
end
|
||||||
|
|
||||||
|
def down
|
||||||
|
end
|
||||||
|
end
|
|
@ -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 => 20151209085942) do
|
ActiveRecord::Schema.define(:version => 20151215112107) 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
|
||||||
|
|
|
@ -267,9 +267,16 @@ function edit_student_work(id)
|
||||||
{
|
{
|
||||||
if(regexStudentWorkName()&®exStudentWorkDescription())
|
if(regexStudentWorkName()&®exStudentWorkDescription())
|
||||||
{
|
{
|
||||||
|
if($("#group_member_ids").length > 0) {
|
||||||
|
if(regexStudentWorkMember(parseInt($.trim($("#min_num_member").html())),parseInt($.trim($("#max_num_member").html())))) {
|
||||||
$("#edit_student_work_" + id).submit();
|
$("#edit_student_work_" + id).submit();
|
||||||
$("#ajax-indicator").hide();
|
$("#ajax-indicator").hide();
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
$("#edit_student_work_" + id).submit();
|
||||||
|
$("#ajax-indicator").hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//验证作品名称
|
//验证作品名称
|
||||||
|
|
|
@ -41,7 +41,7 @@ a:hover.news_foot{ color:#787b7e; border:1px solid #d4d4d4;}
|
||||||
.pingBoxTit{ float:left; width:625px; margin-left:10px;}
|
.pingBoxTit{ float:left; width:625px; margin-left:10px;}
|
||||||
.pingText{border:1px solid #CCCCCC; margin:5px; padding:5px; width:610px; height:20px; }
|
.pingText{border:1px solid #CCCCCC; margin:5px; padding:5px; width:610px; height:20px; }
|
||||||
.pingBackTit{ float:left; width:573px; margin-left:10px; }
|
.pingBackTit{ float:left; width:573px; margin-left:10px; }
|
||||||
.hworkUl{ height:30px; border-bottom:1px solid #eaeaea; line-height:30px; vertical-align:middle; background-color: #f6f6f6;}
|
.hworkUl{ height:30px;width:720px; border-bottom:1px solid #eaeaea; line-height:30px; vertical-align:middle; background-color: #f6f6f6;}
|
||||||
.hworkH30 {height:30px !important; line-height:30px !important;}
|
.hworkH30 {height:30px !important; line-height:30px !important;}
|
||||||
.hworkListRow {height:65px; border-bottom:1px dashed #eaeaea; line-height:65px; vertical-align:middle; position: relative;}
|
.hworkListRow {height:65px; border-bottom:1px dashed #eaeaea; line-height:65px; vertical-align:middle; position: relative;}
|
||||||
.hworkListRow:hover {background-color:#f6f6f7;}
|
.hworkListRow:hover {background-color:#f6f6f7;}
|
||||||
|
@ -1209,6 +1209,7 @@ a:hover.blueCir{ background:#3598db; color:#fff;}
|
||||||
.proHelp {background:url(/images/course/hwork_icon.png) -5px -124px no-repeat; display:inline-block; width:15px; height:15px; display:inline-block;}
|
.proHelp {background:url(/images/course/hwork_icon.png) -5px -124px no-repeat; display:inline-block; width:15px; height:15px; display:inline-block;}
|
||||||
.hworkPrName {width:110px; max-width:110px; overflow:hidden; white-space: nowrap; text-overflow:ellipsis; float:left; height:18px; line-height:18px; font-size:12px; color:#888888; text-align:center;}
|
.hworkPrName {width:110px; max-width:110px; overflow:hidden; white-space: nowrap; text-overflow:ellipsis; float:left; height:18px; line-height:18px; font-size:12px; color:#888888; text-align:center;}
|
||||||
.mr150 {margin-right:150px;}
|
.mr150 {margin-right:150px;}
|
||||||
|
.relatePInfo {position:absolute; background-color:#ffffff; padding:3px 8px; white-space:nowrap; box-shadow:0px 2px 8px rgba(146, 153, 169, 0.5); z-index:999; color:#585858; cursor:pointer; display:none;}
|
||||||
|
|
||||||
/*上传资源弹窗*/
|
/*上传资源弹窗*/
|
||||||
.resourceUploadPopup {width:400px; height:auto; border:3px solid #269ac9 !important; 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 !important; padding-left:16px; padding-bottom:16px; background-color:#ffffff; position:absolute; top:50%; left:50%; margin-left:-200px; z-index:1000;}
|
||||||
|
|
|
@ -1381,3 +1381,5 @@ a:hover.blueCir{ background:#3598db; color:#fff;}
|
||||||
.proHelp {background:url(/images/course/hwork_icon.png) -5px -124px no-repeat; display:inline-block; width:15px; height:15px; display:inline-block;}
|
.proHelp {background:url(/images/course/hwork_icon.png) -5px -124px no-repeat; display:inline-block; width:15px; height:15px; display:inline-block;}
|
||||||
.hworkPrName {width:110px; max-width:110px; overflow:hidden; white-space: nowrap; text-overflow:ellipsis; float:left; height:18px; line-height:18px; font-size:12px; color:#888888; text-align:center;}
|
.hworkPrName {width:110px; max-width:110px; overflow:hidden; white-space: nowrap; text-overflow:ellipsis; float:left; height:18px; line-height:18px; font-size:12px; color:#888888; text-align:center;}
|
||||||
.mr150 {margin-right:150px;}
|
.mr150 {margin-right:150px;}
|
||||||
|
.relatePInfo {position:absolute; background-color:#ffffff; padding:3px 8px; white-space:nowrap; box-shadow:0px 2px 8px rgba(146, 153, 169, 0.5); z-index:999; color:#585858; cursor:pointer; display:none;}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue