You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I add the following lines into my catalog_controller, the @documents variable that is passed to my citation view and the bookmarks display suddenly includes every single document in my solr index(!) This had not been a problem with Blacklight and advanced_search 5.x; only ran into it when I upgraded both to 6.x. I am using rails 4.2, by the way.
config.advanced_search = {
:form_solr_parameters => {
"facet.field" => ["format", "language_facet"],
"facet.limit" => -1, # return all facet values
"facet.sort" => "index" # sort by byte order of values
}
}
Steps to reproduce:
rails _4.2.5_ new not_working
cd not_working
Add gem "blacklight_advanced_search", '~> 6.0' and gem 'blacklight', '~>6.6' to your Gemfile.
rails generate blacklight_advanced_search and rails generate blacklight:install --devise
rake db:migrate
Add those lines (or something similar; I have tried different values for all of the facet.* configurations) to catalog controller.
Try visiting bookmarks, where you will note that every single document in the index is suddenly visible in your bookmarks!
Try going to localhost:3000/catalog/some_document_id/citation. You'll not that it returns citations for the first 10 documents in your index, rather than the requested document.
Any suggestions? Thanks in advance for your help!
The text was updated successfully, but these errors were encountered:
Not sure if this is related, but I'm finding that having an advanced field named "format" really screws things up.
This is because blacklight_advanced_search uses Rails URL helpers to generate urls. When you pass in a hash to the URL helpers that has, say {"format" => "some_value"}, it will append .some_value to your URL.
For me, this was creating some broken links that, when followed, would result in a ActionController::UnknownFormat error. But I imagine it could cause other strange chaos as well.
Hi all,
When I add the following lines into my catalog_controller, the @documents variable that is passed to my citation view and the bookmarks display suddenly includes every single document in my solr index(!) This had not been a problem with Blacklight and advanced_search 5.x; only ran into it when I upgraded both to 6.x. I am using rails 4.2, by the way.
Steps to reproduce:
rails _4.2.5_ new not_working
cd not_working
gem "blacklight_advanced_search", '~> 6.0'
andgem 'blacklight', '~>6.6'
to your Gemfile.rails generate blacklight_advanced_search
andrails generate blacklight:install --devise
rake db:migrate
Any suggestions? Thanks in advance for your help!
The text was updated successfully, but these errors were encountered: