- Jul 07, 2016
-
-
Demian Katz authored
-
- Jul 06, 2016
-
-
Chris Hallberg authored
-
Demian Katz authored
-
Demian Katz authored
-
Demian Katz authored
- Resolves VUFIND-1192.
-
Chris Hallberg authored
-
Ere Maijala authored
- Resolves VUFIND-1184.
-
Ere Maijala authored
-
Demian Katz authored
-
Ere Maijala authored
- Fixes problems with RSS feed, saved search, etc.
-
Demian Katz authored
-
Ere Maijala authored
- Plain angle brackets are a standard way of delimiting a URI in email (see e.g. ftp://ftp.rfc-editor.org/in-notes/rfc3986.txt Appendix C) and help with long URLs that would otherwise wrap (and even if the link would initially work, it would often fail if forwarded as quoted).
-
Demian Katz authored
Conflicts: module/VuFind/src/VuFind/Search/Tags/Results.php
-
Demian Katz authored
- Resolves VUFIND-1191.
-
- Jul 05, 2016
-
-
Chris Hallberg authored
-
Demian Katz authored
-
Demian Katz authored
-
Leila Gonzales authored
getUniqueResources, getUniqueTags, and getUniqueUsers was failing due to mySQL5.7 compatibility issues. The error being thrown by mySQL was: Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by To fix, we have to either turn off the only_full_group_by option or specifically select the columns that are used instead of selecting *. See: https://dev.mysql.com/doc/refman/5.7/en/group-by-handling.html for more info. PostgreSQL was failing due to fields being present in ORDER but missing from GROUP BY. This has also been corrected.
-
Chris Hallberg authored
-
André Lahmann authored
* replaced all hard coded links in HelpTranslations with links build by view helper (otherwise links will fail if vufind is not installed in site root) (#749)
-
André Lahmann authored
* adds removeCachedData() to ILS\Driver\AbstractBase to allow explicit removal of cached data (#747)
-
Ere Maijala authored
-
- Jun 29, 2016
-
-
Chris Hallberg authored
-
André Lahmann authored
* replaced all hard coded links in HelpTranslations with links build by view helper (otherwise links will fail if vufind is not installed in site root) (#749)
-
Ere Maijala authored
-
André Lahmann authored
-
- Jun 28, 2016
-
-
Chris Hallberg authored
-
Chris Hallberg authored
-
Ere Maijala authored
Add a heading for the lightbox facet list, init lightbox_facets js only if available and translate 'more' properly in JS.
-
- Jun 24, 2016
-
-
Chris Hallberg authored
-
- Jun 23, 2016
-
-
Leila Gonzales authored
-
Demian Katz authored
-
Demian Katz authored
- All searches now go to Search/Results; all tag views go to Tag/Home; search handler name is consistent between both places.
-
Demian Katz authored
- Avoids some nasty side effects of hidden filters (like broken autocomplete).
-
Chris Hallberg authored
-
Demian Katz authored
- There are two contexts in which a tag may be retrieved; one is using a search from the search menu, in which case we want to do fuzzy matching, including support for wildcard characters. The other is when a user clicks on a tag name on a record. In this case, we want to do exact matching, because the user has selected a specific known entity. These changes enable the code to tell the search case from the standard click case with the use of a hidden filter applied by the search controller.
-
Leila Gonzales authored
-
Demian Katz authored
-
- Jun 22, 2016
-
-
Ere Maijala authored
- Since the user had to log in with the ILS to get to the point of changing their password when using this auth method, we can safely rely on the database copy of the username rather than going through the expensive process of communicating with the ILS an extra time. - Since we are not refreshing the credentials, there is the (fairly small) possibility that the stored password will be outdated. This should not matter for the task of checking the ILS capability, since it is the username that is needed for identifying the user's home ILS in the MultiBackend driver (and in other contexts, this data is not currently used). - This commit also includes a minor comment improvement and a code simplification.
-
Ere Maijala authored
-