Sha256: 4744d7f0df2e905641e99e7dcc2d87edfa0038f47c1b524680abaab356078cd6

Contents?: true

Size: 715 Bytes

Versions: 39

Compression:

Stored size: 715 Bytes

Contents

atom_feed(:url => manifestations_url(:format => :atom)) do |feed|
  feed.title t('manifestation.query_search_result', :query => @query, :library_group_name => @library_group.display_name.localize)
  feed.updated(@manifestations.first ? @manifestations.first.created_at : Time.zone.now)

  @manifestations.each do |manifestation|
    feed.entry(manifestation) do |entry|
      entry.title(manifestation.original_title)
      if defined?(EnjuBookmark)
        entry.content(manifestation.tags.join(' '), :type => 'html')
      end

      manifestation.creators.readable_by(current_user).each do |patron|
        entry.author do |author|
          author.name(patron.full_name)
        end
      end
    end
  end
end

Version data entries

39 entries across 39 versions & 2 rubygems

Version Path
enju_flower-0.1.0.pre11 app/views/manifestations/index.atom.builder
enju_flower-0.1.0.pre10 app/views/manifestations/index.atom.builder
enju_flower-0.1.0.pre9 app/views/manifestations/index.atom.builder
enju_flower-0.1.0.pre8 app/views/manifestations/index.atom.builder
enju_flower-0.1.0.pre7 app/views/manifestations/index.atom.builder
enju_flower-0.1.0.pre6 app/views/manifestations/index.atom.builder
enju_flower-0.1.0.pre5 app/views/manifestations/index.atom.builder
enju_flower-0.1.0.pre4 app/views/manifestations/index.atom.builder
enju_flower-0.1.0.pre3 app/views/manifestations/index.atom.builder
enju_flower-0.1.0.pre2 app/views/manifestations/index.atom.builder
enju_flower-0.1.0.pre app/views/manifestations/index.atom.builder
enju_biblio-0.1.0.pre19 app/views/manifestations/index.atom.builder
enju_biblio-0.1.0.pre18 app/views/manifestations/index.atom.builder
enju_biblio-0.1.0.pre17 app/views/manifestations/index.atom.builder
enju_biblio-0.1.0.pre16 app/views/manifestations/index.atom.builder
enju_biblio-0.1.0.pre15 app/views/manifestations/index.atom.builder
enju_biblio-0.1.0.pre14 app/views/manifestations/index.atom.builder
enju_biblio-0.1.0.pre13 app/views/manifestations/index.atom.builder
enju_biblio-0.1.0.pre12 app/views/manifestations/index.atom.builder
enju_biblio-0.1.0.pre11 app/views/manifestations/index.atom.builder