require_dependency 'article' class Article has_many :paragraph_comments, :class_name => 'Comment', :foreign_key => 'source_id', :dependent => :destroy, :order => 'created_at asc', :conditions => [ 'paragraph_uuid IS NOT NULL'] before_save :comment_paragraph_plugin_parse_html settings_items :comment_paragraph_plugin_activate, :type => :boolean, :default => false def comment_paragraph_plugin_enabled? environment.plugin_enabled?(CommentParagraphPlugin) && self.kind_of?(TextArticle) end protected def comment_paragraph_plugin_activate? comment_paragraph_plugin_enabled? && comment_paragraph_plugin_settings.activation_mode == 'auto' end def comment_paragraph_plugin_parse_html comment_paragraph_plugin_activate = comment_paragraph_plugin_activate? return unless comment_paragraph_plugin_activate if body && body_changed? parsed_paragraphs = [] updated = body_change[1] doc = Hpricot(updated) doc.search("/*").each do |paragraph| if paragraph.to_html =~ /^
" end end