Sha256: 356312f8e468821ab7fd38868911c536665253ca389cf4f0a6e3cd52fba96d8b

Contents?: true

Size: 1.9 KB

Versions: 10

Compression:

Stored size: 1.9 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.permit.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.permit.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

10 entries across 10 versions & 1 rubygems

Version Path
enju_circulation-0.2.5 app/views/checkouts/index.rss.builder
enju_circulation-0.2.4 app/views/checkouts/index.rss.builder
enju_circulation-0.2.3 app/views/checkouts/index.rss.builder
enju_circulation-0.2.2 app/views/checkouts/index.rss.builder
enju_circulation-0.2.1 app/views/checkouts/index.rss.builder
enju_circulation-0.2.0 app/views/checkouts/index.rss.builder
enju_circulation-0.2.0.beta.4 app/views/checkouts/index.rss.builder
enju_circulation-0.2.0.beta.3 app/views/checkouts/index.rss.builder
enju_circulation-0.2.0.beta.2 app/views/checkouts/index.rss.builder
enju_circulation-0.2.0.beta.1 app/views/checkouts/index.rss.builder