view .svn/pristine/ae/aea86446e90f5223c778c46b31f7dc023774621a.svn-base @ 1250:55a62689cc97 redmine-2.2-integration

printing the html correctly (not escaping it)
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 03 Apr 2013 15:55:50 +0100
parents cbb26bc654de
children
line wrap: on
line source
class Category < ActiveRecord::Base
  acts_as_nested_set
  
  def to_s
    name
  end
  
  def recurse &block
    block.call self, lambda{
      self.children.each do |child|
        child.recurse &block
      end
    }
  end
end