module DisplayHelper def themed_path(file) if File.exists?(File.join(Rails.root, 'public', theme_path, file)) File.join(theme_path, file) else file end end def price_span(price, options = {}) content_tag 'span', number_to_currency(price, :unit => environment.currency_unit, :delimiter => environment.currency_delimiter, :separator => environment.currency_separator), options end def link_to_tag(tag, html_options = {}) link_to tag.name, {:controller => 'search', :action => 'tag', :tag => tag.name}, html_options end def link_to_category(category, full = true, html_options = {}) name = full ? category.full_name(' → ') : category.name link_to name, Noosfero.url_options.merge({:controller => 'search', :action => 'category_index', :category_path => category.path.split('/'),:host => category.environment.default_hostname }), html_options end def txt2html(txt) ret = txt.strip. gsub( /\s*\n\s*\n\s*/, "\r
\r" ). gsub( /\s*\n\s*/, "\n