module BlacklightMarc::Catalog
Public Instance Methods
endnote()
click to toggle source
grabs a bunch of documents to export to endnote
# 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_view()
click to toggle source
# 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