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

Ajax

开发平台:

Others

  1. module XmlHelper
  2.   def pub_date(time)
  3.     time.rfc822
  4.   end
  5.   
  6.   def collection_lastmod(collection)
  7.     article_updated = collection.articles.find(:first, :order => 'updated_at DESC')
  8.     article_published = collection.articles.find(:first, :order => 'published_at DESC')
  9.     times = []
  10.     times.push article_updated.updated_at if article_updated
  11.     times.push article_published.updated_at if article_published
  12.     if times.empty?
  13.       Time.at(0).xmlschema
  14.     else
  15.       times.max.xmlschema
  16.     end
  17.   end
  18. end