Method: Blacklight#bib_ids_from_atom_entries
- Defined in:
- app/service_adaptors/blacklight.rb
#bib_ids_from_atom_entries(entries) ⇒ Object
332 333 334 335 336 337 |
# File 'app/service_adaptors/blacklight.rb', line 332 def bib_ids_from_atom_entries(entries) entries.xpath("atom:id/text()", xml_ns).to_a.collect do |atom_id| atom_id.to_s =~ /([^\/]+)$/ $1 end.compact end |