2016-01-29 16:55:07 +08:00
|
|
|
<%= import_ke(enable_at: true, prettify: false, init_activity: true) %>
|
2016-01-07 15:58:22 +08:00
|
|
|
<script>
|
2016-03-18 10:05:31 +08:00
|
|
|
var onUserCard = false;
|
|
|
|
var onImage = false;
|
2016-01-07 15:58:22 +08:00
|
|
|
$(document).ready(function(){
|
|
|
|
$("#relateProject,.relatePInfo").mouseover(function(){
|
|
|
|
$(".relatePInfo").css("display","block");
|
|
|
|
})
|
|
|
|
$("#relateProject,.relatePInfo").mouseout(function(){
|
|
|
|
$(".relatePInfo").css("display","none");
|
|
|
|
})
|
|
|
|
$(".homepagePostPortrait").mouseover(function(){
|
2016-03-18 10:05:31 +08:00
|
|
|
onImage = true;
|
2016-01-07 15:58:22 +08:00
|
|
|
$(this).children(".userCard").css("display","block");
|
|
|
|
})
|
|
|
|
$(".homepagePostPortrait").mouseout(function(){
|
2016-03-18 10:05:31 +08:00
|
|
|
var cur = $(this);
|
|
|
|
onImage = false;
|
|
|
|
setTimeout(function(){
|
|
|
|
if (onUserCard == false && onImage == false) {
|
|
|
|
$(cur).children(".userCard").css("display", "none");
|
|
|
|
}
|
|
|
|
}, 500);
|
2016-01-07 15:58:22 +08:00
|
|
|
})
|
|
|
|
$(".userCard").mouseover(function(){
|
2016-03-18 10:05:31 +08:00
|
|
|
onUserCard = true;
|
2016-01-07 15:58:22 +08:00
|
|
|
$(this).css("display","block");
|
|
|
|
})
|
|
|
|
$(".userCard").mouseout(function(){
|
2016-03-18 10:05:31 +08:00
|
|
|
onUserCard = false;
|
2016-01-07 15:58:22 +08:00
|
|
|
$(this).css("display","none");
|
|
|
|
})
|
|
|
|
$(".coursesLineGrey").mouseover(function(){
|
|
|
|
$(this).css("color","#ffffff");
|
|
|
|
})
|
|
|
|
$(".coursesLineGrey").mouseout(function(){
|
|
|
|
$(this).css("color","#808080");
|
|
|
|
})
|
|
|
|
$(".homepagePostSetting,.coursesLineGrey").mouseover(function(){
|
|
|
|
$(this).prev().css("color","#ffffff");
|
|
|
|
$(this).css("z-index", "9999");
|
|
|
|
})
|
|
|
|
$(".homepagePostSetting").mouseout(function(){
|
|
|
|
$(this).prev().css("color","#808080");
|
|
|
|
$(this).css("z-index", "1");
|
|
|
|
})
|
|
|
|
})
|
|
|
|
</script>
|
2016-02-23 16:17:14 +08:00
|
|
|
|
2015-12-04 10:59:09 +08:00
|
|
|
<% unless forge_acts.empty? %>
|
2016-03-28 17:09:42 +08:00
|
|
|
<% forge_acts.each do |activity| -%>
|
2015-12-04 10:59:09 +08:00
|
|
|
<script>
|
|
|
|
$(function () {
|
2016-01-29 16:26:00 +08:00
|
|
|
sd_create_editor_from_data(<%= activity.id %>, null, "100%", "<%= activity.class.to_s %>");
|
2015-12-04 10:59:09 +08:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<!--创建-->
|
|
|
|
<% case activity.forge_act_type %>
|
2016-03-24 12:59:03 +08:00
|
|
|
<% when "Project" %>
|
2015-12-04 10:59:09 +08:00
|
|
|
<%= render :partial => 'projects/project_create', :locals => {:activity => activity, :user_activity_id => activity.id} %>
|
|
|
|
<!--缺陷动态-->
|
|
|
|
<% when "Issue" %>
|
2016-03-17 14:13:29 +08:00
|
|
|
<%= render :partial => 'users/project_issue', :locals => {:activity => activity.forge_act, :user_activity_id => activity.id, :project_id => activity.project_id} %>
|
2015-12-04 10:59:09 +08:00
|
|
|
<!--message -->
|
|
|
|
<% when "Message" %>
|
2016-03-25 15:58:17 +08:00
|
|
|
<%= render :partial => 'users/project_message', :locals => {:activity => activity.forge_act, :user_activity_id => activity.id, :is_course => 1, :is_board => 0} %>
|
2015-12-04 10:59:09 +08:00
|
|
|
<!--new 新闻-->
|
|
|
|
<% when "News" %>
|
|
|
|
<% if !activity.forge_act.nil? and activity.forge_act.project %>
|
|
|
|
<%= render :partial => 'projects/project_news', :locals => {:activity=>activity.forge_act, :user_activity_id=>activity.id} %>
|
|
|
|
<% end %>
|
|
|
|
<!--Attachment -->
|
|
|
|
<% when "Attachment" %>
|
2016-03-17 16:36:57 +08:00
|
|
|
<%= render :partial => 'users/project_attachment', :locals => {:activity => activity.forge_act, :user_activity_id => activity.id } %>
|
2016-07-21 18:08:13 +08:00
|
|
|
<% when "Commit" %>
|
|
|
|
<%= render :partial => 'projects/project_commit', :locals => {:activity => activity.forge_act, :user_activity_id => activity.id } %>
|
2015-12-04 10:59:09 +08:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% if forge_acts.count == 10 %>
|
2015-12-22 15:14:03 +08:00
|
|
|
<!--<div id="show_more_forge_activities" class="loadMore mt10 f_grey">点击展开更多<%#= link_to "", project_path(@project.id, :type => type, :page => page), :id => "more_forge_activities_link", :remote => "true", :class => "none" %></div>-->
|
|
|
|
<%= link_to "点击展开更多",project_path(@project.id, :type => type, :page => page),:id => "show_more_forge_activities",:remote => "true",:class => "loadMore mt10 f_grey"%>
|
2015-12-04 10:59:09 +08:00
|
|
|
<% end %>
|
|
|
|
|
2015-12-22 15:14:03 +08:00
|
|
|
<!--
|
2015-12-04 10:59:09 +08:00
|
|
|
<script type="text/javascript">
|
|
|
|
$("#show_more_forge_activities").mouseover(function () {
|
|
|
|
$("#more_forge_activities_link").click();
|
|
|
|
});
|
2015-12-22 15:14:03 +08:00
|
|
|
</script>-->
|