Merge remote-tracking branch 'origin/szzh' into szzh
This commit is contained in:
commit
9ae8494c97
|
@ -52,6 +52,11 @@ class FilesController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
|
if params[:tag_name]
|
||||||
|
tag_saveEx
|
||||||
|
render :text =>"success"
|
||||||
|
else
|
||||||
|
@addTag=false
|
||||||
container = (params[:version_id].blank? ? @project : @project.versions.find_by_id(params[:version_id]))
|
container = (params[:version_id].blank? ? @project : @project.versions.find_by_id(params[:version_id]))
|
||||||
attachments = Attachment.attach_filesex(container, params[:attachments],params[:attachment_type])
|
attachments = Attachment.attach_filesex(container, params[:attachments],params[:attachment_type])
|
||||||
render_attachment_warning_if_needed(container)
|
render_attachment_warning_if_needed(container)
|
||||||
|
@ -61,6 +66,44 @@ class FilesController < ApplicationController
|
||||||
end
|
end
|
||||||
redirect_to project_files_path(@project)
|
redirect_to project_files_path(@project)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def tag_saveEx
|
||||||
|
@tags = params[:tag_name][:name]
|
||||||
|
@obj_id = params[:object_id]
|
||||||
|
@obj_flag = params[:object_flag]
|
||||||
|
|
||||||
|
case @obj_flag
|
||||||
|
when '1' then
|
||||||
|
@obj = User.find_by_id(@obj_id)
|
||||||
|
when '2' then
|
||||||
|
@obj = Project.find_by_id(@obj_id)
|
||||||
|
when '3' then
|
||||||
|
@obj = Issue.find_by_id(@obj_id)
|
||||||
|
when '4' then
|
||||||
|
@obj = Bid.find_by_id(@obj_id)
|
||||||
|
when '5' then
|
||||||
|
@obj = Forum.find_by_id(@obj_id)
|
||||||
|
when '6'
|
||||||
|
@obj = Attachment.find_by_id(@obj_id)
|
||||||
|
when '7' then
|
||||||
|
@obj = Contest.find_by_id(@obj_id)
|
||||||
|
when '8'
|
||||||
|
@obj = OpenSourceProject.find_by_id(@obj_id)
|
||||||
|
else
|
||||||
|
@obj = nil
|
||||||
|
end
|
||||||
|
unless @obj.nil?
|
||||||
|
@obj.tag_list.add(@tags.split(","))
|
||||||
|
else
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if @obj.save
|
||||||
|
## 执行成功的操作。
|
||||||
|
else
|
||||||
|
#捕获异常
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# 返回制定资源类型的资源列表
|
# 返回制定资源类型的资源列表
|
||||||
def getattachtype
|
def getattachtype
|
||||||
|
|
|
@ -30,7 +30,7 @@ class UsersController < ApplicationController
|
||||||
#Ended by young
|
#Ended by young
|
||||||
|
|
||||||
|
|
||||||
before_filter :require_admin, :except => [:show, :index, :search, :tag_save, :user_projects, :user_newfeedback, :user_comments, :watch_bids, :watch_contests, :info,
|
before_filter :require_admin, :except => [:show, :index, :search, :tag_save, :tag_saveEx,:user_projects, :user_newfeedback, :user_comments, :watch_bids, :watch_contests, :info,
|
||||||
:user_watchlist, :user_fanslist,:update, :user_courses, :user_homeworks, :watch_projects, :show_score, :topic_score_index, :project_score_index,
|
:user_watchlist, :user_fanslist,:update, :user_courses, :user_homeworks, :watch_projects, :show_score, :topic_score_index, :project_score_index,
|
||||||
:activity_score_index, :influence_score_index, :score_index]
|
:activity_score_index, :influence_score_index, :score_index]
|
||||||
#edit has been deleted by huang, 2013-9-23
|
#edit has been deleted by huang, 2013-9-23
|
||||||
|
@ -39,10 +39,10 @@ class UsersController < ApplicationController
|
||||||
:watch_bids, :watch_contests, :info, :watch_projects, :show_score, :topic_score_index, :project_score_index,
|
:watch_bids, :watch_contests, :info, :watch_projects, :show_score, :topic_score_index, :project_score_index,
|
||||||
:activity_score_index, :influence_score_index, :score_index]
|
:activity_score_index, :influence_score_index, :score_index]
|
||||||
before_filter :auth_user_extension, only: :show
|
before_filter :auth_user_extension, only: :show
|
||||||
accept_api_auth :index, :show, :create, :update, :destroy,:tag_save
|
accept_api_auth :index, :show, :create, :update, :destroy,:tag_save , :tag_saveEx
|
||||||
|
|
||||||
#william
|
#william
|
||||||
before_filter :require_login, :only => :tag_save
|
before_filter :require_login, :only => [:tag_save,:tag_saveEx]
|
||||||
|
|
||||||
|
|
||||||
helper :sort
|
helper :sort
|
||||||
|
@ -209,6 +209,8 @@ class UsersController < ApplicationController
|
||||||
## 判断课程是否过期 [需封装]
|
## 判断课程是否过期 [需封装]
|
||||||
@memberships_doing = []
|
@memberships_doing = []
|
||||||
@memberships_done = []
|
@memberships_done = []
|
||||||
|
@OwningCouses =[]
|
||||||
|
@JoinCouses=[]
|
||||||
now_time = Time.now.year
|
now_time = Time.now.year
|
||||||
@memberships.map { |e|
|
@memberships.map { |e|
|
||||||
end_time = e.project.course_extra.get_time.year
|
end_time = e.project.course_extra.get_time.year
|
||||||
|
@ -218,6 +220,12 @@ class UsersController < ApplicationController
|
||||||
else
|
else
|
||||||
@memberships_doing.push e
|
@memberships_doing.push e
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if e.project.course_extra.tea_id == User.current.id
|
||||||
|
@OwningCouses.push e
|
||||||
|
else
|
||||||
|
@JoinCouses.push e
|
||||||
|
end
|
||||||
}
|
}
|
||||||
# respond_to do |format|
|
# respond_to do |format|
|
||||||
# format.html
|
# format.html
|
||||||
|
@ -683,11 +691,51 @@ class UsersController < ApplicationController
|
||||||
#捕获异常
|
#捕获异常
|
||||||
end
|
end
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html
|
|
||||||
format.js
|
format.js
|
||||||
|
format.html
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def tag_saveEx
|
||||||
|
@tags = params[:tag_name][:name]
|
||||||
|
@obj_id = params[:obj_id]
|
||||||
|
@obj_flag = params[:obj_flag]
|
||||||
|
|
||||||
|
case @obj_flag
|
||||||
|
when '1' then
|
||||||
|
@obj = User.find_by_id(@obj_id)
|
||||||
|
when '2' then
|
||||||
|
@obj = Project.find_by_id(@obj_id)
|
||||||
|
when '3' then
|
||||||
|
@obj = Issue.find_by_id(@obj_id)
|
||||||
|
when '4' then
|
||||||
|
@obj = Bid.find_by_id(@obj_id)
|
||||||
|
when '5' then
|
||||||
|
@obj = Forum.find_by_id(@obj_id)
|
||||||
|
when '6'
|
||||||
|
@obj = Attachment.find_by_id(@obj_id)
|
||||||
|
when '7' then
|
||||||
|
@obj = Contest.find_by_id(@obj_id)
|
||||||
|
when '8'
|
||||||
|
@obj = OpenSourceProject.find_by_id(@obj_id)
|
||||||
|
else
|
||||||
|
@obj = nil
|
||||||
|
end
|
||||||
|
unless @obj.nil?
|
||||||
|
@obj.tag_list.add(@tags.split(","))
|
||||||
|
else
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if @obj.save
|
||||||
|
## 执行成功的操作。
|
||||||
|
else
|
||||||
|
#捕获异常
|
||||||
|
end
|
||||||
|
respond_to do |format|
|
||||||
|
format.js
|
||||||
|
format.html
|
||||||
|
end
|
||||||
|
end
|
||||||
###add by huang
|
###add by huang
|
||||||
def user_watchlist
|
def user_watchlist
|
||||||
end
|
end
|
||||||
|
|
|
@ -12,5 +12,6 @@ fileSpan.find('a.remove-upload')
|
||||||
})
|
})
|
||||||
.off('click');
|
.off('click');
|
||||||
var divattach = fileSpan.find('div.div_attachments');
|
var divattach = fileSpan.find('div.div_attachments');
|
||||||
divattach.html('<%= j(render :partial => 'tags/tag', :locals => {:obj => @attachment, :object_flag => "6"})%>');
|
divattach.html('<%#= j(render :partial => 'tags/tagEx', :locals => {:obj => @attachment, :object_flag => "6"})%>');
|
||||||
|
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -2,9 +2,8 @@
|
||||||
<% versions = project.versions.sort %>
|
<% versions = project.versions.sort %>
|
||||||
<% attachmenttypes = project.attachmenttypes %>
|
<% attachmenttypes = project.attachmenttypes %>
|
||||||
<%= error_messages_for 'attachment' %>
|
<%= error_messages_for 'attachment' %>
|
||||||
<%= form_tag(project_files_path(project), :multipart => true, :class => "tabular") do %>
|
<%= form_tag(project_files_path(project), :multipart => true,:name=>"upload_form", :class => "tabular") do %>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -35,3 +34,25 @@
|
||||||
<%= submit_tag l(:button_add) %>
|
<%= submit_tag l(:button_add) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<div class="line_under" style="margin:20px 0px;"></div>
|
<div class="line_under" style="margin:20px 0px;"></div>
|
||||||
|
|
||||||
|
<script type='text/javascript'>
|
||||||
|
function tagAddClick(id,objId,objTag)
|
||||||
|
{
|
||||||
|
alert("OK");
|
||||||
|
$.ajax({
|
||||||
|
type :"POST",
|
||||||
|
url :'<%= users_tag_saveEx_path%>',
|
||||||
|
data: {
|
||||||
|
tagname: $('tag_name').value,
|
||||||
|
obj_id: encodeURIComponent(objId),
|
||||||
|
obj_flag:encodeURIComponent(objTag)
|
||||||
|
},
|
||||||
|
success: function(data, textStatus){
|
||||||
|
alert("OK");
|
||||||
|
$(id).empty();
|
||||||
|
$(id).html('123');
|
||||||
|
$("#" + id + " #name").val("");
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
<div id="upload_file_div" class="relation_file_div hidden">
|
<div id="upload_file_div" class="relation_file_div hidden">
|
||||||
<%= render :partial => 'new', locals: {project: @project} %>
|
<%= render :partial => 'new', locals: {project: @project} %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="relation_file_div" class="relation_file_div hidden">
|
<div id="relation_file_div" class="relation_file_div hidden">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>搜索</legend>
|
<legend>搜索</legend>
|
||||||
|
@ -186,3 +187,26 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<script type='text/javascript'>
|
||||||
|
function tagAddClick(divid,objId,objTag)
|
||||||
|
{
|
||||||
|
alert("OK");
|
||||||
|
$.ajax({
|
||||||
|
type :"POST",
|
||||||
|
url :'/users/tag_saveEx',
|
||||||
|
data: {
|
||||||
|
tagname: $('tag_name').value,
|
||||||
|
obj_id: encodeURIComponent(objId),
|
||||||
|
obj_flag:encodeURIComponent(objTag)
|
||||||
|
},
|
||||||
|
success: function(data, textStatus){
|
||||||
|
alert("OK");
|
||||||
|
$(divid).empty();
|
||||||
|
$(divid).html('123');
|
||||||
|
$("#" + divid + " #name").val("");
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
<%= render :partial => "tags/tag_name",:locals => {:obj => obj,:non_list_all => false ,:object_flag => object_flag} %>
|
<%= render :partial => "tags/tag_name",:locals => {:obj => obj,:non_list_all => false ,:object_flag => object_flag} %>
|
||||||
</div>
|
</div>
|
||||||
<div id="put-tag-form-<%=obj.class%>-<%=obj.id%>" style="display: none">
|
<div id="put-tag-form-<%=obj.class%>-<%=obj.id%>" style="display: none">
|
||||||
<%= form_for "tag_for_save",:remote=>true,:url=>tag_path,
|
<%= form_for "tag_for_save",:remote=>true,:header=>"Accept: application/javascript",:url=>tag_path,
|
||||||
:update => "tags_show",
|
:update => "tags_show",
|
||||||
:complete => "$(\"#put-tag-form-#{obj.class}-#{obj.id}\").hide();" do |f| %>
|
:complete => "$(\"#put-tag-form-#{obj.class}-#{obj.id}\").hide();" do |f| %>
|
||||||
<%= f.text_field :name ,:id => "name",:size=>"28",:require=>true,:maxlength => Setting.tags_max_length,:minlength=>Setting.tags_min_length,:style=>"width: 100px;"%>
|
<%= f.text_field :name ,:id => "name",:size=>"28",:require=>true,:maxlength => Setting.tags_max_length,:minlength=>Setting.tags_min_length,:style=>"width: 100px;"%>
|
||||||
|
|
|
@ -0,0 +1,165 @@
|
||||||
|
<script>
|
||||||
|
window.onload=function (){
|
||||||
|
$('#upload_form').submit(function() {
|
||||||
|
$(this).ajaxSubmit( {
|
||||||
|
target : '#tags_show'
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div id="tags">
|
||||||
|
<%#begin
|
||||||
|
1 代表是user类型
|
||||||
|
2 代表是project类型
|
||||||
|
3 代表是issue类型
|
||||||
|
4 代表是bid类型
|
||||||
|
5 代表是forum类型
|
||||||
|
6 代表是Attachment类型
|
||||||
|
7 代表是contest类型
|
||||||
|
8 代表是OpenSourceProject类型
|
||||||
|
9 代表是RelativeMemo类型
|
||||||
|
#end%>
|
||||||
|
<!-- 3 代表的是issue 当是issue是 处理方式与前2个对象不同 -->
|
||||||
|
<% if object_flag == '3' %>
|
||||||
|
<span><%= image_tag("/images/sidebar/tags.png") %></span>
|
||||||
|
<span class="font_title_tag"><%= l(:label_tag) %>:</span>
|
||||||
|
<% if User.current.logged? %>
|
||||||
|
<span> <%= toggle_link (image_tag "/images/sidebar/add.png"), 'put-tag-form-issue', {:focus => 'name-issue'} %></span>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<div id="tags_show_issue">
|
||||||
|
<%= render :partial => "tags/tag_name",:locals => {:obj => obj,:non_list_all => false ,:object_flag => object_flag} %>
|
||||||
|
</div>
|
||||||
|
<div id="put-tag-form-issue" style="display: none">
|
||||||
|
<%= form_for "tag_for_save",:remote=>true,:url=>tag_path,
|
||||||
|
:update => "tags_show",
|
||||||
|
:complete => '$("#put-tag-form-issue").hide();' do |f| %>
|
||||||
|
<%= f.text_field :name ,:id => "name-issue",:size=>"30",:require=>true,:maxlength => Setting.tags_max_length,:minlength=>1 %>
|
||||||
|
<%= f.text_field :object_id,:value=> obj.id,:style=>"display:none"%>
|
||||||
|
<%= f.text_field :object_flag,:value=> object_flag,:style=>"display:none"%>
|
||||||
|
<%= f.submit l(:button_project_tags_add),:class => "small"%>
|
||||||
|
<%= link_to_function l(:button_cancel), '$("#put-tag-form-issue").hide();'%>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<% elsif object_flag == '6' %>
|
||||||
|
<span><%#= image_tag("/images/sidebar/tags.png") %></span>
|
||||||
|
<span>
|
||||||
|
<%= link_to (image_tag "/images/sidebar/add.png"), 'javascript:void(0);', :class => "tags_icona", :onclick=>"$('#put-tag-form-#{obj.class}-#{obj.id}').toggle(); readmore(this);" if User.current.logged? %>
|
||||||
|
<%#= toggle_link (image_tag "/images/sidebar/add.png"), "put-tag-form-#{obj.class}-#{obj.id}", {:focus => "put-tag-form-#{obj.class}-#{obj.id} #name"} if User.current.logged? %>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
<div id="tags_show">
|
||||||
|
<div id="tags_show-<%=obj.class%>-<%=obj.id%>" style="display:inline; ">
|
||||||
|
<%= render :partial => "tags/tag_name",:locals => {:obj => obj,:non_list_all => false ,:object_flag => object_flag} %>
|
||||||
|
</div>
|
||||||
|
<div id="put-tag-form-<%=obj.class%>-<%=obj.id%>" style="display: none">
|
||||||
|
<%= text_field "tag_name" ,"name"%>
|
||||||
|
<input id="object_id" type="text" size="20" name="object_id" value='<%=obj.id%>' class="hidden">
|
||||||
|
<input id="object_flag" type="text" size="20" name="object_flag" value='<%=object_flag%>' class="hidden">
|
||||||
|
<%= button_tag "增加", :type=>"button", :onclick=>"tagAddClick(tags_show-"+obj.class.to_s + "-" +obj.id.to_s + ","+ obj.id.to_s + "," + object_flag.to_s + ")" %>
|
||||||
|
<%#= f.text_field :object_id,:value=> obj.id,:style=>"display:none"%>
|
||||||
|
<%#= f.text_field :object_flag,:value=> object_flag,:style=>"display:none"%>
|
||||||
|
<input type="image" name="button" onclick="submitForm('<%=obj.id%>,<%=object_flag%>')" src="/commit.png"/>
|
||||||
|
<%= submit_tag "增加", :name=>"add_tag" %>
|
||||||
|
<div class='hidden'>
|
||||||
|
<% preTags = @preTags.nil? ? [] : @preTags %>
|
||||||
|
<% preTags.each do |tag|%>
|
||||||
|
<%= link_to tag, "
|
||||||
|
javascript:(function(){
|
||||||
|
var $tagInputVal = $('#put-tag-form-"+obj.class.to_s+"-"+obj.id.to_s+"').find('#name');
|
||||||
|
var tagArr = [];
|
||||||
|
tagArr = tagArr.concat( $tagInputVal[0].value.split(',') );
|
||||||
|
tagArr = tagArr.concat('"+tag.to_s+"');
|
||||||
|
tagArr = cleanArray(tagArr);
|
||||||
|
$tagInputVal.val(tagArr.join(','));
|
||||||
|
})();
|
||||||
|
"
|
||||||
|
%>
|
||||||
|
<% end%>
|
||||||
|
</div>
|
||||||
|
<%#= link_to_function l(:button_cancel), "$(\"#put-tag-form-#{obj.class}-#{obj.id}\").hide();"%>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<% else %>
|
||||||
|
|
||||||
|
<span><%= image_tag("/images/sidebar/tags.png") %></span>
|
||||||
|
<span class="font_title_tag"><%= l(:label_tag) %>:</span>
|
||||||
|
|
||||||
|
<% if User.current.logged? %>
|
||||||
|
<span><%= toggle_link (image_tag "/images/sidebar/add.png"), 'put-tag-form', {:focus => 'name'} %></span>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<div id="tags_show">
|
||||||
|
<%= render :partial => "tags/tag_name",:locals => {:obj => obj,:non_list_all => false ,:object_flag => object_flag} %>
|
||||||
|
</div>
|
||||||
|
<div id="put-tag-form" style="display: none">
|
||||||
|
|
||||||
|
<%= form_for "tag_for_save",:remote=>true,:url=>tag_path,
|
||||||
|
:update => "tags_show",
|
||||||
|
:complete => '$("#put-tag-form").hide();' do |f| %>
|
||||||
|
<%= f.text_field :name ,:id => "name",:size=>"28",:require=>true,:maxlength => Setting.tags_max_length,:minlength=>Setting.tags_min_length %>
|
||||||
|
<%= f.text_field :object_id,:value=> obj.id,:style=>"display:none"%>
|
||||||
|
<%= f.text_field :object_flag,:value=> object_flag,:style=>"display:none"%>
|
||||||
|
<%= f.submit l(:button_project_tags_add),:class => "small" %>
|
||||||
|
<%= link_to_function l(:button_cancel), '$("#put-tag-form").hide();'%>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<script language="JavaScript">
|
||||||
|
function submitForm(objId,objTag){
|
||||||
|
alert("OK");
|
||||||
|
$.ajax({
|
||||||
|
type :"POST",
|
||||||
|
url :'<%= users_tag_saveEx_path%>',
|
||||||
|
data: {
|
||||||
|
tagname: $('tag_name').value,
|
||||||
|
obj_id: encodeURIComponent(objId),
|
||||||
|
obj_flag:encodeURIComponent(objTag)
|
||||||
|
},
|
||||||
|
success: function(data, textStatus){
|
||||||
|
alert("OK");
|
||||||
|
$(id).empty();
|
||||||
|
$(id).html('123');
|
||||||
|
$("#" + id + " #name").val("");
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
function eval_ajax (xhr, textStatus) {
|
||||||
|
if (textStatus == 'success') {
|
||||||
|
eval(xhr.responseText);
|
||||||
|
} else if (textStatus == 'error') {
|
||||||
|
alert('error');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script type='text/javascript'>
|
||||||
|
function tagAddClick(id,objId,objTag)
|
||||||
|
{
|
||||||
|
alert("OK");
|
||||||
|
$.ajax({
|
||||||
|
type :"POST",
|
||||||
|
url :'<%= users_tag_saveEx_path%>',
|
||||||
|
data: {
|
||||||
|
tagname: $('tag_name').value,
|
||||||
|
obj_id: encodeURIComponent(objId),
|
||||||
|
obj_flag:encodeURIComponent(objTag)
|
||||||
|
},
|
||||||
|
success: function(data, textStatus){
|
||||||
|
alert("OK");
|
||||||
|
$(id).empty();
|
||||||
|
$(id).html('123');
|
||||||
|
$("#" + id + " #name").val("");
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -26,7 +26,7 @@
|
||||||
<%= l(:label_homework) %> (<span class=""><%= link_to (membership.project.homeworks.count), {:controller => 'projects', :action => 'homework', :id => membership.project.identifier} %></span>)
|
<%= l(:label_homework) %> (<span class=""><%= link_to (membership.project.homeworks.count), {:controller => 'projects', :action => 'homework', :id => membership.project.identifier} %></span>)
|
||||||
|
|
||||||
<%= l(:label_course_news)%> (<span style="color: #ed8924"><%= link_to (membership.project.news.count), {:controller => 'news', :action => 'index', :project_id => membership.project.identifier} %></span>)
|
<%= l(:label_course_news)%> (<span style="color: #ed8924"><%= link_to (membership.project.news.count), {:controller => 'news', :action => 'index', :project_id => membership.project.identifier} %></span>)
|
||||||
</td>
|
</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" width="580" >
|
<td colspan="2" width="580" >
|
||||||
|
|
|
@ -15,9 +15,14 @@
|
||||||
<span><%=l(:label_course_doing)%>(<%=@memberships_doing.count%>)</span>
|
<span><%=l(:label_course_doing)%>(<%=@memberships_doing.count%>)</span>
|
||||||
<%= link_to"#{l(:label_course_new)}",{:controller=>'projects',:action=>'new', :course => 1, :project_type => 1}, :class => 'icon icon-add' if @user == User.current %>
|
<%= link_to"#{l(:label_course_new)}",{:controller=>'projects',:action=>'new', :course => 1, :project_type => 1}, :class => 'icon icon-add' if @user == User.current %>
|
||||||
</p>
|
</p>
|
||||||
<div>
|
<p>
|
||||||
<%= render :partial => 'course_form', :locals => {:memberships => @memberships_doing}%>
|
<%= l(:label_created_course) %>
|
||||||
</div>
|
<div> <%= render :partial => 'course_form', :locals => {:memberships => @OwningCouses}%>
|
||||||
|
</div> </p>
|
||||||
|
<div style="clear:both;"></div>
|
||||||
|
<p> <%= l(:label_joined_course) %>
|
||||||
|
<div> <%= render :partial => 'course_form', :locals => {:memberships => @JoinCouses}%>
|
||||||
|
</div> </p>
|
||||||
|
|
||||||
<div style="clear:both;"></div>
|
<div style="clear:both;"></div>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
<% if @obj_flag == '3'%>
|
||||||
|
|
||||||
|
$('#tags_show_issue').html('<%= escape_javascript(render :partial => 'tags/tag_name',
|
||||||
|
:locals => {:obj => @obj,:non_list_all => false,:object_flag => @obj_flag}) %>');
|
||||||
|
//$('#put-tag-form-issue').hide();
|
||||||
|
$('#name-issue').val("");
|
||||||
|
<% elsif @obj_flag == '6'%>
|
||||||
|
$("#tags_show-<%=@obj.class%>-<%=@obj.id%>").empty();
|
||||||
|
$("#tags_show-<%=@obj.class%>-<%=@obj.id%>").html('<%= escape_javascript(render :partial => 'tags/tag_name',
|
||||||
|
:locals => {:obj => @obj,:non_list_all => false,:object_flag => @obj_flag}) %>');
|
||||||
|
//$("#put-tag-form-<%=@obj.class%>-<%=@obj.id%>").hide();
|
||||||
|
$("#put-tag-form-<%=@obj.class%>-<%=@obj.id%> #name").val("");
|
||||||
|
<% else %>
|
||||||
|
|
||||||
|
$('#tags_show').html('<%= escape_javascript(render :partial => 'tags/tag_name',
|
||||||
|
:locals => {:obj => @obj,:non_list_all => false,:object_flag => @obj_flag}) %>');
|
||||||
|
$('#put-tag-form #name').val("");
|
||||||
|
//$('#put-tag-form').hide();
|
||||||
|
<% end %>
|
||||||
|
|
|
@ -1122,6 +1122,8 @@ en:
|
||||||
label_activities_settings: Display settings
|
label_activities_settings: Display settings
|
||||||
#end
|
#end
|
||||||
|
|
||||||
|
label_joined_course: Joined Courses
|
||||||
|
label_created_course: Created Courses
|
||||||
|
|
||||||
#huang
|
#huang
|
||||||
label_file_new: Download
|
label_file_new: Download
|
||||||
|
|
|
@ -1671,6 +1671,8 @@ zh:
|
||||||
|
|
||||||
#end
|
#end
|
||||||
|
|
||||||
|
label_joined_course: 参加的课程
|
||||||
|
label_created_course: 创建的课程
|
||||||
label_course: 课程
|
label_course: 课程
|
||||||
label_course_new: 新建课程
|
label_course_new: 新建课程
|
||||||
label_course_join_student: 加入课程
|
label_course_join_student: 加入课程
|
||||||
|
|
|
@ -232,6 +232,7 @@ RedmineApp::Application.routes.draw do
|
||||||
match 'users/:id/memberships', :to => 'users#edit_membership', :via => :post, :as => 'user_memberships'
|
match 'users/:id/memberships', :to => 'users#edit_membership', :via => :post, :as => 'user_memberships'
|
||||||
################# added by william
|
################# added by william
|
||||||
match 'users/tag_save', :to => 'users#tag_save', :via => :post, :as => 'tag'
|
match 'users/tag_save', :to => 'users#tag_save', :via => :post, :as => 'tag'
|
||||||
|
match 'users/tag_saveEx', :to => 'users#tag_saveEx', :via => :post
|
||||||
|
|
||||||
post 'watchers/watch', :to => 'watchers#watch', :as => 'watch'
|
post 'watchers/watch', :to => 'watchers#watch', :as => 'watch'
|
||||||
delete 'watchers/watch', :to => 'watchers#unwatch'
|
delete 'watchers/watch', :to => 'watchers#unwatch'
|
||||||
|
|
Loading…
Reference in New Issue