162 lines
7.6 KiB
Plaintext
162 lines
7.6 KiB
Plaintext
<%= content_for(:header_tags) do %>
|
||
<%= import_ke(enable_at: false, prettify: false) %>
|
||
<%#= javascript_include_tag "init_activity_KindEditor",'blog' %>
|
||
<%= javascript_include_tag "create_kindeditor",'blog' %>
|
||
<% end %>
|
||
|
||
<script type="text/javascript">
|
||
$(function(){
|
||
$("#RSide").removeAttr("id");
|
||
$("#Container").css("width","1000px");
|
||
});
|
||
</script>
|
||
<script>
|
||
function expand_reply(container,btnid){
|
||
var target = $(container).children();
|
||
var btn = $(btnid);
|
||
if(btn.data('init')=='0'){
|
||
btn.data('init',1);
|
||
btn.html('收起回复');
|
||
target.show();
|
||
}else{
|
||
btn.data('init',0);
|
||
btn.html('展开更多');
|
||
target.hide();
|
||
target.eq(0).show();
|
||
target.eq(1).show();
|
||
target.eq(2).show();
|
||
}
|
||
}
|
||
$(function() {
|
||
sd_create_editor_from_data(<%= @article.id%>,null,"100%", '<%=@article.class.to_s%>');
|
||
showNormalImage('message_description_<%= @article.id %>');
|
||
});
|
||
</script>
|
||
<div class="postRightContainer" onmouseover="$('#message_setting_<%= @article.id%>').show();" onmouseout="$('#message_setting_<%= @article.id%>').hide();">
|
||
<div class="postThemeContainer">
|
||
<div class="postDetailPortrait">
|
||
<%= link_to image_tag(url_to_avatar(@article.author),:width=>50,:height => 50,:alt=>'图像' ),user_path(@article.author) %>
|
||
</div>
|
||
<div class="postThemeWrap">
|
||
<% if @article.author.id == User.current.id || User.current.admin? %>
|
||
<div class="homepagePostSetting" id="message_setting_<%= @article.id%>" style="display: none">
|
||
<ul>
|
||
<li class="homepagePostSettingIcon">
|
||
<ul class="homepagePostSettiongText">
|
||
<li>
|
||
<%= link_to(
|
||
l(:button_edit),
|
||
{:action => 'edit', :id => @article.id,:in_act => params[:in_act]},
|
||
:class => 'postOptionLink'
|
||
) if User.current.admin? || User.current.id == @article.author.id %>
|
||
</li>
|
||
<li>
|
||
<%= link_to(
|
||
l(:button_delete),
|
||
{:action => 'destroy', :id => @article.id},
|
||
:method => :delete,
|
||
:data => {:confirm => l(:text_are_you_sure)},
|
||
:class => 'postOptionLink'
|
||
) if User.current.admin? || User.current.id == @article.author.id %>
|
||
</li>
|
||
<li>
|
||
<% if @article.id == @article.blog.homepage_id %>
|
||
<%= link_to(
|
||
l(:button_cancel_homepage),
|
||
{:controller => 'blogs',:action => 'cancel_homepage',:user_id=>@article.author_id,:id=>@article.blog_id, :article_id => @article.id},
|
||
:method => :post,
|
||
:class => 'postOptionLink'
|
||
) if User.current && User.current.id == @article.blog.author_id %>
|
||
<% else %>
|
||
<%= link_to(
|
||
l(:button_set_homepage),
|
||
{:controller => 'blogs',:action => 'set_homepage',:user_id=>@article.author_id,:id=>@article.blog_id, :article_id => @article.id},
|
||
:method => :post,
|
||
:class => 'postOptionLink'
|
||
) if User.current && User.current.id == @article.blog.author_id %>
|
||
<% end %>
|
||
</li>
|
||
</ul>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
<%end%>
|
||
<div class="postDetailTitle fl">
|
||
<a href="javascript:void(0);" class="f14 linkGrey4 fb" style="overflow:hidden;">主题: <%= @article.title%></a>
|
||
</div>
|
||
<div class="cl"></div>
|
||
|
||
<div class="postDetailCreater">
|
||
<%= link_to @article.author.show_name, user_path(@article.author,:host=>Setting.host_user), :class => "linkBlue2", :target=> "_blank" %>
|
||
</div>
|
||
<div class="postDetailDate mb5"><%= format_time( @article.created_on)%></div>
|
||
<div class="cl"></div>
|
||
|
||
<div class="homepagePostIntro break_word upload_img table_maxWidth " id="activity_description_<%= @article.id%>">
|
||
<div id="intro_content_<%= @article.id%>">
|
||
<%= @article.content.to_s.html_safe %>
|
||
</div>
|
||
</div>
|
||
<div class="cl"></div>
|
||
<div class=" fl" style="width: 600px">
|
||
<%#= link_to_attachments_course @topic, :author => false %>
|
||
<% if @article.attachments.any?%>
|
||
<% options = {:author => true, :deletable => false} %>
|
||
<%= render :partial => 'blog_comments/attachments_links', :locals => {:attachments => @article.attachments, :options => options, :is_float => true} %>
|
||
<% end %>
|
||
</div>
|
||
</div>
|
||
<div class="cl"></div>
|
||
</div>
|
||
<div class="cl"></div>
|
||
<% all_comments = []%>
|
||
<% all_replies = BlogComment.where("root_id = #{@article.id}").reorder("created_on desc") %>
|
||
<% count= all_replies.count %>
|
||
<div class="homepagePostReply">
|
||
<div class="homepagePostReplyBanner">
|
||
<div class="homepagePostReplyBannerCount">回复
|
||
<sapn class="mr15"><%= @reply_count > 0 ? "(#{@reply_count})" : "" %></sapn>
|
||
<span style="color: #cecece;">▪</span>
|
||
<span id="praise_count_<%= @article.id %>">
|
||
<%= render :partial => "praise_tread/praise", :locals => {:activity => @article, :user_activity_id => @article.id, :type => "activity"} %>
|
||
</span>
|
||
</div>
|
||
<div class="homepagePostReplyBannerTime"></div>
|
||
</div>
|
||
|
||
<%# comments = all_replies %>
|
||
<% if @reply_count > 0 %>
|
||
<div class="" id="reply_div_<%= @article.id %>">
|
||
<%= render :partial => 'blog_comment_show_replies' %>
|
||
</div>
|
||
<% end %>
|
||
|
||
<div class="cl"></div>
|
||
<% if !@article.locked? && User.current.logged?%>
|
||
<div class="talkWrapMsg" nhname="about_talk_reply">
|
||
<em class="talkWrapArrow"></em>
|
||
<div class="cl"></div>
|
||
<div class="talkConIpt ml5 mb10" id="reply<%= @article.id %>">
|
||
<%= form_for :blog_comment, :url => {:action => 'reply',:controller => 'blog_comments',:user_id=>@article.author.id,:blog_id=>@article.blog_id, :id => @article.id}, :html => {:multipart => true, :id => 'message_form'} do |f| %>
|
||
<%= render :partial => 'blog_comments/reply_form', :locals => {:f => f,:user=>@user,:article=>@article} %>
|
||
<%= link_to l(:button_cancel), "javascript:void(0)", :onclick => 'message_content_editor.html("");', :class => " grey_btn fr c_white mt10 mr5" %>
|
||
<%= link_to l(:button_submit), "javascript:void(0)", :onclick => 'submit_message_replay();', :class => "blue_btn fr c_white mt10 mb10", :style => "margin-right: 5px;" %>
|
||
<% end %>
|
||
<div class="cl"></div>
|
||
</div>
|
||
</div>
|
||
<% end %>
|
||
</div>
|
||
</div>
|
||
<script type="text/javascript">
|
||
$(function(){
|
||
// var postContent = $("#message_description_<%#= @article.id %>").html();
|
||
// postContent = postContent.replace(/ /g," ");
|
||
// postContent= postContent.replace(/ {2}/g," ");
|
||
// postContent=postContent.replace(/ /g," ");
|
||
// postContent=postContent.replace(/ /g," ");
|
||
// $("#message_description_<%#= @article.id %>").html(postContent);
|
||
// autoUrl('message_description_<%#= @article.id %>');
|
||
});
|
||
</script>
|