Sha256: 91e6895b3fd07b8fc877fac13a124235587f53612eb4ddb61f264535b97de118
Contents?: true
Size: 696 Bytes
Versions: 58
Compression:
Stored size: 696 Bytes
Contents
xml.instruct! :xml, :version=>"1.0" xml.rss(:version=>"2.0") { xml.channel { xml.title(t('blacklight.search.title', :application_name => application_name)) xml.link(catalog_index_url(params)) xml.description(t('blacklight.search.title', :application_name => application_name)) xml.language('en-us') @document_list.each do |doc| xml.item do xml.title( doc.to_semantic_values[:title][0] || doc.id ) xml.link(polymorphic_url(doc)) xml.author( doc.to_semantic_values[:author][0] ) if doc.to_semantic_values[:author][0] end end } }
Version data entries
58 entries across 58 versions & 1 rubygems