Module: BlacklightMarc::Catalog

Defined in:
lib/blacklight_marc/catalog.rb

Instance Method Summary collapse

Instance Method Details

#endnoteObject

grabs a bunch of documents to export to endnote



13
14
15
16
17
18
# File 'lib/blacklight_marc/catalog.rb', line 13

def endnote
  @response, @documents = get_solr_response_for_field_values(SolrDocument.unique_key,params[:id])
  respond_to do |format|
    format.endnote { render :layout => false }
  end
end

#librarian_viewObject



3
4
5
6
7
8
9
10
# File 'lib/blacklight_marc/catalog.rb', line 3

def librarian_view
  @response, @document = get_solr_response_for_doc_id

  respond_to do |format|
    format.html
    format.js { render :layout => false }
  end
end