修复bug#2180:课程资源库:成功引入资源后,“选人我的课程”未自动刷新为“选入我的其他课程”
This commit is contained in:
parent
fa563b60d5
commit
a35abf1f1f
|
@ -23,7 +23,7 @@ class FilesController < ApplicationController
|
||||||
before_filter :auth_login1, :only => [:index]
|
before_filter :auth_login1, :only => [:index]
|
||||||
before_filter :logged_user_by_apptoken,:only => [:index]
|
before_filter :logged_user_by_apptoken,:only => [:index]
|
||||||
before_filter :find_project_by_project_id#, :except => [:getattachtype]
|
before_filter :find_project_by_project_id#, :except => [:getattachtype]
|
||||||
before_filter :authorize, :except => [:getattachtype,:quote_resource_show,:search,:search_project,:quote_resource_show_project,:search_tag_attachment]
|
before_filter :authorize, :except => [:getattachtype,:quote_resource_show,:search,:searchone4reload,:search_project,:quote_resource_show_project,:search_tag_attachment]
|
||||||
|
|
||||||
helper :sort
|
helper :sort
|
||||||
include SortHelper
|
include SortHelper
|
||||||
|
@ -46,6 +46,13 @@ class FilesController < ApplicationController
|
||||||
@obj_attachments = paginateHelper @all_attachments,10
|
@obj_attachments = paginateHelper @all_attachments,10
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def searchone4reload
|
||||||
|
attachment = Attachment.find_by_id(params[:fileid]);
|
||||||
|
respond_to do |format|
|
||||||
|
format.html{render :layout => nil,:locals=>{:file=>attachment,:course=>@course}}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def search
|
def search
|
||||||
sort = ""
|
sort = ""
|
||||||
@sort = ""
|
@sort = ""
|
||||||
|
|
|
@ -4,4 +4,5 @@
|
||||||
$("#error_show").html("<%= @message.html_safe %>");
|
$("#error_show").html("<%= @message.html_safe %>");
|
||||||
<% else %>
|
<% else %>
|
||||||
closeModal();
|
closeModal();
|
||||||
|
searchone4reload('<%=params[:file_id]%>');
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -1,4 +1,15 @@
|
||||||
<script>
|
<script>
|
||||||
|
function searchone4reload(fileid){
|
||||||
|
var url = "<%= searchone4reload_course_files_path(@course)%>";
|
||||||
|
var data = {};data.fileid=fileid;
|
||||||
|
$.ajax({
|
||||||
|
url:url,dataType:'text',data:data,success:function(text){
|
||||||
|
var container_file_div = $("#container_files_"+fileid);
|
||||||
|
container_file_div.after(text);
|
||||||
|
container_file_div.remove();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
function show_upload(obj)
|
function show_upload(obj)
|
||||||
{
|
{
|
||||||
switch(obj)
|
switch(obj)
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
<div class="for_img_thumbnails">
|
<div class="for_img_thumbnails">
|
||||||
<% curse_attachments.each do |file| %>
|
<% curse_attachments.each do |file| %>
|
||||||
<% if file.is_public? || User.current.member_of_course?(course) %>
|
<% if file.is_public? || User.current.member_of_course?(course) %>
|
||||||
<div class="re_con_box">
|
<div class="re_con_box" id="container_files_<%= file.id %>">
|
||||||
<div class="">
|
<div class="">
|
||||||
<%= link_to_attachment file, :download => true,:text => truncate(file.filename,length: 35, omission: '...'), :title => file.filename+"\n"+file.description.to_s,:class => "c_dblue f_14 f_b f_l hiddent" %>
|
<%= link_to_attachment file, :download => true,:text => truncate(file.filename,length: 35, omission: '...'), :title => file.filename+"\n"+file.description.to_s,:class => "c_dblue f_14 f_b f_l hiddent" %>
|
||||||
<% if User.current.logged? %>
|
<% if User.current.logged? %>
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
<% delete_allowed = User.current.allowed_to?(:manage_files, course) %>
|
||||||
|
<% if file.is_public? || User.current.member_of_course?(course) %>
|
||||||
|
<div class="re_con_box" id="container_files_<%= file.id %>">
|
||||||
|
<div class="">
|
||||||
|
<%= link_to_attachment file, :download => true,:text => truncate(file.filename,length: 35, omission: '...'), :title => file.filename+"\n"+file.description.to_s,:class => "c_dblue f_14 f_b f_l hiddent" %>
|
||||||
|
<% if User.current.logged? %>
|
||||||
|
<% if (is_course_teacher(User.current,@course) || file.author_id == User.current.id) && course_contains_attachment?(@course,file) %>
|
||||||
|
<%= link_to("选入我的其他课程",quote_resource_show_course_file_path(@course,file),:class => "f_l re_select c_lorange",:remote => true) if has_course?(User.current,file) %>
|
||||||
|
|
||||||
|
<% if delete_allowed && file.container_id == @course.id && file.container_type == "Course" %>
|
||||||
|
<span id="is_public_<%= file.id %>">
|
||||||
|
<%= link_to (file.is_public? ? "公开":"私有"), update_file_dense_attachments_path(:attachmentid=>file.id,:newtype=>(file.is_public? ? 0:1)),:remote=>true,:class=>"f_l re_open c_blue",:method => :post %>
|
||||||
|
</span>
|
||||||
|
<% else %>
|
||||||
|
<!-- <#%= link_to (file.is_public? ? "公开":"私有"),"javascript:void(0)",:class=>"f_l re_open" %> -->
|
||||||
|
<% end %>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to("选入我的课程",quote_resource_show_course_file_path(@course,file),:class => "f_l re_select c_lorange",:remote => true) if has_course?(User.current,file) %>
|
||||||
|
<% end %>
|
||||||
|
<% else %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="">
|
||||||
|
<p class="f_l mb5 c_grey02">文件大小:<%= number_to_human_size(file.filesize) %></p>
|
||||||
|
<%= link_to( l(:button_delete), attachment_path(file),
|
||||||
|
:data => {:confirm => l(:text_are_you_sure)}, :method => :delete,:class => "f_r re_de") if delete_allowed && file.container_id == @course.id && file.container_type == "Course"%>
|
||||||
|
<p class="f_r c_grey02" ><%= time_tag(file.created_on).html_safe %><%= l(:label_bids_published_ago) %> | 下载<%= file.downloads %> | 引用<%= file.quotes.nil? ? 0:file.quotes %> </p>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
<div class="tag_h">
|
||||||
|
<%= render :partial => 'tags/tag_new', :locals => {:obj => file, :object_flag => "6",:tag_name => @tag_name} %>
|
||||||
|
<%= render :partial => 'tags/tag_add', :locals => {:obj => file, :object_flag => "6",:tag_name => @tag_name} %>
|
||||||
|
</div>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div><!---re_con_box end-->
|
||||||
|
<% else %>
|
||||||
|
<div class="re_con_box"><span class='fr mr10 pr_join_span '><%= file.filename %>是私有资源</span></div>
|
||||||
|
<% end %>
|
|
@ -715,6 +715,7 @@ RedmineApp::Application.routes.draw do
|
||||||
collection do
|
collection do
|
||||||
match "getattachtype", :via => [:get, :post]
|
match "getattachtype", :via => [:get, :post]
|
||||||
match "search",:via => [:post,:get]
|
match "search",:via => [:post,:get]
|
||||||
|
match "searchone4reload",:via => [:post,:get]
|
||||||
match "search_tag_attachment", :via => [:post,:get]
|
match "search_tag_attachment", :via => [:post,:get]
|
||||||
end
|
end
|
||||||
member do
|
member do
|
||||||
|
|
Loading…
Reference in New Issue