articles_helper.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. module ArticlesHelper
  2.   def feed_atom
  3.     if params[:action] == 'search'
  4.       url_for(:only_path => false,:format => :atom, :q => params[:q])
  5.     elsif not @article.nil?
  6.       @article.feed_url(:atom)
  7.     else
  8.       @auto_discovery_url_atom
  9.     end
  10.   end
  11.   def feed_rss
  12.     if params[:action] == 'search'
  13.       url_for(:only_path => false,:format => :rss, :q => params[:q])
  14.     elsif not @article.nil?
  15.       @article.feed_url(:rss20)
  16.     else
  17.       @auto_discovery_url_rss
  18.     end
  19.   end
  20. end