Sha256: 704237728b430e57e088cd778efa6f8e8c3a55cad1be83c1c678ffe70cefdd95

Contents?: true

Size: 698 Bytes

Versions: 59

Compression:

Stored size: 698 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 |agent|
        entry.author do |author|
          author.name(agent.full_name)
        end
      end
    end
  end
end

Version data entries

59 entries across 58 versions & 3 rubygems

Version Path
enju_biblio-0.3.18 app/views/manifestations/index.atom.builder
enju_biblio-0.3.17 app/views/manifestations/index.atom.builder
enju_biblio-0.3.16 app/views/manifestations/index.atom.builder
enju_biblio-0.3.15 app/views/manifestations/index.atom.builder
enju_biblio-0.3.14 app/views/manifestations/index.atom.builder
enju_biblio-0.3.13 app/views/manifestations/index.atom.builder
enju_biblio-0.3.12 app/views/manifestations/index.atom.builder
enju_biblio-0.3.11 app/views/manifestations/index.atom.builder
enju_biblio-0.3.10 app/views/manifestations/index.atom.builder
enju_biblio-0.3.10.rc.3 app/views/manifestations/index.atom.builder
enju_biblio-0.3.10.rc.2 app/views/manifestations/index.atom.builder
enju_biblio-0.3.10.rc.1 app/views/manifestations/index.atom.builder
enju_biblio-0.3.9 app/views/manifestations/index.atom.builder
enju_biblio-0.3.8 app/views/manifestations/index.atom.builder
enju_biblio-0.3.7 app/views/manifestations/index.atom.builder
enju_biblio-0.3.6 app/views/manifestations/index.atom.builder
enju_biblio-0.3.5 app/views/manifestations/index.atom.builder
enju_biblio-0.3.4 app/views/manifestations/index.atom.builder
enju_biblio-0.3.3 app/views/manifestations/index.atom.builder
enju_biblio-0.3.2 app/views/manifestations/index.atom.builder