Sha256: e4273f510d2765aee7e615245629f93be91afa0ef5eb007a9c59ffb086194969
Contents?: true
Size: 635 Bytes
Versions: 51
Compression:
Stored size: 635 Bytes
Contents
xml.instruct! :xml, :version=>"1.0" xml.rss(:version=>"2.0") { xml.channel { xml.title(application_name + " Search Results") xml.link(catalog_index_url(params)) xml.description(application_name + " Search Results") xml.language('en-us') @document_list.each do |doc| xml.item do xml.title( doc.to_semantic_values[:title][0] || doc.id ) xml.link(catalog_url(doc[:id])) xml.author( doc.to_semantic_values[:author][0] ) if doc.to_semantic_values[:author][0] end end } }
Version data entries
51 entries across 51 versions & 2 rubygems