Merge branch 'szzh' of http://repository.trustie.net/xianbo/trustie2 into szzh
Conflicts: .rspec
This commit is contained in:
commit
965703a80e
|
@ -160,12 +160,15 @@ class ForumsController < ApplicationController
|
||||||
def create
|
def create
|
||||||
@forum = Forum.new(params[:forum])
|
@forum = Forum.new(params[:forum])
|
||||||
@forum.creator_id = User.current.id
|
@forum.creator_id = User.current.id
|
||||||
|
|
||||||
respond_to do |format|
|
|
||||||
if @forum.save
|
if @forum.save
|
||||||
|
respond_to do |format|
|
||||||
|
|
||||||
format.html { redirect_to @forum, notice: l(:label_forum_create_succ) }
|
format.html { redirect_to @forum, notice: l(:label_forum_create_succ) }
|
||||||
format.json { render json: @forum, status: :created, location: @forum }
|
format.json { render json: @forum, status: :created, location: @forum }
|
||||||
|
end
|
||||||
|
|
||||||
else
|
else
|
||||||
|
respond_to do |format|
|
||||||
flash.now[:error] = "#{l :label_forum_create_fail}: #{@forum.errors.full_messages[0]}"
|
flash.now[:error] = "#{l :label_forum_create_fail}: #{@forum.errors.full_messages[0]}"
|
||||||
format.html { render action: "new" }
|
format.html { render action: "new" }
|
||||||
format.json { render json: @forum.errors, status: :unprocessable_entity }
|
format.json { render json: @forum.errors, status: :unprocessable_entity }
|
||||||
|
|
|
@ -26,6 +26,7 @@ class HomeworkAttachController < ApplicationController
|
||||||
get_not_batch_homework_list sort,direction, @bid.id
|
get_not_batch_homework_list sort,direction, @bid.id
|
||||||
@cur_page = params[:page] || 1
|
@cur_page = params[:page] || 1
|
||||||
@cur_type = 1
|
@cur_type = 1
|
||||||
|
@cur_sort,@cur_direction = params[:sort] || "s_socre", params[:direction] || "desc"
|
||||||
@direction = direction == 'asc'? 'desc' : 'asc'
|
@direction = direction == 'asc'? 'desc' : 'asc'
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.js
|
format.js
|
||||||
|
@ -433,7 +434,7 @@ class HomeworkAttachController < ApplicationController
|
||||||
#添加留言
|
#添加留言
|
||||||
def addjours
|
def addjours
|
||||||
@is_teacher,@is_anonymous_comments,@m_score = params[:is_teacher]=="true",params[:is_anonymous_comments]=="true",params[:stars_value]
|
@is_teacher,@is_anonymous_comments,@m_score = params[:is_teacher]=="true",params[:is_anonymous_comments]=="true",params[:stars_value]
|
||||||
@cur_page,@cur_type = params[:cur_page] || 1,params[:cur_type] || 5
|
@cur_page,@cur_type = params[:page] || 1,params[:cur_type] || 5
|
||||||
@homework = HomeworkAttach.find(params[:homework_id])
|
@homework = HomeworkAttach.find(params[:homework_id])
|
||||||
@stars_reates = @homework.rates(:quality)
|
@stars_reates = @homework.rates(:quality)
|
||||||
homework = @homework
|
homework = @homework
|
||||||
|
@ -479,7 +480,7 @@ class HomeworkAttachController < ApplicationController
|
||||||
|
|
||||||
if @cur_type == "1" #如果当前是老师未批列表,需要刷新整个作业列表界面
|
if @cur_type == "1" #如果当前是老师未批列表,需要刷新整个作业列表界面
|
||||||
@bid = @homework.bid
|
@bid = @homework.bid
|
||||||
get_not_batch_homework_list "s_socre","desc",@homework.bid_id
|
get_not_batch_homework_list params[:cur_sort] || "s_socre",params[:cur_direction] || "desc",@homework.bid_id
|
||||||
elsif @cur_type == "2" #老师已批列表
|
elsif @cur_type == "2" #老师已批列表
|
||||||
@result_homework = HomeworkAttach.find_by_sql("SELECT homework_attaches.*,
|
@result_homework = HomeworkAttach.find_by_sql("SELECT homework_attaches.*,
|
||||||
(SELECT stars FROM seems_rateable_rates WHERE rateable_type = 'HomeworkAttach' AND rateable_id = homework_attaches.id AND is_teacher_score = 1 AND stars IS NOT NULL ORDER BY updated_at DESC limit 0,1) AS t_score,
|
(SELECT stars FROM seems_rateable_rates WHERE rateable_type = 'HomeworkAttach' AND rateable_id = homework_attaches.id AND is_teacher_score = 1 AND stars IS NOT NULL ORDER BY updated_at DESC limit 0,1) AS t_score,
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
class PollController < ApplicationController
|
class PollController < ApplicationController
|
||||||
before_filter :find_poll_and_course, :only => [:edit,:update,:destroy,:show,:statistics_result,:create_poll_question,:commit_poll,:commit_answer,:publish_poll]
|
before_filter :find_poll_and_course, :only => [:edit,:update,:destroy,:show,:statistics_result,:create_poll_question,:commit_poll,:commit_answer,:publish_poll,:republish_poll,:poll_result]
|
||||||
before_filter :find_container, :only => [:new,:create, :index]
|
before_filter :find_container, :only => [:new,:create, :index]
|
||||||
before_filter :is_member_of_course, :only => [:index,:show]
|
before_filter :is_member_of_course, :only => [:index,:show,:poll_result]
|
||||||
before_filter :is_course_teacher, :only => [:new,:create,:edit,:update,:destroy,:publish_poll]
|
before_filter :is_course_teacher, :only => [:new,:create,:edit,:update,:destroy,:publish_poll,:republish_poll]
|
||||||
include PollHelper
|
include PollHelper
|
||||||
def index
|
def index
|
||||||
if @course
|
if @course
|
||||||
|
@ -40,7 +40,7 @@ class PollController < ApplicationController
|
||||||
def new
|
def new
|
||||||
if @course
|
if @course
|
||||||
option = {
|
option = {
|
||||||
:polls_name => l(:label_poll_new),
|
:polls_name => "",
|
||||||
:polls_type => @course.class.to_s,
|
:polls_type => @course.class.to_s,
|
||||||
:polls_group_id => @course.id,
|
:polls_group_id => @course.id,
|
||||||
:polls_status => 1,
|
:polls_status => 1,
|
||||||
|
@ -187,7 +187,13 @@ class PollController < ApplicationController
|
||||||
@poll.polls_status = 2
|
@poll.polls_status = 2
|
||||||
@poll.published_at = Time.now
|
@poll.published_at = Time.now
|
||||||
if @poll.save
|
if @poll.save
|
||||||
|
if params[:is_remote]
|
||||||
redirect_to poll_index_url(:polls_type => "Course", :polls_group_id => @course.id)
|
redirect_to poll_index_url(:polls_type => "Course", :polls_group_id => @course.id)
|
||||||
|
else
|
||||||
|
respond_to do |format|
|
||||||
|
format.js
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -311,6 +317,27 @@ class PollController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
#重新发布问卷
|
||||||
|
def republish_poll
|
||||||
|
@poll.poll_questions.each do |poll_question|
|
||||||
|
poll_question.poll_votes.destroy_all
|
||||||
|
end
|
||||||
|
@poll.poll_users.destroy_all
|
||||||
|
@poll.polls_status = 1
|
||||||
|
@poll.save
|
||||||
|
respond_to do |format|
|
||||||
|
format.js
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
#显示某个学生某份问卷的填写结果
|
||||||
|
def poll_result
|
||||||
|
@poll_questions = paginateHelper @poll.poll_questions,5
|
||||||
|
respond_to do |format|
|
||||||
|
format.html{render :layout => 'base_courses'}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
def find_poll_and_course
|
def find_poll_and_course
|
||||||
@poll = Poll.find params[:id]
|
@poll = Poll.find params[:id]
|
||||||
|
@ -337,7 +364,8 @@ class PollController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def is_course_teacher
|
def is_course_teacher
|
||||||
render_403 unless(@course && User.current.allowed_to?(:as_teacher,@course))
|
@is_teacher = User.current.allowed_to?(:as_teacher,@course)
|
||||||
|
render_403 unless(@course && @is_teacher)
|
||||||
end
|
end
|
||||||
|
|
||||||
#获取未完成的题目
|
#获取未完成的题目
|
||||||
|
|
|
@ -35,7 +35,7 @@ class ProjectsController < ApplicationController
|
||||||
# edit
|
# edit
|
||||||
before_filter :authorize1, :only => [:show]
|
before_filter :authorize1, :only => [:show]
|
||||||
#
|
#
|
||||||
before_filter :find_project, :except => [ :index, :search,:list, :new, :create, :copy, :statistics, :new_join, :course, :enterprise_course, :course_enterprise,:view_homework_attaches]
|
before_filter :find_project, :except => [ :index, :search,:list, :new, :create, :copy, :statistics, :new_join, :course, :enterprise_course, :course_enterprise,:view_homework_attaches,:join_project]
|
||||||
# before_filter :authorize, :except => [:new_join, :new_homework, :homework, :statistics, :search, :watcherlist, :index, :list, :new, :create, :copy, :archive, :unarchive, :destroy, :member, :focus, :file,
|
# before_filter :authorize, :except => [:new_join, :new_homework, :homework, :statistics, :search, :watcherlist, :index, :list, :new, :create, :copy, :archive, :unarchive, :destroy, :member, :focus, :file,
|
||||||
# :statistics, :feedback, :course, :enterprise_course, :course_enterprise, :project_respond, :share,
|
# :statistics, :feedback, :course, :enterprise_course, :course_enterprise, :project_respond, :share,
|
||||||
# :show_projects_score, :issue_score_index, :news_score_index, :file_score_index, :code_submit_score_index, :projects_topic_score_index]
|
# :show_projects_score, :issue_score_index, :news_score_index, :file_score_index, :code_submit_score_index, :projects_topic_score_index]
|
||||||
|
@ -558,6 +558,11 @@ class ProjectsController < ApplicationController
|
||||||
|
|
||||||
# Show @project
|
# Show @project
|
||||||
def show
|
def show
|
||||||
|
if(@project && !@project.is_public && !User.current.member_of?(@project))
|
||||||
|
render_403
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
@project_type = params[:project_type]
|
@project_type = params[:project_type]
|
||||||
|
|
||||||
# try to redirect to the requested menu item
|
# try to redirect to the requested menu item
|
||||||
|
@ -912,6 +917,14 @@ class ProjectsController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
#加入私有项目
|
||||||
|
def join_project
|
||||||
|
respond_to do |format|
|
||||||
|
format.js
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def memberAccess
|
def memberAccess
|
||||||
|
|
|
@ -111,6 +111,10 @@ module CoursesHelper
|
||||||
#garble count
|
#garble count
|
||||||
# end
|
# end
|
||||||
|
|
||||||
|
#获取课程所有成员
|
||||||
|
def course_all_member course
|
||||||
|
course.members
|
||||||
|
end
|
||||||
# 学生人数计算
|
# 学生人数计算
|
||||||
# add by nwb
|
# add by nwb
|
||||||
def studentCount course
|
def studentCount course
|
||||||
|
|
|
@ -18,7 +18,7 @@ class Forum < ActiveRecord::Base
|
||||||
|
|
||||||
acts_as_taggable
|
acts_as_taggable
|
||||||
scope :by_join_date, order("created_at DESC")
|
scope :by_join_date, order("created_at DESC")
|
||||||
|
after_create :send_email
|
||||||
def reset_counters!
|
def reset_counters!
|
||||||
self.class.reset_counters!(id)
|
self.class.reset_counters!(id)
|
||||||
end
|
end
|
||||||
|
@ -33,6 +33,11 @@ class Forum < ActiveRecord::Base
|
||||||
self.creator == user || user.admin?
|
self.creator == user || user.admin?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def send_email
|
||||||
|
Thread.start do
|
||||||
|
Mailer.forum_add(self).deliver if Setting.notified_events.include?('forum_add')
|
||||||
|
end
|
||||||
|
end
|
||||||
# Updates topic_count, memo_count and last_memo_id attributes for +board_id+
|
# Updates topic_count, memo_count and last_memo_id attributes for +board_id+
|
||||||
def self.reset_counters!(forum_id)
|
def self.reset_counters!(forum_id)
|
||||||
forum_id = forum_id.to_i
|
forum_id = forum_id.to_i
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
class ForumObserver < ActiveRecord::Observer
|
||||||
|
def after_create(forum)
|
||||||
|
Thread.start do
|
||||||
|
Mailer.forum_add(forum).deliver if Setting.notified_events.include?('forum_add')
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
|
@ -1,7 +1,9 @@
|
||||||
# Added by young
|
# Added by young
|
||||||
class JournalsForMessageObserver < ActiveRecord::Observer
|
class JournalsForMessageObserver < ActiveRecord::Observer
|
||||||
def after_create(journals_for_message)
|
def after_create(journals_for_message)
|
||||||
|
thread1 = Thread.start do
|
||||||
Mailer.journals_for_message_add(User.current, journals_for_message).deliver
|
Mailer.journals_for_message_add(User.current, journals_for_message).deliver
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,36 @@ class Mailer < ActionMailer::Base
|
||||||
{ :host => Setting.host_name, :protocol => Setting.protocol }
|
{ :host => Setting.host_name, :protocol => Setting.protocol }
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# 贴吧新建贴吧发送邮件
|
||||||
|
# example Mailer.forum(forum).deliver
|
||||||
|
def forum_add(forum)
|
||||||
|
|
||||||
|
redmine_headers 'Forum' => forum.id
|
||||||
|
@forum = forum
|
||||||
|
@author = forum.creator
|
||||||
|
recipients = forum.creator.mail
|
||||||
|
# cc = wiki_content.page.wiki.watcher_recipients - recipients
|
||||||
|
|
||||||
|
@forum_url = url_for(:controller => 'forums', :action => 'show', :id => forum.id)
|
||||||
|
mail :to => recipients,:subject => "[ #{l(:label_forum)} : #{forum.name} #{l(:notice_successful_create)}]"
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
def forum_message_added(memo)
|
||||||
|
@memo = memo
|
||||||
|
redmine_headers 'Memo' => memo.id
|
||||||
|
@forum = memo.forum
|
||||||
|
@author = memo.author
|
||||||
|
recipients ||= []
|
||||||
|
mems = memo.self_and_siblings
|
||||||
|
mems.each do |mem|
|
||||||
|
recipients << mem.author.mail unless recipients.include? mem.author.mail
|
||||||
|
end
|
||||||
|
# cc = wiki_content.page.wiki.watcher_recipients - recipients
|
||||||
|
|
||||||
|
@memo_url = url_for(forum_memo_url(@forum, (@memo.parent_id.nil? ? @memo : @memo.parent_id)))
|
||||||
|
mail :to => recipients,:subject => "[ #{l(:label_message_plural)} : #{memo.subject} #{l(:label_memo_create_succ)}]"
|
||||||
|
end
|
||||||
# Builds a Mail::Message object used to email recipients of the added journals for message.
|
# Builds a Mail::Message object used to email recipients of the added journals for message.
|
||||||
|
|
||||||
# 留言分为直接留言,和对留言人留言的回复
|
# 留言分为直接留言,和对留言人留言的回复
|
||||||
|
@ -62,13 +92,13 @@ class Mailer < ActionMailer::Base
|
||||||
course = journals_for_message.jour
|
course = journals_for_message.jour
|
||||||
@author = journals_for_message.user
|
@author = journals_for_message.user
|
||||||
#课程的教师
|
#课程的教师
|
||||||
@teachers = searchTeacherAndAssistant journals_for_message.jour
|
@members = course_all_member journals_for_message.jour
|
||||||
#收件人邮箱
|
#收件人邮箱
|
||||||
@recipients ||= []
|
@recipients ||= []
|
||||||
@teachers.each do |teacher|
|
@members.each do |teacher|
|
||||||
if teacher.user.notify_about? journals_for_message
|
|
||||||
@recipients << teacher.user.mail
|
@recipients << teacher.user.mail
|
||||||
end
|
|
||||||
|
|
||||||
end
|
end
|
||||||
mail :to => @recipients,
|
mail :to => @recipients,
|
||||||
|
@ -117,8 +147,10 @@ class Mailer < ActionMailer::Base
|
||||||
@project_url = url_for(:controller => 'projects', :action => 'show', :id => issue.project_id, :token => @token.value)
|
@project_url = url_for(:controller => 'projects', :action => 'show', :id => issue.project_id, :token => @token.value)
|
||||||
|
|
||||||
@user_url = url_for(my_account_url(user,:token => @token.value))
|
@user_url = url_for(my_account_url(user,:token => @token.value))
|
||||||
|
cc = nil
|
||||||
|
if recipients == issue.recipients[0]
|
||||||
cc = issue.watcher_recipients - issue.recipients
|
cc = issue.watcher_recipients - issue.recipients
|
||||||
|
end
|
||||||
subject = "[#{issue.project.name} - #{issue.tracker.name} ##{issue_id}] (#{issue.status.name}) #{issue.subject}"
|
subject = "[#{issue.project.name} - #{issue.tracker.name} ##{issue_id}] (#{issue.status.name}) #{issue.subject}"
|
||||||
mail(:to => recipients,
|
mail(:to => recipients,
|
||||||
:cc => cc,
|
:cc => cc,
|
||||||
|
@ -167,8 +199,11 @@ class Mailer < ActionMailer::Base
|
||||||
|
|
||||||
|
|
||||||
# Watchers in cc
|
# Watchers in cc
|
||||||
|
cc = nil
|
||||||
|
if recipients == journal.recipients[0]
|
||||||
cc = journal.watcher_recipients - journal.recipients
|
cc = journal.watcher_recipients - journal.recipients
|
||||||
|
end
|
||||||
|
|
||||||
s = "[#{issue.project.name} - #{issue.tracker.name} ##{issue_id}] "
|
s = "[#{issue.project.name} - #{issue.tracker.name} ##{issue_id}] "
|
||||||
s << "(#{issue.status.name}) " if journal.new_value_for('status_id')
|
s << "(#{issue.status.name}) " if journal.new_value_for('status_id')
|
||||||
s << issue.subject
|
s << issue.subject
|
||||||
|
@ -282,7 +317,7 @@ class Mailer < ActionMailer::Base
|
||||||
recipients = container.notified_users.select { |user| user.allowed_to?(:view_files, container) }.collect { |u| u.mail }
|
recipients = container.notified_users.select { |user| user.allowed_to?(:view_files, container) }.collect { |u| u.mail }
|
||||||
when 'Course'
|
when 'Course'
|
||||||
added_to_url = url_for(:controller => 'files', :action => 'index', :course_id => container)
|
added_to_url = url_for(:controller => 'files', :action => 'index', :course_id => container)
|
||||||
added_to = "#{l(:label_course)}: #{container}"
|
added_to = "#{l(:label_course)}: #{container.name}"
|
||||||
recipients = container.notified_users.select { |user| user.allowed_to?(:view_files, container) }.collect { |u| u.mail }
|
recipients = container.notified_users.select { |user| user.allowed_to?(:view_files, container) }.collect { |u| u.mail }
|
||||||
when 'Version'
|
when 'Version'
|
||||||
added_to_url = url_for(:controller => 'files', :action => 'index', :project_id => container.project)
|
added_to_url = url_for(:controller => 'files', :action => 'index', :project_id => container.project)
|
||||||
|
@ -323,6 +358,8 @@ class Mailer < ActionMailer::Base
|
||||||
# news_added(news) => Mail::Message object
|
# news_added(news) => Mail::Message object
|
||||||
# Mailer.news_added(news).deliver => sends an email to the news' project recipients
|
# Mailer.news_added(news).deliver => sends an email to the news' project recipients
|
||||||
def news_added(news)
|
def news_added(news)
|
||||||
|
|
||||||
|
if news.project
|
||||||
redmine_headers 'Project' => news.project.identifier
|
redmine_headers 'Project' => news.project.identifier
|
||||||
@author = news.author
|
@author = news.author
|
||||||
message_id news
|
message_id news
|
||||||
|
@ -330,6 +367,16 @@ class Mailer < ActionMailer::Base
|
||||||
@news_url = url_for(:controller => 'news', :action => 'show', :id => news)
|
@news_url = url_for(:controller => 'news', :action => 'show', :id => news)
|
||||||
mail :to => news.recipients,
|
mail :to => news.recipients,
|
||||||
:subject => "[#{news.project.name}] #{l(:label_news)}: #{news.title}"
|
:subject => "[#{news.project.name}] #{l(:label_news)}: #{news.title}"
|
||||||
|
elsif news.course
|
||||||
|
redmine_headers 'Course' => news.course.id
|
||||||
|
@author = news.author
|
||||||
|
message_id news
|
||||||
|
@news = news
|
||||||
|
recipients = news.course.notified_users.select { |user| user.allowed_to?(:view_files, news.course) }.collect { |u| u.mail }
|
||||||
|
@news_url = url_for(:controller => 'news', :action => 'show', :id => news)
|
||||||
|
mail :to => recipients,
|
||||||
|
:subject => "[#{news.course.name}] #{l(:label_news)}: #{news.title}"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Builds a Mail::Message object used to email recipients of a news' project when a news comment is added.
|
# Builds a Mail::Message object used to email recipients of a news' project when a news comment is added.
|
||||||
|
@ -339,6 +386,7 @@ class Mailer < ActionMailer::Base
|
||||||
# Mailer.news_comment_added(comment) => sends an email to the news' project recipients
|
# Mailer.news_comment_added(comment) => sends an email to the news' project recipients
|
||||||
def news_comment_added(comment)
|
def news_comment_added(comment)
|
||||||
news = comment.commented
|
news = comment.commented
|
||||||
|
if news.project
|
||||||
redmine_headers 'Project' => news.project.identifier
|
redmine_headers 'Project' => news.project.identifier
|
||||||
@author = comment.author
|
@author = comment.author
|
||||||
message_id comment
|
message_id comment
|
||||||
|
@ -348,6 +396,18 @@ class Mailer < ActionMailer::Base
|
||||||
mail :to => news.recipients,
|
mail :to => news.recipients,
|
||||||
:cc => news.watcher_recipients,
|
:cc => news.watcher_recipients,
|
||||||
:subject => "Re: [#{news.project.name}] #{l(:label_news)}: #{news.title}"
|
:subject => "Re: [#{news.project.name}] #{l(:label_news)}: #{news.title}"
|
||||||
|
elsif news.course
|
||||||
|
redmine_headers 'Course' => news.course.id
|
||||||
|
@author = comment.author
|
||||||
|
message_id comment
|
||||||
|
@news = news
|
||||||
|
@comment = comment
|
||||||
|
@news_url = url_for(:controller => 'news', :action => 'show', :id => news)
|
||||||
|
recipients = news.course.notified_users.select { |user| user.allowed_to?(:view_files, news.course) }.collect { |u| u.mail }
|
||||||
|
|
||||||
|
mail :to => recipients,
|
||||||
|
:subject => "[#{news.course.name}] #{l(:label_news)}: #{news.title}"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Builds a Mail::Message object used to email the recipients of the specified message that was posted.
|
# Builds a Mail::Message object used to email the recipients of the specified message that was posted.
|
||||||
|
@ -356,6 +416,7 @@ class Mailer < ActionMailer::Base
|
||||||
# message_posted(message) => Mail::Message object
|
# message_posted(message) => Mail::Message object
|
||||||
# Mailer.message_posted(message).deliver => sends an email to the recipients
|
# Mailer.message_posted(message).deliver => sends an email to the recipients
|
||||||
def message_posted(message)
|
def message_posted(message)
|
||||||
|
if message.project
|
||||||
redmine_headers 'Project' => message.project.identifier,
|
redmine_headers 'Project' => message.project.identifier,
|
||||||
'Topic-Id' => (message.parent_id || message.id)
|
'Topic-Id' => (message.parent_id || message.id)
|
||||||
@author = message.author
|
@author = message.author
|
||||||
|
@ -368,6 +429,20 @@ class Mailer < ActionMailer::Base
|
||||||
mail :to => recipients,
|
mail :to => recipients,
|
||||||
:cc => cc,
|
:cc => cc,
|
||||||
:subject => "[#{message.board.project.name} - #{message.board.name} - msg#{message.root.id}] #{message.subject}"
|
:subject => "[#{message.board.project.name} - #{message.board.name} - msg#{message.root.id}] #{message.subject}"
|
||||||
|
elsif message.course
|
||||||
|
redmine_headers 'Course' => message.course.id,
|
||||||
|
'Topic-Id' => (message.parent_id || message.id)
|
||||||
|
@author = message.author
|
||||||
|
message_id message
|
||||||
|
references message.parent unless message.parent.nil?
|
||||||
|
recipients = message.course.notified_users.select { |user| user.allowed_to?(:view_files, message.course) }.collect { |u| u.mail }
|
||||||
|
cc = ((message.root.watcher_recipients + message.board.watcher_recipients).uniq - recipients)
|
||||||
|
@message = message
|
||||||
|
@message_url = url_for(message.event_url)
|
||||||
|
mail :to => recipients,
|
||||||
|
:cc => cc,
|
||||||
|
:subject => "[#{message.board.course.name} - #{message.board.name} - msg#{message.root.id}] #{message.subject}"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Builds a Mail::Message object used to email the recipients of a project of the specified wiki content was added.
|
# Builds a Mail::Message object used to email the recipients of a project of the specified wiki content was added.
|
||||||
|
|
|
@ -43,7 +43,7 @@ class Memo < ActiveRecord::Base
|
||||||
"parent_id",
|
"parent_id",
|
||||||
"replies_count"
|
"replies_count"
|
||||||
|
|
||||||
after_create :add_author_as_watcher, :reset_counters!#,:be_user_score -- 公共区发帖暂不计入得分
|
after_create :add_author_as_watcher, :reset_counters!, :sendmail#,:be_user_score -- 公共区发帖暂不计入得分
|
||||||
# after_update :update_memos_forum
|
# after_update :update_memos_forum
|
||||||
after_destroy :reset_counters!#,:down_user_score -- 公共区发帖暂不计入得分
|
after_destroy :reset_counters!#,:down_user_score -- 公共区发帖暂不计入得分
|
||||||
# after_create :send_notification
|
# after_create :send_notification
|
||||||
|
@ -54,6 +54,12 @@ class Memo < ActiveRecord::Base
|
||||||
# includes(:forum => ).where()
|
# includes(:forum => ).where()
|
||||||
# }
|
# }
|
||||||
|
|
||||||
|
def sendmail
|
||||||
|
thread1=Thread.new do
|
||||||
|
Mailer.forum_message_added(self).deliver if Setting.notified_events.include?('forum_message_added')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def cannot_reply_to_locked_topic
|
def cannot_reply_to_locked_topic
|
||||||
errors.add :base, l(:label_memo_locked) if root.locked? && self != root
|
errors.add :base, l(:label_memo_locked) if root.locked? && self != root
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
class MemoObserver < ActiveRecord::Observer
|
||||||
|
def after_create(memo)
|
||||||
|
|
||||||
|
thread1=Thread.new do
|
||||||
|
Mailer.forum_message_added(memo).deliver if Setting.notified_events.include?('forum_message_added')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -56,17 +56,29 @@
|
||||||
<%= link_to(bid.name, course_for_bid_path(bid), :class => 'bid_path') %>
|
<%= link_to(bid.name, course_for_bid_path(bid), :class => 'bid_path') %>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td style="width: 110px;">
|
<td style="width: 150px;">
|
||||||
<span style="float: right">
|
<span style="float: right">
|
||||||
<% if User.current.logged? && is_cur_course_student(@course) %>
|
<% if User.current.logged? && is_cur_course_student(@course) %>
|
||||||
<% cur_user_homework = cur_user_homework_for_bid(bid) %>
|
<% cur_user_homework = cur_user_homework_for_bid(bid) %>
|
||||||
|
<span class="span_wping">
|
||||||
|
<% if bid.open_anonymous_evaluation == 1 %>
|
||||||
|
<% case bid.comment_status %>
|
||||||
|
<% when 0 %>
|
||||||
|
<a>未开启匿评</a>
|
||||||
|
<% when 1 %>
|
||||||
|
<a> 匿评中.. </a>
|
||||||
|
<% when 2 %>
|
||||||
|
<a> 匿评结束 </a>
|
||||||
|
<% end %>
|
||||||
|
<% end%>
|
||||||
|
</span>
|
||||||
<% if cur_user_homework && cur_user_homework.empty? %>
|
<% if cur_user_homework && cur_user_homework.empty? %>
|
||||||
<span class="span_wping">
|
<span class="span_wping">
|
||||||
<%= link_to l(:label_commit_homework),new_exercise_book_path(bid) %>
|
<%= link_to l(:label_commit_homework),new_exercise_book_path(bid) %>
|
||||||
</span>
|
</span>
|
||||||
<% else %>
|
<% else %>
|
||||||
<span style="color: green; float: right">
|
<span class="span_wping">
|
||||||
<%= l(:lable_has_commit_homework)%>
|
<a>已 提 交</a>
|
||||||
</span>
|
</span>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
</script>
|
</script>
|
||||||
<%= stylesheet_link_tag 'course_group', :media => 'all' %>
|
<%= stylesheet_link_tag 'course_group', :media => 'all' %>
|
||||||
<script type="text/javascript" src="javascripts/jquery-1.8.3-ui-1.9.2-ujs-2.0.3.js"></script>
|
<script type="text/javascript" src="javascripts/jquery-1.8.3-ui-1.9.2-ujs-2.0.3.js"></script>
|
||||||
<div class="st_list">
|
<div class="st_list" id="member_of_course">
|
||||||
<div class="st_search" style="margin-left: 14px" >
|
<div class="st_search" style="margin-left: 14px" >
|
||||||
<span class="f_l"><%= @subPage_title %></span>
|
<span class="f_l"><%= @subPage_title %></span>
|
||||||
<span id = "search_members">
|
<span id = "search_members">
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
:url => {:controller => 'homework_attach',
|
:url => {:controller => 'homework_attach',
|
||||||
:action => 'addjours',
|
:action => 'addjours',
|
||||||
:homework_id => homework_attach.id,
|
:homework_id => homework_attach.id,
|
||||||
:cur_page => cur_page,
|
:page => cur_page,
|
||||||
:cur_type => cur_type,
|
:cur_type => cur_type,
|
||||||
:is_anonymous_comments => @is_anonymous_comments,
|
:is_anonymous_comments => @is_anonymous_comments,
|
||||||
:is_teacher => @is_teacher
|
:is_teacher => @is_teacher
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
<% else %>
|
<% else %>
|
||||||
<% homework_filename = homework.name %>
|
<% homework_filename = homework.name %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= link_to homework_filename , homework_attach_path(homework,:cur_page => @cur_page,:cur_type => @cur_type), :title => homework_filename, :remote => true%>
|
<%= link_to homework_filename , homework_attach_path(homework,:cur_page => @cur_page,:cur_type => @cur_type,:cur_sort => @cur_sort, :cur_direction => @cur_direction), :title => homework_filename, :remote => true%>
|
||||||
<span class="c_grey ">
|
<span class="c_grey ">
|
||||||
提交时间:
|
提交时间:
|
||||||
<%= format_time homework.created_at%>
|
<%= format_time homework.created_at%>
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
<% if is_teacher %>
|
<% if is_teacher %>
|
||||||
<!-- 是老师,所有列表正常显示 -->
|
<!-- 是老师,所有列表正常显示 -->
|
||||||
<li class="wping">
|
<li class="wping">
|
||||||
<%= link_to l(:label_work_rating),homework_attach_path(homework,:cur_page => @cur_page,:cur_type => @cur_type),:remote => true %>
|
<%= link_to l(:label_work_rating),homework_attach_path(homework,:cur_page => @cur_page,:cur_type => @cur_type,:cur_sort => @cur_sort, :cur_direction => @cur_direction),:remote => true %>
|
||||||
<% if Time.parse(bid.deadline.to_s).strftime("%Y-%m-%d") < Time.parse(homework.created_at.to_s).strftime("%Y-%m-%d") %>
|
<% if Time.parse(bid.deadline.to_s).strftime("%Y-%m-%d") < Time.parse(homework.created_at.to_s).strftime("%Y-%m-%d") %>
|
||||||
<span class="c_red"> 迟交!</span>
|
<span class="c_red"> 迟交!</span>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -1,49 +1,122 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
<style type="text/css">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
#scrollsidebar{ font-size:12px; font-family:"微软雅黑","宋体"; line-height:1.9; background:#fff; font-style:normal;}
|
||||||
<head>
|
#scrollsidebar div,html,img,ul,li,p,body,h1,h2,h3,h4,p,a,table,tr,td,fieldset,input,span,ol{ }
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
#scrollsidebar div,img,tr,td,table{ border:0;}
|
||||||
<title>意见反馈浮窗</title>
|
#scrollsidebar ol,ul,li{ list-style-type:none}
|
||||||
|
#scrollsidebar .cl{ clear:both; overflow:hidden; }
|
||||||
|
#scrollsidebar a{ text-decoration:none;}
|
||||||
|
|
||||||
|
html{ overflow-x:hidden;}
|
||||||
|
.custom_service p img {display: inline; margin-top:-5px; vertical-align:middle;}
|
||||||
|
.scrollsidebar{position:absolute; z-index:999; top:150px;}
|
||||||
|
.side_content{width:154px; height:auto; overflow:hidden; float:left; }
|
||||||
|
.side_content .side_list {width:154px;overflow:hidden;}
|
||||||
|
.show_btn{ width:0; height:112px; overflow:hidden; margin-top:50px; float:left; cursor:pointer;}
|
||||||
|
.show_btn span { display:none;}
|
||||||
|
.close_btn{width:24px;height:24px;cursor:pointer;}
|
||||||
|
.side_title,.side_bottom,.close_btn,.show_btn {background:url(/images/sidebar_bg.png) no-repeat;}
|
||||||
|
.side_title {height:46px;}
|
||||||
|
.side_bottom { height:8px;}
|
||||||
|
.side_center {font-family:Verdana, Geneva, sans-serif; padding:5px 12px; font-size:12px;}
|
||||||
|
.close_btn { float:right; display:block; width:21px; height:16px; margin:16px 10px 0 0; _margin:16px 5px 0 0;}
|
||||||
|
.close_btn span { display:none;}
|
||||||
|
.side_center .custom_service p { text-align:center; padding:6px 0; margin:0; vertical-align:middle;}
|
||||||
|
.msgserver { margin:10px 0 4px 4px;}
|
||||||
|
.msgserver a { background:url(/images/sidebar_bg.png) no-repeat -119px -115px; padding-left:22px;}
|
||||||
|
.opnionText{ width:120px; height:180px; border-color:#cecece; -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; color:#999; padding:3px;}
|
||||||
|
a.opnionButton{ display:block; font-weight: bold; margin:-25px auto 0; text-align:center;}
|
||||||
|
a:hover.opnionButton{ text-decoration:underline;}
|
||||||
|
|
||||||
|
|
||||||
|
/* blue skin as the default skin */
|
||||||
|
.side_title {background-position:-195px 0;}
|
||||||
|
.side_center {background:url(/images/blue_line.png) repeat-y center;}
|
||||||
|
.side_bottom {background-position:-195px -50px;}
|
||||||
|
.close_btn {background-position:-44px 0;}
|
||||||
|
.close_btn:hover {background-position:-66px 0;}
|
||||||
|
.show_btn {background-position:-119px 0;}
|
||||||
|
.msgserver a {color:#15bccf; }
|
||||||
|
.msgserver a:hover { text-decoration:underline; }
|
||||||
|
</style>
|
||||||
<script>
|
<script>
|
||||||
function mypostion(o){
|
/* =================================================
|
||||||
var width=$(window).width();
|
//
|
||||||
var height=$(window).height();
|
// jQuery Fixed Plugins 1.3.1
|
||||||
var divW=$(o).outerWidth();
|
// author :
|
||||||
var divH=$(o).outerHeight();
|
// Url:
|
||||||
var left=(width-divW)/2+$(window).scrollLeft();
|
// Data : 2012-03-30
|
||||||
var top=(height-divH)/2+$(window).scrollTop();
|
//
|
||||||
return {"left":left,"top":top};
|
// ???? : float --> ????[left or right]
|
||||||
};
|
// minStatue --> ??С???????show_btn
|
||||||
|
// skin --> ???????
|
||||||
|
// durationTime --> ??????
|
||||||
|
//???? :
|
||||||
|
$("#scrollsidebar2").fix({
|
||||||
|
float : 'right', //default.left or right
|
||||||
|
minStatue : true, //default.false or true
|
||||||
|
skin : 'green', //default.gray or yellow ??blue ??green ??orange ??white
|
||||||
|
durationTime : 1000 //
|
||||||
|
});
|
||||||
|
//
|
||||||
|
// =================================================*/
|
||||||
|
|
||||||
function myTips(msg,status){
|
(function($){
|
||||||
if(status!="success" && status!="error"){status="error";};
|
$.fn.fix = function(options){
|
||||||
if (status=="success") {
|
var defaults = {
|
||||||
$("body").append('<div class="ui-mask" id="ui-mask"></div><div class="change_success" id="change_success"><!--span class="send_close" onclick="$(this).parent().remove();$("#ui-mask").remove();"></span--><i></i>'+msg+'</div>');
|
float : 'left',
|
||||||
var my=mypostion("#change_success");
|
minStatue : false,
|
||||||
$("#change_success").css({"position":"absolute","z-index":"9999999","top":my.top+"px","left":my.left+"px"});
|
skin : 'blue',
|
||||||
$("#ui-mask").show();
|
durationTime : 1000
|
||||||
$("#change_success").show();
|
|
||||||
setTimeout(function(){
|
|
||||||
$("#change_success,#ui-mask").fadeOut("slow",function(){
|
|
||||||
$("#ui-mask").remove();
|
|
||||||
$("#change_success").remove();
|
|
||||||
});
|
|
||||||
},2500);
|
|
||||||
}
|
}
|
||||||
else{
|
var options = $.extend(defaults, options);
|
||||||
$("body").append('<div class="ui-mask" id="ui-mask"></div><div class="change_error" id="change_error"><!--span class="send_close" onclick="$(this).parent().remove();$("#ui-mask").remove();"></span--><i></i>'+msg+'</div>');
|
|
||||||
var my=mypostion("#change_error");
|
this.each(function(){
|
||||||
$("#change_error").css({"position":"absolute","z-index":"9999999","top":my.top+"px","left":my.left+"px"});
|
//???????
|
||||||
$("#ui-mask").show();
|
var thisBox = $(this),
|
||||||
$("#change_error").show();
|
closeBtn = thisBox.find('.close_btn' ),
|
||||||
setTimeout(function(){
|
show_btn = thisBox.find('.show_btn' ),
|
||||||
$("#change_error,#ui-mask").fadeOut("slow",function(){
|
sideContent = thisBox.find('.side_content'),
|
||||||
$("#ui-mask").remove();
|
sideList = thisBox.find('.side_list')
|
||||||
$("#change_error").remove();
|
;
|
||||||
|
var defaultTop = thisBox.offset().top; //????????top
|
||||||
|
|
||||||
|
thisBox.css(options.float, 0);
|
||||||
|
if(options.minStatue){
|
||||||
|
$(".show_btn").css("float", options.float);
|
||||||
|
sideContent.css('width', 0);
|
||||||
|
show_btn.css('width', 25);
|
||||||
|
|
||||||
|
}
|
||||||
|
//???????
|
||||||
|
if(options.skin) thisBox.addClass('side_'+options.skin);
|
||||||
|
|
||||||
|
|
||||||
|
//????scroll???
|
||||||
|
$(window).bind("scroll",function(){
|
||||||
|
var offsetTop = defaultTop + $(window).scrollTop() + "px";
|
||||||
|
thisBox.animate({
|
||||||
|
top: offsetTop
|
||||||
|
},
|
||||||
|
{
|
||||||
|
duration: options.durationTime,
|
||||||
|
queue: false //???????????????????
|
||||||
});
|
});
|
||||||
},1000);
|
});
|
||||||
|
//close???
|
||||||
|
closeBtn.bind("click",function(){
|
||||||
|
sideContent.animate({width: '0px'},"fast");
|
||||||
|
show_btn.stop(true, true).delay(300).animate({ width: '25px'},"fast");
|
||||||
|
});
|
||||||
|
//show???
|
||||||
|
show_btn.click(function() {
|
||||||
|
$(this).animate({width: '0px'},"fast");
|
||||||
|
sideContent.stop(true, true).delay(200).animate({ width: '154px'},"fast");
|
||||||
|
});
|
||||||
|
|
||||||
|
}); //end this.each
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
})(jQuery);
|
||||||
|
|
||||||
|
|
||||||
$(function(){
|
$(function(){
|
||||||
|
@ -59,92 +132,52 @@ function f_submit()
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style type="text/css">
|
|
||||||
/*浮窗*/
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
/*body{ height:3000px; font-family:'微软雅黑';}*/
|
<head>
|
||||||
/*div,ul,li,body,h3,p{margin:0; padding:0;}*/
|
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
|
||||||
#roll a{ text-decoration:none;}
|
<title>意见反馈</title>
|
||||||
#roll{ background:url(/images/f_opnion.jpg) 0 0 no-repeat;width:157px; height:332px; position:absolute;}
|
|
||||||
.opnionBox{ width: 130px; height:146px; margin:76px auto 20px; }
|
|
||||||
.opnionText{ width: 120px !important; height:130px; outline:none; border:none !important;padding: 0 5px !important; color: #03a8bb;line-height:1.5; font-size:12px; }
|
|
||||||
a.opnionButton{ width:40px; height:20px; display:block; margin:0 auto;font-size:14px; color:#fd6e2a; font-weight: bold; }
|
|
||||||
a:hover.opnionButton{ text-decoration:underline;}
|
|
||||||
.opnionCall{ color:#03a8bb; font-size:12px; width:105px; margin:0 auto;}
|
|
||||||
.opnionCall .tectitle{ font-size:14px; alignment-adjust: central; color:#03a8bb; margin-bottom:8px,}
|
|
||||||
/*提示框*/
|
|
||||||
.ui-mask{background-color:#000;opacity:0.5;filter:alpha(opacity=50);width:100%;height:100%;position:fixed;_position:absolute;left:0;top:0;z-index:9999998;display:none;}
|
|
||||||
.change_success{
|
|
||||||
display:block;
|
|
||||||
height:60px;
|
|
||||||
width:300px;
|
|
||||||
line-height:1.9;
|
|
||||||
font-size:14px;
|
|
||||||
font-weight:500;
|
|
||||||
background:#fff;
|
|
||||||
color:#1395a4;
|
|
||||||
border:5px solid #1395a4;
|
|
||||||
font-size:14px;
|
|
||||||
padding:30px 20px;
|
|
||||||
position: absolute;
|
|
||||||
_position: absolute;
|
|
||||||
left:0;
|
|
||||||
top:0;
|
|
||||||
z-index:9999999;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
|
<body style="height:auto">
|
||||||
<body>
|
<!-- ?ú?? ???? -->
|
||||||
<div id="roll">
|
<div class="scrollsidebar" id="scrollsidebar">
|
||||||
<div class="opnionBox">
|
<div class="side_content">
|
||||||
|
<div class="side_list">
|
||||||
|
<div class="side_title"><a title="意见反馈" class="close_btn"><span><%= l(:label_feedback) %></span></a></div>
|
||||||
|
<div class="side_center">
|
||||||
|
<div class="custom_service">
|
||||||
<% get_memo %>
|
<% get_memo %>
|
||||||
<%= form_for(@new_memo, :url => create_feedback_forum_path(@public_forum)) do |f| %>
|
<%= form_for(@new_memo, :url => create_feedback_forum_path(@public_forum)) do |f| %>
|
||||||
<div class="actions" style="max-width:680px;">
|
|
||||||
<p style="margin:0; padding:0;">
|
|
||||||
<%= f.text_area :subject, :class => "opnionText",:placeholder => "有什么想说的,尽管来咆哮吧~~"%>
|
<%= f.text_area :subject, :class => "opnionText",:placeholder => "有什么想说的,尽管来咆哮吧~~"%>
|
||||||
</p>
|
|
||||||
<p style="margin:0; padding:0;">
|
|
||||||
<%= f.hidden_field :content, :required => true ,:value=>'该贴来自用户反馈!'%>
|
<%= f.hidden_field :content, :required => true ,:value=>'该贴来自用户反馈!'%>
|
||||||
</p>
|
|
||||||
<%#= f.submit :value => l(:label_memo_create), :class => "opnionButton", :id => "button1" %>
|
<%#= f.submit :value => l(:label_memo_create), :class => "opnionButton", :id => "button1" %>
|
||||||
<a href="javascript:void(0);" class="opnionButton" id="" onclick="f_submit();">提 交</a>
|
<a href="javascript:void(0);" class="opnionButton" style=" color:#fd6e2a;" id="" onclick="f_submit();">提 交</a>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="msgserver">
|
||||||
|
<p>
|
||||||
</form>
|
<a href="http://user.trustie.net/users/12/user_newfeedback" style="color: #15BCCF;"><%= l(:label_technical_support) %>黄井泉</a></br>
|
||||||
<div class="clear"></div>
|
<a href="http://user.trustie.net/users/34/user_newfeedback" style="color: #15BCCF;"><%= l(:label_technical_support) %>白 羽</a>
|
||||||
</div>
|
</p>
|
||||||
|
</div>
|
||||||
<div class="opnionCall">
|
</div>
|
||||||
<div class="tectitle">技术支持:</div>
|
<div class="side_bottom"></div>
|
||||||
<p style="margin:0; padding:0;" ><%= l(:label_course_adcolick) %><a href="http://user.trustie.net/users/12/user_newfeedback">黄井泉</a><br>
|
</div>
|
||||||
<%= l(:label_course_adcolick) %><a href="http://user.trustie.net/users/34/user_newfeedback">白羽</a></p>
|
</div>
|
||||||
</div>
|
<div class="show_btn"><span>提交</span></div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<!-- ?ú?? ?á?? -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function() {
|
||||||
|
$("#scrollsidebar").fix({
|
||||||
|
float : 'right', //default.left or right
|
||||||
|
//minStatue : true,
|
||||||
|
skin : 'green', //default.gray or blue
|
||||||
|
durationTime : 600
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
<script>
|
|
||||||
var roll=document.getElementById('roll'),
|
|
||||||
initX=0,
|
|
||||||
initY,
|
|
||||||
compY,
|
|
||||||
sp=15,
|
|
||||||
//可调整时间间隔,步进值不宜过大,不然IE下有点闪屏;
|
|
||||||
timeGap=5,
|
|
||||||
doc=document.documentElement,
|
|
||||||
docBody=document.body;
|
|
||||||
compY=initY=100;
|
|
||||||
roll.style.right=initX+"px";
|
|
||||||
;(function(){
|
|
||||||
var curScrollTop=(doc.scrollTop||docBody.scrollTop||0)-(doc.clientTop||docBody.clientTop||0);
|
|
||||||
//每次comP的值都不一样;直到roll.style.top===doc.scrollTop+initY;
|
|
||||||
compY+=(curScrollTop+initY-compY)/sp;
|
|
||||||
roll.style.top=Math.ceil(compY)+"px";
|
|
||||||
setTimeout(arguments.callee,timeGap);
|
|
||||||
})();
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
|
@ -300,13 +300,22 @@
|
||||||
|
|
||||||
<div class="user_underline"></div>
|
<div class="user_underline"></div>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
.polls_btn{ height:33px;border-top:0 solid #15bed1; border-bottom:1px solid #15bed1;border-right:1px solid #cee6e6; width:224px; padding:7px 0 0 15px; }
|
||||||
|
.polls_btn a{font-size:14px; color:#444444;font-weight:bold;}
|
||||||
|
.polls_btn span{ color:#15bed1; font-size:12px; font-weight:normal;}
|
||||||
|
.polls_btn a{ float:left;}
|
||||||
|
.polls_n{float: left;background: #ff5d31;color: #fff;width: 12px;padding-left: 2px;height: 7px;padding-bottom: 5px;padding-top: 3px;margin-top: -4px;margin-left: 3px; }
|
||||||
|
.polls_n p{ margin-top:-4px;}
|
||||||
|
.cl{ clear:both; overflow:hidden; }
|
||||||
|
</style>
|
||||||
<div class="polls_btn">
|
<div class="polls_btn">
|
||||||
<!--<a href="#">问卷调查<span >(12)</span></a>-->
|
<!--<a href="#">问卷调查<span >(12)</span></a>-->
|
||||||
<style type="text/css">
|
|
||||||
.polls_btn{ height:33px;border-top:1px solid #15bed1; border-bottom:1px solid #15bed1;border-right:1px solid #cee6e6; width:224px !important; padding:7px 0 0 15px; }
|
|
||||||
.polls_btn a{font-size:14px; color:#444444;font-weight:bold;}
|
|
||||||
</style>
|
|
||||||
<%= link_to l(:label_poll), poll_index_path(:polls_type => "Course", :polls_group_id => @course.id)%>
|
<%= link_to l(:label_poll), poll_index_path(:polls_type => "Course", :polls_group_id => @course.id)%>
|
||||||
|
<div class="polls_n">
|
||||||
|
<p>N</p>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -10,36 +10,42 @@ body{ font-size:12px; font-family:"微软雅黑","宋体"; line-height:1.9; back
|
||||||
div,html,img,ul,li,p,body,h1,h2,h3,h4,p,a,table,tr,td,fieldset,input,span,ol{ margin:0; padding:0;}
|
div,html,img,ul,li,p,body,h1,h2,h3,h4,p,a,table,tr,td,fieldset,input,span,ol{ margin:0; padding:0;}
|
||||||
div,img,tr,td,table{ border:0;}
|
div,img,tr,td,table{ border:0;}
|
||||||
table,tr,td{border:0;cellspacing:0; cellpadding:0;}
|
table,tr,td{border:0;cellspacing:0; cellpadding:0;}
|
||||||
ol,ul,li{ list-style-type:none}
|
|
||||||
.cl{ clear:both; overflow:hidden; }
|
|
||||||
a{ text-decoration:none; }
|
|
||||||
a:hover{ text-decoration:underline; }
|
|
||||||
.mail_box,ul,li{ list-style-type:none}
|
|
||||||
.mail{ width:600px; margin:20px; height:auto; color:#4b4b4b; font-size:14px; }
|
.mail{ width:600px; margin:20px; height:auto; color:#4b4b4b; font-size:14px; }
|
||||||
|
ol,ul,li{ list-style-type:none}
|
||||||
|
.cl{ clear:both; overflow:hidden; margin-top: 30px;}
|
||||||
|
.mail_box,ul,li{ list-style-type:none}
|
||||||
.mail a{color:#1b55a7; font-weight: bold; }
|
.mail a{color:#1b55a7; font-weight: bold; }
|
||||||
.mail_content{ margin-top:30px;}
|
.mail_content{ margin-top:30px;}
|
||||||
.c_blue{ color:#1b55a7;}
|
.c_blue{ color:#1b55a7;}
|
||||||
.mail_box{ border:1px solid #c8c8c8; width:570px; height: auto; padding:15px; margin-top:10px; margin-bottom:10px;}
|
.mail_box{ border:1px solid #c8c8c8; width:570px; height: auto; padding:15px; margin-top:10px; margin-bottom:10px;}
|
||||||
.mail_box_p{ float:left; display: block; width:527px;}
|
.mail_box_p{ float:left; display: block; width:527px;}
|
||||||
a.mail_reply{ display:block; float:right; width:80px; text-align:center; height:30px; background:#15bccf; color:#fff; font-weight:normal; font-size:14px;}
|
|
||||||
a:hover.mail_reply{ background:#06a9bc; text-decoration:none;}
|
|
||||||
.mail_fujian{ float:left; width:527px; display: block; }
|
.mail_fujian{ float:left; width:527px; display: block; }
|
||||||
.mail_fujian a{ font-weight:normal; font-size:12px;}
|
.mail_fujian a{ font-weight:normal; font-size:12px;}
|
||||||
.mail_foot a{ font-size:12px; font-weight:normal;}
|
.mail_foot a{ font-size:12px; font-weight:normal;}
|
||||||
|
|
||||||
|
a{ text-decoration:none; }
|
||||||
|
a:hover{ text-decoration:underline; }
|
||||||
|
a.mail_reply{ display:block; float:right; width:80px; text-align:center; height:30px; background:#15bccf; color:#fff; font-weight:normal; font-size:14px;}
|
||||||
|
a:hover.mail_reply{ background:#06a9bc; text-decoration:none;}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
|
||||||
<div class="container">
|
<body style="font-size:12px; font-family:"微软雅黑","宋体"; line-height:1.9; background:#fff; font-style:normal; margin:0; padding:0; border:0;">
|
||||||
<div class="mail">
|
<div class="container" style="margin:0; padding:0; border:0;">
|
||||||
<div class="mail_head">
|
<div class="mail" style="width:600px; margin:20px; height:auto; color:#4b4b4b; font-size:14px; margin:0; padding:0; border:0;">
|
||||||
<p>亲爱的Trustie用户,您好!</p>
|
<div class="mail_head" style="margin:0; padding:0; border:0;">
|
||||||
|
<p><%= l(:mail_issue_greetings)%></p>
|
||||||
</div><!--mail_head end-->
|
</div><!--mail_head end-->
|
||||||
<%= yield %>
|
<%= yield %>
|
||||||
<hr />
|
<hr />
|
||||||
<span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer).html_safe %></span><!--mail_foot end-->
|
<span class="footer" style="margin:0; padding:0;"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer).html_safe %></span><!--mail_foot end-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -1,32 +1,40 @@
|
||||||
<!-- <h1><%#= link_to(h("#{issue.tracker.name} ##{issue.project_index}: #{issue.subject}"), issue_url) %></h1> -->
|
<!-- <h1><%#= link_to(h("#{issue.tracker.name} ##{issue.project_index}: #{issue.subject}"), issue_url) %></h1> -->
|
||||||
<p>
|
<p>
|
||||||
<span class="c_blue">
|
<span class="c_blue" style="color:#1b55a7;">
|
||||||
<%= link_to(h("#{@issue.author}(#{@issue.author.show_name})"), @issue_author_url) %>
|
<%= link_to(h("#{@issue.author}(#{@issue.author.show_name})"), @issue_author_url , :style=>'color:#1b55a7; font-weight:bold;') %>
|
||||||
</span>在
|
</span><%= l(:mail_issue_title_userin)%>
|
||||||
<span class="c_blue"><%= link_to(h("#{@issue.project.name}"),@project_url) %></span>中有了一个与您相关的最新活动,请您关注!</p>
|
<span class="c_blue" style="color:#1b55a7;"><%= link_to(h("#{@issue.project.name}"), @project_url, :style=>'color:#1b55a7; font-weight:bold;') %></span><%= l(:mail_issue_title_active)%></p>
|
||||||
<div class="mail_box">
|
<div class="mail_box" style="border:1px solid #c8c8c8; width:570px; height: auto; padding:15px; margin-top:10px; margin-bottom:10px;">
|
||||||
<ul>
|
<ul style="list-style-type:none; margin:0; padding:0;">
|
||||||
<li style="list-style-type:none"><span style="float: left"><strong>标题:</strong></span><span style="float: left; width: 500px"><%= link_to(issue.subject, issue_url) %></span></li>
|
<li style="list-style-type:none; margin:0; padding:0;"><span style="float: left;"><strong><%= l(:mail_issue_subject)%></strong></span><span style="float: left; width: 526px"><%= link_to(issue.subject, issue_url, :style=>'color:#1b55a7; font-weight:bold;') %></span></li>
|
||||||
<li style="list-style-type:none"><span style="float: left"> <strong>来源:</strong></span><span style="float: left; width: 500px"><%= issue.project.name %><b>| </b>项目<%= issue.tracker.name%></span></li>
|
<li style="list-style-type:none; margin:0; padding:0;"><span style="float: left;"><strong><%= l(:mail_issue_sent_from)%></strong></span><span style="float: left; width: 526px"><%= issue.project.name %><b>| </b><%= l(:mail_issue_from_project)%></span></li>
|
||||||
<li style="list-style-type:none"><span style="float: left"> <strong >内容:</strong></span><span style="float: left; width: 500px">
|
<li style="list-style-type:none; margin:0; padding:0;"><span style="float: left;"><strong><%= l(:mail_issue_content)%></strong></span>
|
||||||
<%= issue.description %></span>
|
<span style="float: left; width: 526px">
|
||||||
|
<% if @journal.nil? %>
|
||||||
|
<%= issue.description %>
|
||||||
|
<% else %>
|
||||||
|
<%= @journal.notes %>
|
||||||
|
<% end%>
|
||||||
|
</span>
|
||||||
</li>
|
</li>
|
||||||
<li style="list-style-type:none">
|
<li style="list-style-type:none; margin:0; padding:0;">
|
||||||
|
|
||||||
<% unless @issue.attachments.nil? %>
|
<% unless @issue.attachments.nil? %>
|
||||||
<span style="float: left"> <strong>附件:</strong>
|
<span style="float: left"> <strong><%= l(:mail_issue_attachments)%></strong></span>
|
||||||
</span><span style="float: left; width: 500px">
|
<span style="float: left; width: 526px; margin:0; padding:0;">
|
||||||
<% @issue.attachments.each do |attach| %>
|
<% @issue.attachments.each do |attach| %>
|
||||||
<p><%= link_to_attachment(attach, :download => true, :token => @token.value, :only_path => false) %></p>
|
<p style="float: left; width: 526px; margin:0; padding:0;"><%= link_to_attachment(attach, :download => true, :token => @token.value, :only_path => false, :style=>'color:#1b55a7; font-weight:bold;')%></p>
|
||||||
<% end %></span>
|
<% end %></span>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="cl"></div>
|
<div class="cl" style="margin-top: 30px; clear:both; overflow:hidden;"></div>
|
||||||
<label class="mail_reply"><%= link_to( "我要回复", issue_url, :class => "mail_reply") %></label>
|
<label class="mail_reply">
|
||||||
<div class="cl"></div>
|
<%= link_to( l(:mail_issue_reply), issue_url, :class => "mail_reply", :style =>'display:block; float:right; width:80px; text-align:center; height:30px; background:#15bccf; color:#fff; font-weight:normal; font-size:14px; line-height: 30px;') %>
|
||||||
|
</label>
|
||||||
|
<div class="cl" style="margin-top: 30px; clear:both; overflow:hidden;"></div>
|
||||||
</div>
|
</div>
|
||||||
<!-- <li><%#=l(:field_author)%>: <%#=h issue.author %></li>
|
<!-- <li><%#=l(:field_author)%>: <%#=h issue.author %></li>
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,17 @@
|
||||||
|
|
||||||
<%= link_to(h("#{@issue.author}(#{@issue.author.show_name})"), @issue_author_url) %>
|
<%= link_to(h("#{@issue.author}(#{@issue.author.show_name})"), @issue_author_url) %>
|
||||||
在
|
<%= l(:mail_issue_title_userin)%>
|
||||||
<%= link_to(h("#{@issue.project.name}"),@project_url) %>中有了一个与您相关的最新活动,请您关注!
|
<%= link_to(h("#{@issue.project.name}"),@project_url) %><%= l(:mail_issue_title_active)%>
|
||||||
标题:<%= link_to(issue.subject, issue_url) %>
|
<%= l(:mail_issue_subject)%><%= link_to(issue.subject, issue_url) %>
|
||||||
来源:<%= issue.project.name %>| 项目缺陷<
|
<%= l(:mail_issue_sent_from)%>| <%= l(:mail_issue_from_project)%>
|
||||||
内容:
|
<%= l(:mail_issue_content)%>
|
||||||
|
<% if @journal.nil? %>
|
||||||
<%= issue.description %>
|
<%= issue.description %>
|
||||||
|
<% else %>
|
||||||
|
<%= @journal.notes %>
|
||||||
|
<% end%>
|
||||||
<% unless @issue.attachments.nil? %>
|
<% unless @issue.attachments.nil? %>
|
||||||
附件:
|
<%= l(:mail_issue_attachments)%>
|
||||||
|
|
||||||
|
|
||||||
<% @issue.attachments.each do |attach| %>
|
<% @issue.attachments.each do |attach| %>
|
||||||
|
@ -16,4 +20,4 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
|
||||||
<%= link_to( "我要回复", issue_url) %>
|
<%= link_to( l(:mail_issue_reply), issue_url) %>
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
<h1><%= link_to(h(@forum.name), @forum_url) %></h1>
|
||||||
|
<em><%=h @forum.creator.name %></em>
|
||||||
|
|
||||||
|
<%= @forum.description.html_safe %>
|
|
@ -0,0 +1,4 @@
|
||||||
|
<%= @forum_url %>
|
||||||
|
<%= @author.name %>
|
||||||
|
|
||||||
|
<%= @forum.description %>
|
|
@ -0,0 +1,4 @@
|
||||||
|
<h1><%= link_to(h(@memo.subject), @memo_url) %></h1>
|
||||||
|
<em><%=h @memo.author.name %></em>
|
||||||
|
|
||||||
|
<%= @memo.content.html_safe %>
|
|
@ -0,0 +1,5 @@
|
||||||
|
<%= @memo_url %>
|
||||||
|
<%= @author.name %>
|
||||||
|
|
||||||
|
<%= @memo.subject %>
|
||||||
|
<%= @memo.content %>
|
|
@ -1,9 +1,9 @@
|
||||||
<div class="mail_content">
|
<div class="mail_content" style="margin-top:30px; margin:0; padding:0; border:0;">
|
||||||
|
|
||||||
|
|
||||||
<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="mail_foot"><%= link_to("退订该邮件?", @user_url) %> </div>
|
<div class="mail_foot" style="margin:0; padding:0; border:0;"><%= link_to( l(:mail_issue_footer), @user_url , :style=>'font-size:12px; font-weight:normal; color:#1b55a7;') %> </div>
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
|
|
||||||
<%= render :partial => 'issue', :formats => [:text], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
<%= render :partial => 'issue', :formats => [:text], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
||||||
<%= link_to("退订该邮件?", @user_url) %>
|
<%= link_to( l(:mail_issue_footer), @user_url) %>
|
|
@ -1,15 +1,11 @@
|
||||||
<%= l(:text_issue_updated, :id => "##{@issue.project_index}", :author => h(@journal.user)) %>
|
<div>
|
||||||
|
<%= l(:text_issue_updated, :id => "##{@issue.project_index}", :author => h(@journal.user)) %>
|
||||||
|
|
||||||
<ul>
|
|
||||||
<% details_to_strings(@journal.details, false, :only_path => false, :token => @token.value).each do |string| %>
|
|
||||||
<% if (!string.include? l(:label_attachment)) && (!string.include? "attachments") %>
|
|
||||||
<li><%= string %></li>
|
|
||||||
<% end %>
|
|
||||||
<% end %>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<span style="float: left"><strong><%= l(:field_content)%>:</strong></span><span style="float: left; width: 540px"><%= @journal.notes %></span>
|
</div>
|
||||||
<hr />
|
<div class="cl" style="margin-top: 15px; clear:both; overflow:hidden;"></div>
|
||||||
|
<hr/>
|
||||||
|
|
||||||
<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
||||||
<div class="mail_foot"><%= link_to("退订该邮件?", @user_url) %> </div>
|
<div class="mail_foot"><%= link_to( l(:mail_issue_footer), @user_url, :style=>'font-size:12px; font-weight:normal; color:#1b55a7;') %> </div>
|
||||||
|
|
||||||
|
|
|
@ -1,16 +1,8 @@
|
||||||
<%= l(:text_issue_updated, :id => "##{@issue.project_index}", :author => @journal.user) %>
|
<%= l(:text_issue_updated, :id => "##{@issue.project_index}", :author => @journal.user) %>
|
||||||
|
|
||||||
<% details_to_strings(@journal.details, true, :token => @token.value).each do |string| -%>
|
|
||||||
<% if (!string.include? l(:label_attachment)) && (!string.include? "attachments") %>
|
|
||||||
<li><%= string %></li>
|
|
||||||
<% end %>
|
|
||||||
<% end -%>
|
|
||||||
|
|
||||||
<% if @journal.notes? -%>
|
|
||||||
<%= l(:field_content)%>:<%= @journal.notes %>
|
|
||||||
|
|
||||||
<% end -%>
|
--------------------------------------------------------------------------------
|
||||||
----------------------------------------
|
|
||||||
<%= render :partial => 'issue', :formats => [:text], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
<%= render :partial => 'issue', :formats => [:text], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
||||||
|
|
||||||
<%= link_to("退订该邮件?", @user_url) %>
|
<%= link_to( l(:mail_issue_footer), @user_url) %>
|
|
@ -1,4 +1,10 @@
|
||||||
<h1><%=h @message.board.project.name %> - <%=h @message.board.name %>: <%= link_to(h(@message.subject), @message_url) %></h1>
|
<h1>
|
||||||
|
<% if @message.project %>
|
||||||
|
<%=h @message.board.project.name %> - <%=h @message.board.name %>: <%= link_to(h(@message.subject), @message_url) %>
|
||||||
|
<% elsif @message.course %>
|
||||||
|
<%=h @message.board.course.name %> - <%=h @message.board.name %>: <%= link_to(h(@message.subject), @message_url) %>
|
||||||
|
<% end %>
|
||||||
|
</h1>
|
||||||
<em><%=h @message.author %></em>
|
<em><%=h @message.author %></em>
|
||||||
|
|
||||||
<%= textilizable(@message, :content, :only_path => false) %>
|
<%= textilizable(@message, :content, :only_path => false) %>
|
||||||
|
|
|
@ -123,10 +123,10 @@
|
||||||
<br/>
|
<br/>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p style="width:400px;padding-left: 50px;">
|
<p style="width:400px;padding-left: 53px;">
|
||||||
<label style="margin-right: 1px;">
|
<label for="userIdentity">
|
||||||
<%= l(:label_identity) %><span style="color: #bb0000;"> *</span></label>
|
<%= l(:label_identity) %><span class="required"> *</span></label>
|
||||||
<select onchange="showtechnical_title(this.value, $('#userTechnical_title'));" name="identity" id="userIdentity" class="location" style="margin: 0px;">
|
<select onchange="showtechnical_title(this.value, $('#userTechnical_title'));" name="identity" id="userIdentity" class="location" style="margin: -4px;">
|
||||||
<option value="">
|
<option value="">
|
||||||
<%= l(:label_account_identity_choose) %>
|
<%= l(:label_account_identity_choose) %>
|
||||||
</option>
|
</option>
|
||||||
|
@ -187,19 +187,19 @@
|
||||||
<!-- added by bai 增加账户里的性别-->
|
<!-- added by bai 增加账户里的性别-->
|
||||||
<span id='gender' style='display:none'>
|
<span id='gender' style='display:none'>
|
||||||
<% if @user.user_extensions.nil? %>
|
<% if @user.user_extensions.nil? %>
|
||||||
<p style="width:400px;padding-left: 52px;">
|
<p style="width:400px;padding-left: 53px;">
|
||||||
<%= l(:label_gender) %>
|
<label for="gender"><%= l(:label_gender) %> </label>
|
||||||
<%= select_tag 'gender', "<option value = '0'>#{l(:label_gender_male)}</option><option value = '1'>#{l(:label_gender_female)}</option>".html_safe, :class => 'gender' %>
|
<%= select_tag 'gender', "<option value = '0'>#{l(:label_gender_male)}</option><option value = '1'>#{l(:label_gender_female)}</option>".html_safe, :class => 'gender' %>
|
||||||
</p>
|
</p>
|
||||||
<% else %>
|
<% else %>
|
||||||
<% if @user.user_extensions.gender == 0 %><!-- label_gender_male -->
|
<% if @user.user_extensions.gender == 0 %><!-- label_gender_male -->
|
||||||
<p style="width:400px;padding-left: 52px;">
|
<p style="width:400px;padding-left: 53px;">
|
||||||
<%= l(:label_gender) %>
|
<label for="gender"><%= l(:label_gender) %> </label>
|
||||||
<%= select_tag 'gender', "<option value = '0'>#{l(:label_gender_male)}</option><option value = '1'>#{l(:label_gender_female)}</option>".html_safe, :class => 'gender' %>
|
<%= select_tag 'gender', "<option value = '0'>#{l(:label_gender_male)}</option><option value = '1'>#{l(:label_gender_female)}</option>".html_safe, :class => 'gender' %>
|
||||||
</p>
|
</p>
|
||||||
<% else %>
|
<% else %>
|
||||||
<p style="width:400px;padding-left: 54px;">
|
<p style="width:400px;padding-left: 54px;">
|
||||||
<%= l(:label_gender) %>
|
<label for="gender"><%= l(:label_gender) %> </label>
|
||||||
<%= select_tag 'gender', "<option value = '0'>#{l(:label_gender_male)}</option><option value = '1' selected='selected'>#{l(:label_gender_female)}</option>".html_safe, :class => 'gender' %>
|
<%= select_tag 'gender', "<option value = '0'>#{l(:label_gender_male)}</option><option value = '1' selected='selected'>#{l(:label_gender_female)}</option>".html_safe, :class => 'gender' %>
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
@ -212,9 +212,9 @@
|
||||||
|
|
||||||
|
|
||||||
<!-- added by Wen -->
|
<!-- added by Wen -->
|
||||||
<p id="occupation_detail" style="padding-left: 24px; display: none">
|
<p id="occupation_detail" style="padding-left: 25px; display: none">
|
||||||
|
|
||||||
<%= l(:field_occupation) %>
|
<label for="occupation_name"><%= l(:field_occupation) %></label>
|
||||||
<span class="required"> </span>
|
<span class="required"> </span>
|
||||||
<% if User.current.user_extensions.nil? %>
|
<% if User.current.user_extensions.nil? %>
|
||||||
<input id="province" name="province" style="display: none" type="text" value="请单击选择省份及学校" readonly>
|
<input id="province" name="province" style="display: none" type="text" value="请单击选择省份及学校" readonly>
|
||||||
|
@ -318,7 +318,7 @@
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<p style="width:400px;padding-left: 55px;"><label style="margin-right: 5px;"><%= l(:label_location) %></label>
|
<p style="width:400px;padding-left: 55px;"><label style="margin-right: 5px;" for="userProvince"><%= l(:label_location) %></label>
|
||||||
<select onchange="showcity(this.value, document.getElementById('userCity'));" name="province" id="userProvince" class="location">
|
<select onchange="showcity(this.value, document.getElementById('userCity'));" name="province" id="userProvince" class="location">
|
||||||
<option value="">--请选择省份--</option>
|
<option value="">--请选择省份--</option>
|
||||||
<option value="北京">北京</option>
|
<option value="北京">北京</option>
|
||||||
|
@ -382,7 +382,7 @@
|
||||||
<legend onclick="toggleFieldset(this);">
|
<legend onclick="toggleFieldset(this);">
|
||||||
<%= l(:field_mail_notification) %>
|
<%= l(:field_mail_notification) %>
|
||||||
</legend>
|
</legend>
|
||||||
<div style="padding-left: 8px;"> <!-- modified by ming -->
|
<div style="padding-left: 3px;"> <!-- modified by ming -->
|
||||||
<p style="width:380px;">
|
<p style="width:380px;">
|
||||||
<%= render :partial => 'users/mail_notifications' %>
|
<%= render :partial => 'users/mail_notifications' %>
|
||||||
</p></div>
|
</p></div>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
<div class="ur_editor checkbox">
|
<div class="ur_editor checkbox">
|
||||||
<div class="ur_editor_title">
|
<div class="ur_editor_title">
|
||||||
<input type="hidden" name="question_type" value="<%= poll_question.question_type%>"/>
|
<input type="hidden" name="question_type" value="<%= poll_question.question_type%>"/>
|
||||||
<input maxlength="250" class="ur_question_title" type="text" name="poll_questions_title" id="poll_questions_title_<%=poll_question.id%>" placeholder="请输入单选题标题" value="<%= poll_question.question_title%>"/>
|
<input maxlength="250" class="ur_question_title" type="text" name="poll_questions_title" id="poll_questions_title_<%=poll_question.id%>" placeholder="请输入多选题标题" value="<%= poll_question.question_title%>"/>
|
||||||
<input type="checkbox" name="is_necessary" id="is_necessary_<%=poll_question.id%>" value="true" <%= poll_question.is_necessary == 1 ? "checked" : ""%>/>
|
<input type="checkbox" name="is_necessary" id="is_necessary_<%=poll_question.id%>" value="true" <%= poll_question.is_necessary == 1 ? "checked" : ""%>/>
|
||||||
<label>必答</label>
|
<label>必答</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="ur_editor_title">
|
<div class="ur_editor_title">
|
||||||
<label>问题: </label>
|
<label>问题: </label>
|
||||||
<input type="hidden" name="question_type" value="2"/>
|
<input type="hidden" name="question_type" value="2"/>
|
||||||
<input maxlength="250" class="ur_question_title" type="text" name="poll_questions_title" id="poll_questions_title" placeholder="请输入多选题题标题"/>
|
<input maxlength="250" class="ur_question_title" type="text" name="poll_questions_title" id="poll_questions_title" placeholder="请输入多选题标题"/>
|
||||||
<input type="checkbox" name="is_necessary" value="true" checked/>
|
<input type="checkbox" name="is_necessary" value="true" checked/>
|
||||||
<label>必答</label>
|
<label>必答</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -0,0 +1,68 @@
|
||||||
|
<% has_commit = has_commit_poll?(poll.id ,User.current)%>
|
||||||
|
<% poll_name = poll.polls_name.empty? ? l(:label_poll_new) : poll.polls_name%>
|
||||||
|
<li title="<%= poll.polls_name %>">
|
||||||
|
<% if @is_teacher %>
|
||||||
|
<% if has_commit %>
|
||||||
|
<sapn class="polls_title fl">
|
||||||
|
<%= link_to poll_name, poll_result_poll_path(poll.id), :class => "polls_title polls_title_w fl", :style => "max-width: 550px;width: 550px;" %>
|
||||||
|
</sapn>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to poll_name, poll_path(poll.id), :class => "polls_title polls_title_w fl" %>
|
||||||
|
<% end %>
|
||||||
|
<% else %>
|
||||||
|
<% if has_commit && poll.polls_status == 2 %>
|
||||||
|
<%= link_to poll_name, poll_result_poll_path(poll.id), :class => "polls_title polls_title_w fl", :style => "max-width: 500px;width: auto;" %>
|
||||||
|
<% elsif !has_commit && poll.polls_status == 2 %>
|
||||||
|
<%= link_to poll_name, poll_path(poll.id), :class => "polls_title polls_title_w fl", :style => "max-width: 550px;width: 550px;" %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
</li>
|
||||||
|
<% if !@is_teacher && has_commit && poll.polls_status == 2%>
|
||||||
|
<li class="pollsbtn_tip fl ml5">已答</li>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<%if @is_teacher%>
|
||||||
|
<% if poll.polls_status == 1 %>
|
||||||
|
<li class="pollsbtn fl ml10 pollsbtn_grey">统计结果</li>
|
||||||
|
<% elsif poll.polls_status == 2%>
|
||||||
|
<li>
|
||||||
|
<%= link_to l(:label_statistical_results), statistics_result_poll_path(poll.id), :class => "pollsbtn fl ml10"%>
|
||||||
|
</li>
|
||||||
|
<% end%>
|
||||||
|
<% end%>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<%if @is_teacher %>
|
||||||
|
<% if poll.polls_status == 1 %>
|
||||||
|
<a href="#" class="pollsbtn btn_pu fl ml5" onclick="poll_submit(<%= poll.id%>);">发布问卷</a>
|
||||||
|
<% elsif poll.polls_status == 2%>
|
||||||
|
<a href="#" class="pollsbtn btn_de fl ml5" onclick="republish_poll(<%= poll.id%>);">取消发布</a>
|
||||||
|
<% end%>
|
||||||
|
<% end%>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<% if @is_teacher %>
|
||||||
|
<!--新建状态的问卷可删除-->
|
||||||
|
<%= link_to(l(:button_delete), poll,
|
||||||
|
method: :delete, :confirm => l(:text_are_you_sure), :remote => true, :class => "polls_de fr ml20 mr10") %>
|
||||||
|
<% end%>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<% if @is_teacher%>
|
||||||
|
<% if poll.polls_status == 1 %>
|
||||||
|
<%= link_to l(:button_edit), edit_poll_path(poll.id), :class => "polls_de fr ml20"%>
|
||||||
|
<% elsif poll.polls_status == 2%>
|
||||||
|
<li class="polls_de_grey fr ml20">编辑</li>
|
||||||
|
<% end%>
|
||||||
|
<% end%>
|
||||||
|
</li>
|
||||||
|
<!--<li>-->
|
||||||
|
<!--<% if @is_teacher && poll.polls_status == 2%>-->
|
||||||
|
<!--<a class="polls_de fr ml20" onclick="republish_poll(<%= poll.id%>);">-->
|
||||||
|
<!--取消发布-->
|
||||||
|
<!--</a>-->
|
||||||
|
<!--<% end %>-->
|
||||||
|
<!--</li>-->
|
||||||
|
<li class="polls_date fr mr10">
|
||||||
|
<%= format_time poll.created_at%>
|
||||||
|
</li>
|
|
@ -57,9 +57,9 @@
|
||||||
|
|
||||||
function poll_submit()
|
function poll_submit()
|
||||||
{
|
{
|
||||||
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'poll_submit', locals: { poll: @poll}) %>');
|
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'poll_submit', locals: { :poll => @poll,:is_remote => false}) %>');
|
||||||
showModal('ajax-modal', '310px');
|
showModal('ajax-modal', '310px');
|
||||||
$('#ajax-modal').css('height','110px');
|
$('#ajax-modal').css('height','115px');
|
||||||
$('#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;'>" +
|
||||||
"<a href='#' onclick='clickCanel();'><img src='/images/bid/close.png' width='26px' height='26px' /></a></span>");
|
"<a href='#' onclick='clickCanel();'><img src='/images/bid/close.png' width='26px' height='26px' /></a></span>");
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<script type="text/javascript">
|
||||||
|
function clickCanel(){hideModal("#popbox02");}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="popbox02">
|
||||||
|
<div class="upload_con">
|
||||||
|
<div class="upload_box">
|
||||||
|
<p class="polls_box_p">
|
||||||
|
问卷取消发布后学生提交的问卷答案将会被清空,
|
||||||
|
<br />
|
||||||
|
是否确定取消发布该问卷?
|
||||||
|
</p>
|
||||||
|
<div class="polls_btn_box">
|
||||||
|
<%= link_to "确 定",republish_poll_poll_path(poll.id), :class => "upload_btn", :onclick => "clickCanel();" %>
|
||||||
|
<a class="upload_btn upload_btn_grey" onclick="clickCanel();">
|
||||||
|
取 消
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
|
@ -2,18 +2,6 @@
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
function clickPublishPoll()
|
|
||||||
{
|
|
||||||
hideModal("#popbox02");
|
|
||||||
$.ajax({
|
|
||||||
type: "GET",
|
|
||||||
url: "<%= publish_poll_poll_path(poll.id)%>",
|
|
||||||
data: 'text',
|
|
||||||
success: function (data) {
|
|
||||||
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
function clickCanel(){hideModal("#popbox02");}
|
function clickCanel(){hideModal("#popbox02");}
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
@ -27,16 +15,14 @@
|
||||||
是否确定发布该问卷?
|
是否确定发布该问卷?
|
||||||
</p>
|
</p>
|
||||||
<div class="polls_btn_box">
|
<div class="polls_btn_box">
|
||||||
<%= link_to "确 定",publish_poll_poll_path(poll.id), :class => "upload_btn", :onclick => "clickCanel();" %>
|
<%= link_to "确 定",publish_poll_poll_path(poll.id,:is_remote => is_remote), :class => "upload_btn", :onclick => "clickCanel();" %>
|
||||||
<a class="upload_btn upload_btn_grey" onclick="clickCanel();">
|
<a class="upload_btn upload_btn_grey" onclick="clickCanel();">
|
||||||
取 消
|
取 消
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
<li class="ur_question_item checkbox">
|
||||||
|
<div class="ur_title">
|
||||||
|
<span class="title_index">
|
||||||
|
第<%= poll_question.question_number%>题:
|
||||||
|
</span>
|
||||||
|
<%= poll_question.question_title %>
|
||||||
|
<span class="title_index">[多选题]</span>
|
||||||
|
<%if poll_question.is_necessary == 1%>
|
||||||
|
<span class="ur_required" title="必答">*</span>
|
||||||
|
<%end%>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="ur_inputs">
|
||||||
|
<table class="ur_table">
|
||||||
|
<tbody>
|
||||||
|
<% poll_question.poll_votes.where("user_id = #{User.current.id}").each do |answer|%>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<%= answer.poll_answer.answer_text %>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<% end%>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</li><!--多选题 end-->
|
|
@ -0,0 +1,27 @@
|
||||||
|
<li class="ur_question_item radio">
|
||||||
|
<div class="ur_title">
|
||||||
|
<span class="title_index">
|
||||||
|
第<%= poll_question.question_number%>题:
|
||||||
|
</span>
|
||||||
|
<%= poll_question.question_title %>
|
||||||
|
<span class="title_index">[单选题]</span>
|
||||||
|
<%if poll_question.is_necessary == 1%>
|
||||||
|
<span class="ur_required" title="必答">*</span>
|
||||||
|
<%end%>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="ur_inputs">
|
||||||
|
<table class="ur_table" >
|
||||||
|
<tbody>
|
||||||
|
<% poll_question.poll_votes.where("user_id = #{User.current.id}").each do |answer|%>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<%= answer.poll_answer.answer_text %>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<% end%>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</li><!--单选题 end-->
|
|
@ -1,7 +1,7 @@
|
||||||
<div class="ur_page_head ur_editor02"><!--头部显示 start-->
|
<div class="ur_page_head ur_editor02"><!--头部显示 start-->
|
||||||
<a href="#" class="ur_icon_edit" title="编辑" onclick="pollsEdit();"></a>
|
<a href="#" class="ur_icon_edit" title="编辑" onclick="pollsEdit();"></a>
|
||||||
<h1 class="ur_page_title" id="polls_name_h">
|
<h1 class="ur_page_title" id="polls_name_h">
|
||||||
<%= poll.polls_name%>
|
<%= poll.polls_name.empty? ? l(:label_poll_new) : poll.polls_name%>
|
||||||
</h1>
|
</h1>
|
||||||
<p class="ur_prefix_content" id="polls_description_p">
|
<p class="ur_prefix_content" id="polls_description_p">
|
||||||
<%= @poll.polls_description%>
|
<%= @poll.polls_description%>
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
<li class="ur_question_item textarea">
|
||||||
|
<div class="ur_preview">
|
||||||
|
<div class="ur_title">
|
||||||
|
<span class="title_index">
|
||||||
|
第<%= poll_question.question_number%>题:
|
||||||
|
</span>
|
||||||
|
<%= poll_question.question_title %>
|
||||||
|
<span class="title_index">[多行主观]</span>
|
||||||
|
<%if poll_question.is_necessary == 1%>
|
||||||
|
<span class="ur_required" title="必答">*</span>
|
||||||
|
<%end%>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="ur_inputs">
|
||||||
|
<p>
|
||||||
|
<%= get_anwser_vote_text(poll_question.id,User.current.id).html_safe%>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li><!--多行输入 end-->
|
|
@ -0,0 +1,18 @@
|
||||||
|
<li class="ur_question_item text">
|
||||||
|
<div class="ur_title">
|
||||||
|
<span class="title_index">
|
||||||
|
第<%= poll_question.question_number%>题:
|
||||||
|
</span>
|
||||||
|
<%= poll_question.question_title %>
|
||||||
|
<span class="title_index">[单行主观]</span>
|
||||||
|
<%if poll_question.is_necessary == 1%>
|
||||||
|
<span class="ur_required" title="必答">*</span>
|
||||||
|
<%end%>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="ur_inputs">
|
||||||
|
<p>
|
||||||
|
<%= get_anwser_vote_text poll_question.id,User.current.id%>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li><!--当行输入 end-->
|
|
@ -1,4 +1,55 @@
|
||||||
<%= stylesheet_link_tag 'polls', :media => 'all' %>
|
<%= stylesheet_link_tag 'polls', :media => 'all' %>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function republish_poll(poll_id)
|
||||||
|
{
|
||||||
|
$('#ajax-modal').html("<div id='popbox02'>" +
|
||||||
|
"<div class='upload_con'>" +
|
||||||
|
"<div class='upload_box'>" +
|
||||||
|
"<p class='polls_box_p'>取消发布后问卷统计结果将会被清空<br />是否确定取消发布该问卷?</p>" +
|
||||||
|
"<div class='polls_btn_box'>" +
|
||||||
|
"<a href='/poll/"+ poll_id +"/republish_poll' class='upload_btn' onclick='clickCanel();' data-remote='true'>确 定</a>" +
|
||||||
|
"<a class='upload_btn upload_btn_grey' onclick='clickCanel();'>取 消</a>" +
|
||||||
|
"</div>" +
|
||||||
|
"<div class='cl'></div>" +
|
||||||
|
"</div>" +
|
||||||
|
"</div>" +
|
||||||
|
"</div>");
|
||||||
|
showModal('ajax-modal', '310px');
|
||||||
|
$('#ajax-modal').css('height','115px');
|
||||||
|
$('#ajax-modal').siblings().remove();
|
||||||
|
$('#ajax-modal').before("<span style='float: right;cursor:pointer;'>" +
|
||||||
|
"<a onclick='clickCanel();'><img src='/images/bid/close.png' width='26px' height='26px' /></a></span>");
|
||||||
|
$('#ajax-modal').parent().removeClass("alert_praise");
|
||||||
|
$('#ajax-modal').parent().css("top","").css("left","");
|
||||||
|
$('#ajax-modal').parent().addClass("popbox_polls");
|
||||||
|
}
|
||||||
|
|
||||||
|
function clickCanel(){hideModal("#popbox02");}
|
||||||
|
|
||||||
|
function poll_submit(poll_id)
|
||||||
|
{
|
||||||
|
$('#ajax-modal').html("<div id='popbox02'>" +
|
||||||
|
"<div class='upload_con'>" +
|
||||||
|
"<div class='upload_box'>" +
|
||||||
|
"<p class='polls_box_p'>问卷发布后将不能对问卷进行修改,<br />是否确定发布该问卷?</p>" +
|
||||||
|
"<div class='polls_btn_box'>" +
|
||||||
|
"<a href='/poll/"+ poll_id +"/publish_poll' class='upload_btn' onclick='clickCanel();' data-remote='true'>确 定</a>" +
|
||||||
|
"<a class='upload_btn upload_btn_grey' onclick='clickCanel();'>取 消</a>" +
|
||||||
|
"</div>" +
|
||||||
|
"<div class='cl'></div>" +
|
||||||
|
"</div>" +
|
||||||
|
"</div>" +
|
||||||
|
"</div>");
|
||||||
|
showModal('ajax-modal', '310px');
|
||||||
|
$('#ajax-modal').css('height','115px');
|
||||||
|
$('#ajax-modal').siblings().remove();
|
||||||
|
$('#ajax-modal').before("<span style='float: right;cursor:pointer;'>" +
|
||||||
|
"<a href='#' onclick='clickCanel();'><img src='/images/bid/close.png' width='26px' height='26px' /></a></span>");
|
||||||
|
$('#ajax-modal').parent().removeClass("alert_praise");
|
||||||
|
$('#ajax-modal').parent().css("top","").css("left","");
|
||||||
|
$('#ajax-modal').parent().addClass("popbox_polls");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
<div class="polls_content" id="polls" style="width:677px;">
|
<div class="polls_content" id="polls" style="width:677px;">
|
||||||
<div class="polls_head">
|
<div class="polls_head">
|
||||||
<h2>所有问卷
|
<h2>所有问卷
|
||||||
|
@ -12,44 +63,7 @@
|
||||||
<div class="polls_list">
|
<div class="polls_list">
|
||||||
<% @polls.each do |poll|%>
|
<% @polls.each do |poll|%>
|
||||||
<ul id="polls_<%= poll.id %>">
|
<ul id="polls_<%= poll.id %>">
|
||||||
<li title="<%= poll.polls_name %>">
|
<%= render :partial => 'poll', :locals => {:poll => poll} %>
|
||||||
<% if @is_teacher %>
|
|
||||||
<% if has_commit_poll?(poll.id ,User.current) %>
|
|
||||||
<sapn class="polls_title fl"> <%= poll.polls_name %></sapn>
|
|
||||||
<% else %>
|
|
||||||
<%= link_to poll.polls_name, poll_path(poll.id), :class => "polls_title fl" %>
|
|
||||||
<% end %>
|
|
||||||
<% else %>
|
|
||||||
<% if has_commit_poll?(poll.id ,User.current) && poll.polls_status == 2 %>
|
|
||||||
<sapn class="polls_title fl" >
|
|
||||||
<%= poll.polls_name %>
|
|
||||||
</sapn>
|
|
||||||
<% elsif (!has_commit_poll?(poll.id ,User.current)) && poll.polls_status == 2 %>
|
|
||||||
<%= link_to poll.polls_name, poll_path(poll.id), :class => "polls_title fl" %>
|
|
||||||
<% end %>
|
|
||||||
<% end %>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<%if @is_teacher && poll.polls_status == 2%>
|
|
||||||
<%= link_to l(:label_statistical_results), statistics_result_poll_path(poll.id), :class => "pollsbtn fl ml10"%>
|
|
||||||
<% end%>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<% if @is_teacher %>
|
|
||||||
<!--新建状态的问卷可删除-->
|
|
||||||
<%= link_to(l(:button_delete), poll,
|
|
||||||
method: :delete, :confirm => l(:text_are_you_sure), :remote => true, :class => "polls_de fr ml20 mr10") %>
|
|
||||||
<% end%>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<% if @is_teacher && poll.polls_status == 1%>
|
|
||||||
<!--新建状态的问卷可编辑-->
|
|
||||||
<%= link_to l(:button_edit), edit_poll_path(poll.id), :class => "polls_de fr ml20"%>
|
|
||||||
<% end%>
|
|
||||||
</li>
|
|
||||||
<li class="polls_date fr">
|
|
||||||
<%= format_time poll.created_at%>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<% end%>
|
<% end%>
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
<%= stylesheet_link_tag 'polls', :media => 'all' %>
|
||||||
|
<div class="polls_content polls_box">
|
||||||
|
<div class="ur_page_head" >
|
||||||
|
<h1 class="ur_page_title">
|
||||||
|
<%= @poll.polls_name.empty? ? l(:label_poll_new) : @poll.polls_name %>
|
||||||
|
</h1>
|
||||||
|
<p class="ur_prefix_content">
|
||||||
|
<%= @poll.polls_description%>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="ur_card">
|
||||||
|
<ol class="ur_questions">
|
||||||
|
<% @poll_questions.each do |poll_question|%>
|
||||||
|
<% if poll_question.question_type == 1%>
|
||||||
|
<%= render :partial => 'show_MC_result', :locals => {:poll_question => poll_question} %>
|
||||||
|
<% elsif poll_question.question_type == 2%>
|
||||||
|
<%= render :partial => 'show_MCQ_result', :locals => {:poll_question => poll_question} %>
|
||||||
|
<% elsif poll_question.question_type == 3%>
|
||||||
|
<%= render :partial => 'show_single_result', :locals => {:poll_question => poll_question} %>
|
||||||
|
<% elsif poll_question.question_type == 4%>
|
||||||
|
<%= render :partial => 'show_mulit_result', :locals => {:poll_question => poll_question} %>
|
||||||
|
<% end%>
|
||||||
|
<% end%>
|
||||||
|
</ol>
|
||||||
|
</div> <!--ur_cards end-->
|
||||||
|
<div class="cl"></div>
|
||||||
|
|
||||||
|
<!-- 分页 -->
|
||||||
|
<div class="polls_content" id="polls">
|
||||||
|
<ul class="wlist">
|
||||||
|
<%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false, :remote => false, :flag => true%>
|
||||||
|
</ul>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
|
</div><!--问卷内容end-->
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
$("#polls_<%= @poll.id %>").html("<%= escape_javascript(render :partial => 'poll',:locals => {:poll => @poll}) %>");
|
||||||
|
alert("发布成功");
|
|
@ -0,0 +1,2 @@
|
||||||
|
$("#polls_<%= @poll.id %>").html("<%= escape_javascript(render :partial => 'poll',:locals => {:poll => @poll}) %>");
|
||||||
|
alert("取消成功");
|
|
@ -0,0 +1,83 @@
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
|
<title>快速进入项目通道</title>
|
||||||
|
<style>
|
||||||
|
#popbox{ font-size:12px; font-family:"微软雅黑","宋体"; line-height:1.9; background:#fff; font-style:normal;}
|
||||||
|
#popbox 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,img,tr,td{ border:0;}
|
||||||
|
#popbox table,tr,td{border:0; cellspacing:0; cellpadding:0;}
|
||||||
|
#popbox ul,li{ list-style-type:none}
|
||||||
|
#popbox .cl{ clear:both; overflow:hidden; }
|
||||||
|
#popbox a{ text-decoration:none; }
|
||||||
|
#popbox a:hover{ }
|
||||||
|
|
||||||
|
.alert_box {width:400px;height:200px;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:400px;height:200px;}
|
||||||
|
.alert .C{width:388px;height:200px;position:absolute;left:5px;top:5px; }
|
||||||
|
.C_top{ margin-top:20px; width:368px; height:100px; background:#e9e9e9; padding:0px 60px !important; }
|
||||||
|
.C_top h2{ color:#1c1d1d; font-size:24px; font-style:normal; font-weight:normal;}
|
||||||
|
.C_top p{ color:#a9aaaa; line-height:22px;}
|
||||||
|
.C_form{ margin:20px 0 0 60px;}
|
||||||
|
.C_form ul li{ font-size:14px; color:#3f3a39; line-height:30px; padding-left: 60px;}
|
||||||
|
.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:150px;}
|
||||||
|
.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;}
|
||||||
|
.C_form a:hover{ text-decoration:underline;}
|
||||||
|
.C_form a.btn{ display:block; width:100px; height:36px; padding-top:4px; text-align: center; background:#15bccf; color:#fff; font-size:14px; margin:20px 20px 0 95px;}
|
||||||
|
.C_form a.btn:hover{ background:#ff821d;}
|
||||||
|
</style>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function submit_form(obj)
|
||||||
|
{
|
||||||
|
hideModal(obj);
|
||||||
|
$("#new-watcher-form").submit();
|
||||||
|
alert("申请成功");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidden_join_course_form()
|
||||||
|
{
|
||||||
|
hideModal($("#popbox"));
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="popbox">
|
||||||
|
<div class="C" >
|
||||||
|
<div class="C_top">
|
||||||
|
<h2>快速进入项目通道</h2>
|
||||||
|
<p>只要持有项目的ID,就可快速申请加入所在项目。项目页面搜索不到的私有项目只能从此通道进入哦!</p>
|
||||||
|
</div>
|
||||||
|
<div class="C_form">
|
||||||
|
<%= form_tag({:controller => 'applied_project',
|
||||||
|
:action => 'applied_join_project'},
|
||||||
|
:remote => true,
|
||||||
|
:method => :post,
|
||||||
|
:id => 'new-watcher-form') do %>
|
||||||
|
<ul>
|
||||||
|
<li style="padding-top: 15px;">
|
||||||
|
<span class="tips">项 目 ID:</span>
|
||||||
|
<input type="hidden" name="user_id" value="<%= User.current.id%>">
|
||||||
|
<input class=" width190" name="project_id" id="project_id" type="text" value="" >
|
||||||
|
<input type="text" style="display: none"/>
|
||||||
|
</li>
|
||||||
|
<li class="mB5">项目ID是所在项目网址中显示的序号</li>
|
||||||
|
<li>
|
||||||
|
<a href="#" class="btn" style="margin-left: 50px;" onclick="submit_form(this);">
|
||||||
|
<%= l(:label_new_join) %>
|
||||||
|
</a>
|
||||||
|
<a href="#" class="btn" style="margin-left: 20px;" onclick="hideModal(this);">
|
||||||
|
<%= l(:button_cancel)%>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<% end%>
|
||||||
|
</div>
|
||||||
|
</div><!---- C end---->
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
$('#ajax-modal').html('<%= escape_javascript(render :partial => 'projects/join_project') %>');
|
||||||
|
showModal('ajax-modal', '510px');
|
||||||
|
$('#ajax-modal').css('height','260px');
|
||||||
|
$('#ajax-modal').siblings().remove();
|
||||||
|
$('#ajax-modal').before("<span style='float: right;cursor:pointer;padding-left: 513px;'>" +
|
||||||
|
"<a href='#' onclick='hidden_join_course_form();'><img src='/images/bid/close.png' width='26px' height='26px' /></a></span>");
|
||||||
|
$('#ajax-modal').parent().removeClass("alert_praise");
|
||||||
|
$('#ajax-modal').parent().css("top","").css("left","");
|
||||||
|
$('#ajax-modal').parent().addClass("alert_box");
|
|
@ -1,5 +1,5 @@
|
||||||
<p>
|
<p>
|
||||||
<%= label_tag "user_mail_notification", l(:description_user_mail_notification), :class => "hidden-for-sighted_bak" %>
|
<%= label_tag "user_mail_notification", l(:description_user_mail_notification), :class => "hidden-for-sighted_bak" , :style=> 'margin-right: 5px;'%>
|
||||||
<%= select_tag(
|
<%= select_tag(
|
||||||
'user[mail_notification]',
|
'user[mail_notification]',
|
||||||
options_for_select(
|
options_for_select(
|
||||||
|
|
|
@ -122,6 +122,7 @@
|
||||||
else
|
else
|
||||||
course_term = "春季学期"
|
course_term = "春季学期"
|
||||||
end%>
|
end%>
|
||||||
|
<%break if Time.new.strftime("%Y").to_i - year_now >= 2%>
|
||||||
<% all_new_hot_course += find_all_new_hot_course(course_count-all_new_hot_course.count, @school_id, year_now, course_term)%>
|
<% all_new_hot_course += find_all_new_hot_course(course_count-all_new_hot_course.count, @school_id, year_now, course_term)%>
|
||||||
<% end%>
|
<% end%>
|
||||||
<%= render :partial => 'course_list', :locals => {:course_list => all_new_hot_course} %>
|
<%= render :partial => 'course_list', :locals => {:course_list => all_new_hot_course} %>
|
||||||
|
@ -152,6 +153,7 @@
|
||||||
else
|
else
|
||||||
course_term = "春季学期"
|
course_term = "春季学期"
|
||||||
end%>
|
end%>
|
||||||
|
<%break if Time.new.strftime("%Y").to_i - year_now >= 2%>
|
||||||
<% all_new_hot_course += find_all_new_hot_course(9-(all_new_hot_course.count + cur_school_course.count), @school_id, year_now, course_term)%>
|
<% all_new_hot_course += find_all_new_hot_course(9-(all_new_hot_course.count + cur_school_course.count), @school_id, year_now, course_term)%>
|
||||||
<% end%>
|
<% end%>
|
||||||
<%= render :partial => 'course_list', :locals => {:course_list => all_new_hot_course} %>
|
<%= render :partial => 'course_list', :locals => {:course_list => all_new_hot_course} %>
|
||||||
|
|
|
@ -66,6 +66,9 @@
|
||||||
:course => 0,
|
:course => 0,
|
||||||
:project_type =>( @project_type||=0)},
|
:project_type =>( @project_type||=0)},
|
||||||
:class => 'icon icon-add') if User.current.allowed_to?(:add_project, nil, :global => true) %>
|
:class => 'icon icon-add') if User.current.allowed_to?(:add_project, nil, :global => true) %>
|
||||||
|
|
||||||
|
<%= link_to l(:label_join_project), join_project_projects_path ,:remote => true, :class => 'icon icon-add' %>
|
||||||
|
|
||||||
<% end %>
|
<% end %>
|
||||||
</span>
|
</span>
|
||||||
<div class="d-p-projectlist-box">
|
<div class="d-p-projectlist-box">
|
||||||
|
|
|
@ -21,6 +21,16 @@ module RedmineApp
|
||||||
config.verifier_email = "lizanle521@126.com"
|
config.verifier_email = "lizanle521@126.com"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
config.generators do |g|
|
||||||
|
g.test_framework :rspec,
|
||||||
|
fixtures: true,
|
||||||
|
view_specs: false,
|
||||||
|
helper_specs: false,
|
||||||
|
routing_specs: false,
|
||||||
|
controller_specs: true,
|
||||||
|
request_specs: false
|
||||||
|
g.fixture_replacement :factory_girl, dir: "spec/factories"
|
||||||
|
end
|
||||||
# Custom directories with classes and modules you want to be autoloadable.
|
# Custom directories with classes and modules you want to be autoloadable.
|
||||||
config.autoload_paths += %W(#{config.root}/lib)
|
config.autoload_paths += %W(#{config.root}/lib)
|
||||||
|
|
||||||
|
|
|
@ -87,12 +87,12 @@ default:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
address: smtp.126.com
|
address: smtp.163.com
|
||||||
port: 25
|
port: 25
|
||||||
domain: smtp.126.com
|
domain: smtp.163.com
|
||||||
authentication: :plain
|
authentication: :plain
|
||||||
user_name: "alanlong9278@126.com"
|
user_name: mcb592@163.com
|
||||||
password: "alanlong8788786"
|
password: 'mcb1989822'
|
||||||
|
|
||||||
# Absolute path to the directory where attachments are stored.
|
# Absolute path to the directory where attachments are stored.
|
||||||
# The default is the 'files' directory in your Redmine instance.
|
# The default is the 'files' directory in your Redmine instance.
|
||||||
|
|
|
@ -236,6 +236,20 @@ en:
|
||||||
mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated"
|
mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated"
|
||||||
mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}."
|
mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}."
|
||||||
|
|
||||||
|
# edit by meng
|
||||||
|
# emailer
|
||||||
|
mail_issue_greetings: "Dear user , Greetings from Trustie"
|
||||||
|
mail_issue_footer: "Unsubscribe this message?"
|
||||||
|
mail_issue_title_userin: "in"
|
||||||
|
mail_issue_title_active: "has a new activity which relevants to you , please pay more attention to this!"
|
||||||
|
mail_issue_subject: "Title:"
|
||||||
|
mail_issue_content: "Content:"
|
||||||
|
mail_issue_sent_from: "From:"
|
||||||
|
mail_issue_from_project: "project issue"
|
||||||
|
mail_issue_attachments: "Attachments:"
|
||||||
|
mail_issue_reply: "Want reply"
|
||||||
|
#end
|
||||||
|
|
||||||
field_name: Name
|
field_name: Name
|
||||||
field_description: Description
|
field_description: Description
|
||||||
field_summary: Summary
|
field_summary: Summary
|
||||||
|
@ -568,6 +582,8 @@ en:
|
||||||
label_document_new: New document
|
label_document_new: New document
|
||||||
label_document_plural: Documents
|
label_document_plural: Documents
|
||||||
label_document_added: Document added
|
label_document_added: Document added
|
||||||
|
label_forum_message_added: Message added
|
||||||
|
label_forum_add: Forum added
|
||||||
label_document_public_info: "If you don't choose public, only the project's members can see the document."
|
label_document_public_info: "If you don't choose public, only the project's members can see the document."
|
||||||
label_role: Role
|
label_role: Role
|
||||||
label_role_plural: Roles
|
label_role_plural: Roles
|
||||||
|
|
|
@ -250,6 +250,21 @@ zh:
|
||||||
mail_body_wiki_content_added: "'%{id}' wiki页面已由 %{author} 添加。"
|
mail_body_wiki_content_added: "'%{id}' wiki页面已由 %{author} 添加。"
|
||||||
mail_subject_wiki_content_updated: "'%{id}' wiki页面已更新。"
|
mail_subject_wiki_content_updated: "'%{id}' wiki页面已更新。"
|
||||||
mail_body_wiki_content_updated: "'%{id}' wiki页面已由 %{author} 更新。"
|
mail_body_wiki_content_updated: "'%{id}' wiki页面已由 %{author} 更新。"
|
||||||
|
|
||||||
|
# edit by meng
|
||||||
|
# emailer
|
||||||
|
mail_issue_greetings: "亲爱的Trustie用户,您好!"
|
||||||
|
mail_issue_footer: "退订该邮件!"
|
||||||
|
mail_issue_title_userin: "在"
|
||||||
|
mail_issue_title_active: "中有了一个与您相关的最新活动,请您关注!"
|
||||||
|
mail_issue_subject: "标题:"
|
||||||
|
mail_issue_content: "内容:"
|
||||||
|
mail_issue_sent_from: "来源:"
|
||||||
|
mail_issue_from_project: "项目问题跟踪"
|
||||||
|
mail_issue_attachments: "附件:"
|
||||||
|
mail_issue_reply: "我要回复"
|
||||||
|
#end
|
||||||
|
|
||||||
field_name: 名称
|
field_name: 名称
|
||||||
#added by huang
|
#added by huang
|
||||||
field_tea_name: 教师
|
field_tea_name: 教师
|
||||||
|
@ -581,6 +596,8 @@ zh:
|
||||||
label_document_new: 新建文档
|
label_document_new: 新建文档
|
||||||
label_document_plural: 文档
|
label_document_plural: 文档
|
||||||
label_document_added: 文档已添加
|
label_document_added: 文档已添加
|
||||||
|
label_forum_message_added: 发帖成功
|
||||||
|
label_forum_add: 贴吧创建成功
|
||||||
label_document_public_info: (打钩为公开,不打钩则不公开,若不公开,仅项目成员可见该文档。)
|
label_document_public_info: (打钩为公开,不打钩则不公开,若不公开,仅项目成员可见该文档。)
|
||||||
label_role: 角色
|
label_role: 角色
|
||||||
label_role_plural: 角色
|
label_role_plural: 角色
|
||||||
|
@ -2282,4 +2299,7 @@ zh:
|
||||||
label_answer: 答案:
|
label_answer: 答案:
|
||||||
label_poll_answer_valid_result: 以上为有效问答题答案!
|
label_poll_answer_valid_result: 以上为有效问答题答案!
|
||||||
label_answer_total: 总计:
|
label_answer_total: 总计:
|
||||||
|
label_join_project: 加入项目
|
||||||
|
|
||||||
|
label_technical_support: 技术支持:
|
||||||
|
label_feedback: 意见反馈
|
||||||
|
|
|
@ -65,6 +65,8 @@ RedmineApp::Application.routes.draw do
|
||||||
post 'create_poll_question'
|
post 'create_poll_question'
|
||||||
post 'commit_poll'
|
post 'commit_poll'
|
||||||
get 'publish_poll'
|
get 'publish_poll'
|
||||||
|
get 'republish_poll'
|
||||||
|
get 'poll_result'
|
||||||
end
|
end
|
||||||
collection do
|
collection do
|
||||||
delete 'delete_poll_question'
|
delete 'delete_poll_question'
|
||||||
|
@ -375,6 +377,10 @@ RedmineApp::Application.routes.draw do
|
||||||
match 'copy', :via => [:get, :post]
|
match 'copy', :via => [:get, :post]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
collection do
|
||||||
|
match 'join_project', :via => [:get, :post]
|
||||||
|
end
|
||||||
|
|
||||||
#by young
|
#by young
|
||||||
match '/member', :to => 'projects#member', :as => 'member', :via => :get
|
match '/member', :to => 'projects#member', :as => 'member', :via => :get
|
||||||
match '/file', :to => 'projects#file', :as => 'file', :via => :get
|
match '/file', :to => 'projects#file', :as => 'file', :via => :get
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
class AddInitialProducts < ActiveRecord::Migration
|
||||||
|
def up
|
||||||
|
Forum.create(:name =>"new forum", :description => "", :topic_count => "0",
|
||||||
|
:memo_count => "0", :last_memo_id =>"0", :creator_id =>"2",
|
||||||
|
:sticky =>"0", :locked =>"0")
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def down
|
||||||
|
end
|
||||||
|
end
|
14
db/schema.rb
14
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 => 20150114022710) do
|
ActiveRecord::Schema.define(:version => 20150121030451) 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
|
||||||
|
@ -23,6 +23,18 @@ ActiveRecord::Schema.define(:version => 20150114022710) do
|
||||||
add_index "activities", ["user_id", "act_type"], :name => "index_activities_on_user_id_and_act_type"
|
add_index "activities", ["user_id", "act_type"], :name => "index_activities_on_user_id_and_act_type"
|
||||||
add_index "activities", ["user_id"], :name => "index_activities_on_user_id"
|
add_index "activities", ["user_id"], :name => "index_activities_on_user_id"
|
||||||
|
|
||||||
|
create_table "api_keys", :force => true do |t|
|
||||||
|
t.string "access_token"
|
||||||
|
t.datetime "expires_at"
|
||||||
|
t.integer "user_id"
|
||||||
|
t.boolean "active", :default => true
|
||||||
|
t.datetime "created_at", :null => false
|
||||||
|
t.datetime "updated_at", :null => false
|
||||||
|
end
|
||||||
|
|
||||||
|
add_index "api_keys", ["access_token"], :name => "index_api_keys_on_access_token"
|
||||||
|
add_index "api_keys", ["user_id"], :name => "index_api_keys_on_user_id"
|
||||||
|
|
||||||
create_table "applied_projects", :force => true do |t|
|
create_table "applied_projects", :force => true do |t|
|
||||||
t.integer "project_id", :null => false
|
t.integer "project_id", :null => false
|
||||||
t.integer "user_id", :null => false
|
t.integer "user_id", :null => false
|
||||||
|
|
|
@ -20,6 +20,8 @@ module Redmine
|
||||||
notifications << Notifiable.new('message_posted')
|
notifications << Notifiable.new('message_posted')
|
||||||
notifications << Notifiable.new('wiki_content_added')
|
notifications << Notifiable.new('wiki_content_added')
|
||||||
notifications << Notifiable.new('wiki_content_updated')
|
notifications << Notifiable.new('wiki_content_updated')
|
||||||
|
notifications << Notifiable.new('forum_add')
|
||||||
|
notifications << Notifiable.new('forum_message_added', 'forum_add')
|
||||||
notifications
|
notifications
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 9.2 KiB |
|
@ -1,4 +1,4 @@
|
||||||
body{ font-size:12px; font-family:"微软雅黑","宋体"; line-height:1.9; background:#fff; font-style:normal;}
|
#member_of_course{ 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,textarea,form{ margin:0; padding:0;}
|
div,html,img,ul,li,p,body,h1,h2,h3,h4,p,a,table,tr,td,fieldset,input,span,textarea,form{ margin:0; padding:0;}
|
||||||
div,img,tr,td,textarea,form{ border:0;}
|
div,img,tr,td,textarea,form{ border:0;}
|
||||||
table,tr,td{border:0; cellspacing:0; cellpadding:0;}
|
table,tr,td{border:0; cellspacing:0; cellpadding:0;}
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.4 KiB |
|
@ -1433,8 +1433,8 @@ ul.contest-notification-list li span{
|
||||||
}
|
}
|
||||||
|
|
||||||
.xls {
|
.xls {
|
||||||
background: url('../images/icon_excel.gif') no-repeat scroll 1px 50% transparent;
|
/*background: url('../images/icon_excel.gif') no-repeat scroll 1px 50% transparent;*/
|
||||||
padding: 2px 0px 3px 16px;
|
/*padding: 2px 0px 3px 16px;*/
|
||||||
font-family:微软雅黑 !important;
|
font-family:微软雅黑 !important;
|
||||||
font-size: 12px !important;
|
font-size: 12px !important;
|
||||||
color: #136b3b !important;
|
color: #136b3b !important;
|
||||||
|
|
|
@ -14,20 +14,20 @@ div,html,img,ul,li,p,body,h1,h2,h3,h4,p,a,table,tr,td,fieldset,input,span{ margi
|
||||||
#polls .fr{ float:right;}
|
#polls .fr{ float:right;}
|
||||||
|
|
||||||
/*问卷按钮*/
|
/*问卷按钮*/
|
||||||
.polls_btn{ height:33px;border-top:1px solid #15bed1; border-bottom:1px solid #15bed1;border-right:1px solid #cee6e6; width:225px; padding:7px 0 0 15px; }
|
/*.polls_btn{ height:33px;border-top:1px solid #15bed1; border-bottom:1px solid #15bed1;border-right:1px solid #cee6e6; width:225px; padding:7px 0 0 15px; }*/
|
||||||
.polls_btn a{font-size:14px; color:#444444;font-weight:bold;}
|
/*.polls_btn a{font-size:14px; color:#444444;font-weight:bold;}*/
|
||||||
.polls_btn span{ color:#15bed1; font-size:12px; font-weight:normal;}
|
/*.polls_btn span{ color:#15bed1; font-size:12px; font-weight:normal;}*/
|
||||||
|
|
||||||
/*问卷列表*/
|
/*问卷列表*/
|
||||||
.polls_content{ width:615px;}
|
.polls_content{ width:615px;padding-left: 6px;}
|
||||||
.polls_head{ width:677px; height:48px; background:#eaeaea;}
|
.polls_head{ width:677px; height:48px; background:#eaeaea;}
|
||||||
.polls_head h2{ float:left; font-size:14px; color:#585858; margin:11px 0 0 10px;}
|
.polls_head h2{ float:left; font-size:14px; color:#585858; margin:11px 0 0 10px;}
|
||||||
.polls_head span{ font-weight:normal; color:#15bccf;}
|
.polls_head span{ font-weight:normal; color:#15bccf;}
|
||||||
a.newbtn{ float:right; display:block; width:80px; height:30px; background:#64bdd9; color:#fff; font-size:14px; margin:10px; text-align:center;}
|
a.newbtn{ float:right; display:block; width:80px; height:30px; background:#64bdd9; color:#fff; font-size:14px; margin:10px; text-align:center;}
|
||||||
a:hover.newbtn{ background:#55a1b9; text-decoration:none;}
|
a:hover.newbtn{ background:#55a1b9; text-decoration:none;}
|
||||||
.polls_list ul{ padding-left:10px; border-bottom:1px dashed #c9c9c9; height:32px; padding-top:8px;}
|
.polls_list ul{ padding-left:10px; border-bottom:1px dashed #c9c9c9; height:32px; padding-top:8px;}
|
||||||
a.polls_title{ font-weight:bold; color:#3e6d8e;max-width: 350px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
|
a.polls_title{ font-weight:bold; color:#3e6d8e;max-width: 300px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
|
||||||
.polls_title{ font-weight:bold; color:#3e6d8e;}
|
.polls_title{ font-weight:bold; color:#3e6d8e;max-width: 300px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
|
||||||
a.pollsbtn{ display:block; width:66px; height:22px; text-align:center; border:1px solid #64bdd9; color:#64bdd9;}
|
a.pollsbtn{ display:block; width:66px; height:22px; text-align:center; border:1px solid #64bdd9; color:#64bdd9;}
|
||||||
a:hover.pollsbtn{ background:#64bdd9; color:#fff; text-decoration:none;}
|
a:hover.pollsbtn{ background:#64bdd9; color:#fff; text-decoration:none;}
|
||||||
.polls_date{ color:#666666;}
|
.polls_date{ color:#666666;}
|
||||||
|
@ -53,7 +53,7 @@ ul.wlist li a:hover{ background:#15bccf; color:#fff; text-decoration:none;}
|
||||||
.ur_inputs label{ padding-left:10px;word-break: break-all; word-wrap: break-word;}
|
.ur_inputs label{ padding-left:10px;word-break: break-all; word-wrap: break-word;}
|
||||||
.ur_inputs input{ margin-right:5px;}
|
.ur_inputs input{ margin-right:5px;}
|
||||||
.ur_text{ height:30px;}
|
.ur_text{ height:30px;}
|
||||||
.ur_textbox{ border:1px solid #dcdcdc !important; color:#676765;}
|
.ur_textbox{ border:1px solid #dcdcdc !important; color:#676765; word-break:break-all; word-wrap:break-word;}
|
||||||
.ur_buttons{ width:250px; margin:20px auto 10px;}
|
.ur_buttons{ width:250px; margin:20px auto 10px;}
|
||||||
a.ur_button{ display:block; width:106px; height:37px; background:#15bccf; color:#fff; font-size:16px; text-align:center; padding-top:3px; float:left; margin-right:15px;}
|
a.ur_button{ display:block; width:106px; height:37px; background:#15bccf; color:#fff; font-size:16px; text-align:center; padding-top:3px; float:left; margin-right:15px;}
|
||||||
a:hover.ur_button{ background:#0fa9bb; text-decoration:none;}
|
a:hover.ur_button{ background:#0fa9bb; text-decoration:none;}
|
||||||
|
@ -134,3 +134,14 @@ a:hover.upload_btn_grey{background:#8a8a8a;}
|
||||||
.upload_con a:hover{ text-decoration:none;}
|
.upload_con a:hover{ text-decoration:none;}
|
||||||
.polls_btn_box{ width:145px; margin:0 auto; padding-left:10px;}
|
.polls_btn_box{ width:145px; margin:0 auto; padding-left:10px;}
|
||||||
.polls_btn_box02{ width:80px; margin:0 auto; padding-left:10px;}
|
.polls_btn_box02{ width:80px; margin:0 auto; padding-left:10px;}
|
||||||
|
|
||||||
|
/***新增20150120***/
|
||||||
|
.pollsbtn_tip{ width:30px; height:17px; display:block;background:url(images/icons.png) 0 -372px no-repeat;padding-left:7px; color:#fff;}
|
||||||
|
a.btn_de{ border:1px solid #ff5d31; color:#ff5d31; }
|
||||||
|
a:hover.btn_de{ background:#ff5d31;}
|
||||||
|
a.btn_pu{ border:1px solid #3cb761; color:#3cb761; }
|
||||||
|
a:hover.btn_pu{ background:#3cb761;}
|
||||||
|
.pollsbtn_grey{ border:1px solid #b1b1b1; color:#b1b1b1; padding:0px 9px; }
|
||||||
|
.polls_title_w { width:330px; overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
|
||||||
|
.polls_de_grey{ color:#b1b1b1;}
|
||||||
|
.ml5{ margin-left:5px;}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe ForumObserver do
|
||||||
|
pending "add some examples to (or delete) #{__FILE__}"
|
||||||
|
end
|
|
@ -0,0 +1,5 @@
|
||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe MemoObserver do
|
||||||
|
pending "add some examples to (or delete) #{__FILE__}"
|
||||||
|
end
|
Loading…
Reference in New Issue