Sha256: 42be6d117c0541cba00b29e5b254a93ee02b6cb7a88bd66fdfc3689b550d2f78

Contents?: true

Size: 1.88 KB

Versions: 12

Compression:

Stored size: 1.88 KB

Contents

xml.instruct! :xml, version: "1.0"
xml.rss('version' => "2.0",
  'xmlns:opensearch' => "http://a9.com/-/spec/opensearch/1.1/",
  'xmlns:atom' => "http://www.w3.org/2005/Atom"){
  xml.channel{
    if @user
      xml.title t('checkout.user_checkout', login_name: @user.username)
      xml.link checkouts_url(user_id: @user.username)
      xml.tag! "atom:link", rel: 'self', href: "#{request.protocol}#{request.host_with_port}#{url_for(params.merge(format: :rss, only_path: true))}"
      xml.tag! "atom:link", rel: 'alternate', href: checkouts_url(user_id: @user.username)
    else
      xml.title t('checkout.library_group_checkout', library_group_name: @library_group.display_name.localize)
      xml.link checkouts_url
      xml.tag! "atom:link", rel: 'self', href: "#{request.protocol}#{request.host_with_port}#{url_for(params.merge(format: :rss, only_path: true))}"
      xml.tag! "atom:link", rel: 'alternate', href: checkouts_url
    end
    xml.description "Next-L Enju, an open source integrated library system developed by Project Next-L"
    xml.language @locale.to_s
    xml.ttl "60"
    #xml.tag! "atom:link", rel: 'search', type: 'application/opensearchdescription+xml', href: "http://#{request.host_with_port}/page/opensearch"
    unless params[:query].blank?
      xml.tag! "opensearch:totalResults", @count[:query_result]
      xml.tag! "opensearch:startIndex", @checkouts.offset + 1
      xml.tag! "opensearch:itemsPerPage", @checkouts.per_page
      #xml.tag! "opensearch:Query", role: 'request', searchTerms: params[:query], startPage: (params[:page] || 1)
    end
    @checkouts.each do |checkout|
      xml.item do
        xml.title checkout.item.manifestation.original_title
        #xml.description(checkout.title)
        # rfc822
        xml.pubDate checkout.created_at.utc.rfc822
        xml.link checkout_url(checkout)
        xml.guid checkout_url(checkout), isPermaLink: "true"
      end
    end
  }
}

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
enju_circulation-0.1.2 app/views/checkouts/index.rss.builder
enju_circulation-0.1.1 app/views/checkouts/index.rss.builder
enju_circulation-0.1.0 app/views/checkouts/index.rss.builder
enju_circulation-0.1.0.pre49 app/views/checkouts/index.rss.builder
enju_circulation-0.1.0.pre48 app/views/checkouts/index.rss.builder
enju_circulation-0.1.0.pre47 app/views/checkouts/index.rss.builder
enju_circulation-0.1.0.pre46 app/views/checkouts/index.rss.builder
enju_circulation-0.1.0.pre45 app/views/checkouts/index.rss.builder
enju_circulation-0.1.0.pre44 app/views/checkouts/index.rss.builder
enju_circulation-0.1.0.pre43 app/views/checkouts/index.rss.builder
enju_circulation-0.1.0.pre42 app/views/checkouts/index.rss.builder
enju_circulation-0.1.0.pre41 app/views/checkouts/index.rss.builder