diff --git a/local/config/vufind/DAIA.ini b/local/config/vufind/DAIA.ini index 07f3c6e856ddb9fbced67ade0bc56227a6b41bfa..bbb49ec64c3ac96ea6d1e44a51abbe887bff4238 100644 --- a/local/config/vufind/DAIA.ini +++ b/local/config/vufind/DAIA.ini @@ -26,7 +26,7 @@ ;baseUrl = http://localhost/daiatheca/daia/ ; Set a DAIA specific timeout in seconds to be used for DAIA http requests (defaults -; to Zend defaults or as defined in +; to client defaults or as defined in ; vendor/vufind-org/vufindhttp/src/VuFindHttp/HttpService.php) ;timeout = 30 diff --git a/local/config/vufind/RecordTabs.ini b/local/config/vufind/RecordTabs.ini index 22aeec0ac810660f321628156bf1cad2c42b02ce..e7ecaeb4341e9619f2e6d67e79cd1945b38aab5f 100644 --- a/local/config/vufind/RecordTabs.ini +++ b/local/config/vufind/RecordTabs.ini @@ -77,3 +77,13 @@ tabs[Preview] = preview tabs[Map] = Map tabs[Similar] = SimilarItemsCarousel tabs[Details] = StaffViewArray + +; TabScripts is a special section that defines any extra scripts that may be required +; by a tab. Settings are named by the tab name (X above) and may be repeated if +; multiple scripts are required. +[TabScripts] +Details[] = staff_view_button.js +Versions[] = openurl.js +Versions[] = combined-search.js +Versions[] = check_item_statuses.js +Versions[] = record_versions.js \ No newline at end of file diff --git a/local/config/vufind/config.ini b/local/config/vufind/config.ini index c965100b2a106338fdb35c4e4f2cb8be33afd759..07d9024f1cb0b35a662b9037664abdaa80c6cbda 100644 --- a/local/config/vufind/config.ini +++ b/local/config/vufind/config.ini @@ -167,7 +167,7 @@ allowSavedSearches = true ; features (such as display of hierarchies). nonJavascriptSupportEnabled = false ; Generator value to display in an HTML header <meta> tag: -generator = "VuFind 6.1.2" +generator = "VuFind 7.1.1" ; This section allows you to configure the mechanism used for storing user ; sessions. Available types: File, Memcache, Database, Redis. @@ -220,6 +220,10 @@ secure = true ; applications) on the same host, it is strongly recommended to give each a ; different session_name setting to avoid data contamination. session_name = VUFIND_SESSION +; Set the SameSite attribute used for cookies. Default is Lax. See e.g. +; https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite for +; more information +;sameSite = "Lax" ; Please set the ILS that VuFind will interact with. ; @@ -235,6 +239,9 @@ session_name = VUFIND_SESSION ; - HorizonXMLAPI (more features via API) ; - Innovative (for INNOPAC; see also Sierra/SierraRest) ; - Koha (basic database access only) +; - KohaRest (the most feature-complete Koha driver using Koha's REST API. Requires +; at least Koha 20.05 and the koha-plugin-rest-di extension found at: +; https://github.com/natlibfi/koha-plugin-rest-di) ; - KohaILSDI (more features via ILS-DI API) ; - LBS4 ; - MultiBackend (to chain together multiple drivers in a consortial setting) @@ -419,7 +426,7 @@ method = Database ; (the recommended setting in most situations). ;ILS_username_field = cat_username -; Whether or not to hide the Login Options; not that even when this is set to +; Whether or not to hide the Login Options; note that even when this is set to ; false, ILS driver settings may be used to conditionally hide the login. See ; hideLogin in the [Settings] section of NoILS.ini for an example. hideLogin = false @@ -478,8 +485,8 @@ ils_encryption_key = false ; This setting may optionally be uncommented to restrict the email domain(s) from ; which users are allowed to register when using the Database or AlmaDatabase method. -;domain_whitelist[] = "myuniversity.edu" -;domain_whitelist[] = "mail.myuniversity.edu" +;legal_domains[] = "myuniversity.edu" +;legal_domains[] = "mail.myuniversity.edu" ; Specify default minimum and maximum password length (Auth method may override ; this). @@ -553,7 +560,10 @@ default_dismax_handler = dismax ; hierarchy. A higher number results in fewer round-trips but may increase Solr's ; memory usage. Default is 1000. ;cursor_batch_size = 1000 - +; This limits the number of records to retrieve in a batch e.g. when retrieving +; records for a list. Default is 100 which should be a good number to avoid +; memory problems. +;record_batch_size = 100 ; Enable/Disable searching reserves using the "reserves" Solr core. When enabling ; this feature, you need to run the util/index_reserves.php script to populate the @@ -710,16 +720,25 @@ database = mysql://root@localhost/vufind ; Optional: Session ID parameter for SAML2 single logout support. If omitted, single ; logout support is disabled. Note that if SLO support is enabled, Shibboleth session ; ID's are tracked in external_session table which may need to be cleaned up with the -; expire_session_mappings command line utility. See +; util/expire_external_sessions command line utility. See ; https://vufind.org/wiki/configuration:shibboleth for more information on how ; to configure the single logout support. ;session_id = Shib-Session-ID +; Check for expired session - user is automatically logged out when Shibboleth +; session is not present (default = true if unset); note that expiration check +; also requires session_id to be set above. +;checkExpiredSession = false ; Optional: you may set attribute names and values to be used as a filter; ; users will only be logged into VuFind if they match these filters. ;userattribute_1 = entitlement ;userattribute_value_1 = urn:mace:dir:entitlement:common-lib-terms ;userattribute_2 = unscoped-affiliation ;userattribute_value_2 = member +; Set to true when shibboleth attributes must be read from headers instead of +; environment variables - for example if you use proxy server and shibboleth is +; running on proxy side. In that case you should protect against header spoofing: +; see https://wiki.shibboleth.net/confluence/display/SP3/SpoofChecking for details +;use_headers = false ; Required: the attribute Shibboleth uses to uniquely identify users. ;username = persistent-id ; Required: Shibboleth login URL. @@ -741,6 +760,9 @@ database = mysql://root@localhost/vufind ;college = HTTP_COLLEGE ;major = HTTP_MAJOR ;home_library = HTTP_HOME_LIBRARY +; Enable if you want to override mapping or required attributes for specific IdP +; in Shibboleth.ini +;allow_configuration_override = true ; CAS is optional. This section only needs to exist if the ; Authentication Method is set to CAS. @@ -804,9 +826,6 @@ database = mysql://root@localhost/vufind ; External Content is Optional. ; To use multiple, separate with a comma. Priority will be given by the order listed ; Account id is separated with a colon, if no id is used then no colon is necessary -; For Amazon, use your 20-character access key in the coverimages and reviews values; -; you must also provide your 40-character secret key in the amazonsecret value and -; your associate ID in the amazonassociate value. ; ; IMPORTANT: Review content providers' terms of service before turning them on. ; Terms may change, and not all content sources are appropriate for all @@ -834,9 +853,11 @@ showStyleBasedIcons = true ; coversize setting to false: ;coversize = false -; You can select Syndetics, LibraryThing, Summon, Amazon, Booksite, OpenLibrary, -; Contentcafe, Buchhandel.de, Google Books, BrowZine and/or LocalFile. +; You can select Syndetics, LibraryThing, Summon, Booksite, OpenLibrary, +; Contentcafe, Buchhandel.de, Google Books, BrowZine, ObalkyKnih and/or LocalFile. ; Note: BrowZine requires you to have BrowZine.ini configured appropriately. +; Note: ObalkyKnih could be configured in obalkyknih.ini file. You should also +; add API URLs to img-src directive in contentsecuritypolicy.ini ; Note: Summon service takes a Serials Solutions client key, NOT Summon API key! ; For LocalFile:PathToFile, you may use a combination of directory path information ; and tokens for filename and image type. If you have multiple directories @@ -872,6 +893,16 @@ coverimagesCache = true ; "/.*/" to turn on caching for all proxied images. ;coverproxyCache[] = "/.*\.?mylibrary\.edu/" +; This setting controls how cover image URLs are loaded. They could be loaded as +; part of main request, or asynchronously. Asynchronous loading is disabled by +; default; to enable it, just uncomment the line below. +;ajaxcovers = true + +; When ajaxcovers is set to true, this setting controls whether the AJAX Handler +; GetRecordCover renders a fallback template (record/coverReplacement.phtml) in case +; no cover image could be loaded. +;useCoverFallbacksOnFail = false + ; These settings control the image to display when no book cover is available. ; If makeDynamicCovers is not false and the GD library is installed, VuFind will draw ; cover images on the fly. See [DynamicCovers] below for more settings. If set to @@ -893,13 +924,12 @@ noCoverAvailableImage = images/noCover2.gif ; no cover image could be loaded. ;useCoverFallbacksOnFail = false -; You can select from Syndetics, SyndeticsPlus, Amazon Editorial, Amazon, Booksite -; and/or the Guardian +; You can select from Syndetics, SyndeticsPlus, Booksite and/or the Guardian ; Note: If the API key is omitted, e.g. "Guardian:", only the review title, byline, ; Guardian logo and a link to the full Guardian page will be displayed ; Note: The Guardian API changed in 2014; if you signed up before that date, you ; may need to obtain a new API key for continued access. -;reviews = Syndetics:MySyndeticsId,SyndeticsPlus:MySyndeticsID,AmazonEditorial:MyAccessKeyId,Amazon:MyAccessKeyId,Booksite,Guardian:MyGuardianKeyId +;reviews = Syndetics:MySyndeticsId,SyndeticsPlus:MySyndeticsID,Booksite,Guardian:MyGuardianKeyId ; You can select from Syndetics or SyndeticsPlus ;excerpts = Syndetics:MySyndeticsId,SyndeticsPlus:MySyndeticsId @@ -930,15 +960,6 @@ noCoverAvailableImage = images/noCover2.gif ; heap size settings. For details, see: https://vufind.org/jira/browse/VUFIND-630 ;authors = Wikipedia -; You can look up your secret key by logging into http://aws.amazon.com and clicking -; "Access Identifiers" under "Your Account". -;amazonsecret = MyAmazonSecretKey - -; You can sign up for an associate ID by logging into -; https://affiliate-program.amazon.com . Please make sure your instance of VuFind -; complies with Amazon's agreements before enabling this feature. -;amazonassociate = MyAmazonAssociateID - ; You can select from Google, OpenLibrary, HathiTrust. You should consult ; https://developers.google.com/books/branding before using Google Book Search. ; previews = Google,OpenLibrary,HathiTrust @@ -1091,14 +1112,14 @@ timeout = 10 ; Booksite CATS Enhanced Content - cover images, reviews, description, etc. [Booksite] url = "https://api.booksite.com" -;key = "Key" +;key = "XXXXXXXXXXXXXXXXX" ; Content Cafe is a subscription service from Baker & Taylor. If you are using this ; service (see the [Content] section above for details), you MUST uncomment and set ; the password (pw) setting. You may also change the API base URL (url) if needed. [Contentcafe] ;url = "http://contentcafe2.btol.com" -;pw = "Password" +;pw = "xxxxxx" ; Summon is optional; this section is used for your API credentials. apiId is the ; short, human-readable identifier for your Summon account; apiKey is the longer, @@ -1163,9 +1184,16 @@ url = "https://api.booksite.com" ; This setting controls whether or not DOI-based links are enabled, and which ; API is used to fetch the data. Currently supported options: BrowZine (requires ; credentials to be configured in BrowZine.ini), Unpaywall or false (to disable). Disabled -; by default. +; by default. You may also use a comma-separated list of resolvers if you +; want to try multiple sources. ;resolver = BrowZine +; If you use multiple values in the resolver setting above, you can determine how the +; software should behave when multiple resolvers return results for the same DOI. +; You can choose "first" (only return results from the first matching resolver -- +; the default behavior) or "merge" (merge together all results and show them all). +;multi_resolver_mode = first + ;unpaywall_api_url = "https://api.unpaywall.org/v2" ; Unpaywall needs an email adress, see https://unpaywall.org/products/api ;unpaywall_email = "your@email.org" @@ -1206,6 +1234,8 @@ window_settings = "toolbar=no,location=no,directories=no,buttons=no,status=no,me ; If you want to display a graphical link to your link resolver, uncomment the ; settings below. graphic should be a URL; graphic_width and graphic_height ; should be sizes in pixels. +; Note: You will probably will need to add URL of image to img-src setting +; in contentsecuritypolicy.ini file ;graphic = "http://myuniversity.edu/images/findIt.gif" ;graphic_width = 50 ;graphic_height = 20 @@ -1366,7 +1396,7 @@ url = https://www.myendnoteweb.com/EndNoteWeb.html ; local_addresses = "@^(localhost|127(\.\d+){3}|\[::1\]|192\.168\.)@" ; Default HTTP settings can be loaded here. These values will be passed to -; the \Zend\Http\Client's setOptions method. +; the \Laminas\Http\Client's setOptions method. [Http] ;sslcapath = "/etc/ssl/certs" ; e.g. for Debian systems ;sslcafile = "/etc/pki/tls/cert.pem" ; e.g. for CentOS systems @@ -1375,7 +1405,13 @@ url = https://www.myendnoteweb.com/EndNoteWeb.html ; Example: Using a CURL Adapter instead of the the defaultAdapter (Socket); note ; that you may also need to install CURL and PHP/CURL packages on your server. -; adapter = 'Zend\Http\Client\Adapter\Curl' +; adapter = 'Laminas\Http\Client\Adapter\Curl' + +; Set curl options if required. See +; https://www.php.net/manual/en/function.curl-setopt.php for available options and +; https://github.com/curl/curl/blob/master/include/curl/curl.h for their numeric +; values. +;curloptions[52] = true ; Spelling Suggestions ; @@ -1449,6 +1485,18 @@ skip_numeric = true ; - Add /slack to the end of your url for Slack-compatible messages ; https://discordapp.com/developers/docs/resources/webhook#execute-slackcompatible-webhook +; You can use Office365 webhooks to send messages to a Microsoft Team channel. +; In the "Connectors" setting on a channel, you can add "Incoming Webhook." This +; will provide a URL that you can paste into the office365_url setting. +; If you are concerned about rate limits, you might also wish to set up the +; VuOwma message aggregator; see https://github.com/FalveyLibraryTechnology/VuOwma +;office365_url = "https://outlook.office.com/webhook/xxx/IncomingWebhook/yyy" +; This setting controls the error levels that will be logged to Office365; if +; commented out, Office365 logging will be disabled +;office365 = alert,error +; This setting controls the title on the messages displayed in Office365: +;office365_title = "VuFind Log" + ; This section can be used to specify a "parent configuration" from which ; the current configuration file will inherit. You can chain multiple ; configurations together if you wish. @@ -1456,7 +1504,7 @@ skip_numeric = true ; Full path to parent configuration file: ;path = /usr/local/vufind/application/config/config.ini ; Path to parent configuration file (relative to the location of this file): -;relative_path = ../masterconfig/config.ini +;relative_path = ../parentconfig/config.ini ; A comma-separated list of config sections from the parent which should be ; completely overwritten by the equivalent sections in this configuration; @@ -1531,6 +1579,10 @@ rtl_langs = "ar,he" ; have a large index! [Browse] result_limit = 100 + +; These settings can be used to turn specific browse types on or off; the order +; of the settings in the configuration below will also control the order of the +; options displayed in the web interface: tag = true ; allow browsing of Tags dewey = false ; allow browsing of Dewey Decimal call numbers lcc = true ; allow browsing of LC call numbers @@ -1539,6 +1591,7 @@ topic = true ; allow browsing of subject headings genre = true ; allow browsing of genre subdivisions region = true ; allow browsing of region subdivisions era = true ; allow browsing of era subdivisions + ; You can use this setting to change the default alphabet provided for browsing: ;alphabet_letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ; Uncomment to sort lists alphabetically (instead of by popularity); note that @@ -1653,6 +1706,15 @@ jump_to_single_search_result = false ; punctuation, but this can be used when ISBD punctuation is absent (e.g. ", "). ;marcPublicationInfoSeparator = " " +; If you have a custom index, you might want to change the field where the full +; MARC record is supposed to be. The field will be checked and ignored, if it is +; not a valid index field or does not exist in the record or index schema. +; If you have multiple fields with MARC content, you may add all of them +; by using a comma sepated list. The first field is the preferred one, if it does not +; exist, the next ones are taken. +; (Default = "fullrecord") +preferredMarcFields = "fullrecord" + ; When displaying publication information from 260/264, this can be set to true ; to make 264 information completely replace 260 information. Default is false, ; which will display information from 260 AND 264 when both fields are populated. @@ -1727,11 +1789,11 @@ HMACkey = mySuperSecretValue ; VUFIND_CACHE_DIR (see httpd-vufind.conf). The default location is inside the ; local settings directory. [Cache] -; Set time to live value for Zend caches (in seconds), 0 means maximum possible. +; Set time to live value for caches (in seconds), 0 means maximum possible. ;ttl = 0 ; Override umask for cache directories and files. ;umask = 022 -; Permissions for Zend-created cache directories and files, subject to umask +; Permissions for framework-created cache directories and files, subject to umask ; Default dir_permission seems to be 0700. ;dir_permission = 0700 ; Default file_permission seems to be 0600. @@ -1815,7 +1877,7 @@ omitDefaultFiltersInChildSearch = true ;sender_name = "VuFind Feedback" ; Note: for additional details about stats (including additional notes on Google -; Analytics and Piwik), look at the wiki page: +; Analytics and Matomo/Piwik), look at the wiki page: ; https://vufind.org/wiki/configuration:usage_stats ; Uncomment this section and provide your API key to enable Google Analytics. Be @@ -1826,18 +1888,20 @@ omitDefaultFiltersInChildSearch = true ;apiKey = "mykey" ;universal = false -; Uncomment this section and provide your Piwik server address and site id to -; enable Piwik analytics. Note: VuFind's Piwik integration uses several custom -; variables; to take advantage of them, you must reconfigure Piwik by switching +; The Piwik product has been renamed to Matomo, but for backward compatibility, +; the terminology has not yet been changed in VuFind. Uncomment this section and +; provide your Matomo or Piwik server address and site id to enable Matomo/Piwik +; analytics. Note: VuFind's Matomo/Piwik integration uses several custom variables; +; to take advantage of them, you must reconfigure Matomo/Piwik by switching ; to its root directory and running this command to raise a default limit: ; ./console customvariables:set-max-custom-variables 10 [Piwik] ;url = "http://server.address/piwik/" ;site_id = 1 ; Uncomment the following setting to track additional information about searches -; and displayed records with Piwik's custom variables +; and displayed records with Matomo/Piwik's custom variables ;custom_variables = true -; By default, Piwik searches are tracked using the format "Backend|Search Terms." +; By default, searches are tracked using the format "Backend|Search Terms." ; If you need to differentiate searches coming from multiple VuFind instances using ; a shared site_id, you can set the searchPrefix to add an additional prefix to ; the string, for example "SiteA|Backend|Search Terms." Most users will want to @@ -1889,22 +1953,46 @@ omitDefaultFiltersInChildSearch = true ;EDS = "EBSCO Discovery Service" ; Activate Captcha validation on select forms -; VuFind will use reCaptcha validation to prevent bots from using certain actions of -; your instance. See http://www.google.com/recaptcha for more information on Captcha -; and create keys for your domain. -; You will need to provide a sslcapath in the [Http] section for your Captcha to work. +; VuFind can use Captcha validation to prevent bots from using certain actions of +; your instance. ;[Captcha] -;siteKey = "get your reCaptcha key at" -;secretKey = "https://www.google.com/recaptcha/admin/create" -; Valid theme values: dark, light -;theme = light -; Valid forms values: changePassword, email, feedback, newAccount, passwordRecovery, -; sms, userComments -; Use * for all supported forms +; Valid type values: +; - figlet (generate a text-based message for the user to interpret) +; - image (generate a local image for the user to interpret) +; - recaptcha (use Google's ReCaptcha service) +; If multiple values are given, the user will be able to pick his favorite. +; See below for additional type-specific settings. +;types[] = recaptcha + +; The "forms" setting controls the contexts in which CAPTCHA will be presented. It +; can be either a comma-separated list of forms, or "*" to display CAPTCHA on all +; supported forms. Valid forms values: +; changeEmail, changePassword, email, feedback, newAccount, passwordRecovery, +; sms, userComments ; Note: when "feedback" is active, Captcha can be conditionally disabled on a ; form-by-form basis with the useCaptcha setting in FeedbackForms.yaml. -;forms = changeEmail, changePassword, email, newAccount, passwordRecovery, sms - +;forms = * + +; Figlet options, see: +; https://docs.laminas.dev/laminas-captcha/adapters/#laminascaptchafiglet +;figlet_length = 8 + +; Image options, see: +; https://docs.laminas.dev/laminas-captcha/adapters/#laminascaptchaimage +;image_length = 8 +;image_width = 200 +;image_height = 50 +;image_fontSize = 24 +;image_dotNoiseLevel = 100 +;image_lineNoiseLevel = 5 + +; See http://www.google.com/recaptcha for more information on reCAPTCHA and to +; create keys for your domain. Make sure that SSL settings are correct in the +; [Http] section, or your Captcha may not work. +;recaptcha_siteKey = "get your reCaptcha key at" +;recaptcha_secretKey = "https://www.google.com/recaptcha/admin/create" +; Valid theme values: dark, light +;recaptcha_theme = light ; This section can be used to display default text inside the search boxes, useful ; for instructions. Format: @@ -1943,6 +2031,8 @@ lists_view=full ; Tags may be "enabled" or "disabled" (default = "enabled") ; When disabling tags, don't forget to also turn off tag search in searches.ini. tags = disabled +; User list tags may be "enabled" or "disabled" (default = "disabled") +listTags = enabled ; This controls the maximum length of a single tag; it should correspond with the ; field size in the tags database table. max_tag_length = 64 diff --git a/local/config/vufind/facets.ini b/local/config/vufind/facets.ini index 7b4bd79f901f9cf49f1aa23cfb5f04df41ce3cba..cc9ae187fd5bddaa53d7b881ae4792a48a945d3f 100644 --- a/local/config/vufind/facets.ini +++ b/local/config/vufind/facets.ini @@ -77,6 +77,7 @@ dateRange[] = publishDateSort ; (see https://wiki.apache.org/solr/HierarchicalFaceting but note that we always ; use a trailing slash to avoid ambiguities) ;hierarchical[] = building +;hierarchical[] = format ; General sort options for hierarchical facets (Home page, Advanced Search and ; SideFacets). @@ -104,7 +105,7 @@ dateRange[] = publishDateSort ; single = Display only the deepest level (default) ; full = Display full hierarchy for each entry ;hierarchicalFacetDisplayStyles[format] = full -; Separator used when display hierarchical facet levels (default is "/") +; Separator used when displaying hierarchical facet levels (default is "/") ;hierarchicalFacetSeparators[format] = " > " ; This section is reserved for special boolean facets. These are displayed @@ -143,6 +144,12 @@ facet_limit = 30 ;facet_limit_by_field[format] = 50 facet_limit_by_field[publishDateSort] = -1 +; Limit facets based on a prefix on a per-field basis: +;facet_prefix_by_field[building] = 22 + +; Filter facet values to those matching a regular expression on a per-field basis: +;facet_matches_by_field[era_facet] = ".+0" + ; By default, the side facets will only show 6 facets and then the "show more" ; button. This can get configured with the showMore settings. ; You can use the * to set a new default setting. @@ -261,6 +268,18 @@ translated_facets[] = finc_class_facet ; These facets will be displayed on the Home Page when FacetList is turned on in ; the content setting of the [HomePage] section of searches.ini. If this section ; is omitted, the [Advanced] section will be used instead. + +; Override the alphabetical sorting for individual facets and display them at the +; top of the limits on the advanced search page. As an example, this could be used +; to display the most commonly searched languages above the rest. All following +; limits display in the natural sorted order. +;limitOrderOverride[language] = Icelandic::English::Spanish +;limitOrderOverride[format] = CD::DVD + +; Optional delimiter to use in the limitOrderOverride settings above. When enabled, +; limits must be separated using the same character set here. +;limitDelimiter = "::" + [HomePage] ;callnumber-first = "Call Number" language = Language diff --git a/local/config/vufind/permissionBehavior.ini b/local/config/vufind/permissionBehavior.ini index 08042db7052a18718217c4fc26c096c8dded0195..488c4a696763a135cf1376edb2dcdc54bce7380b 100644 --- a/local/config/vufind/permissionBehavior.ini +++ b/local/config/vufind/permissionBehavior.ini @@ -78,6 +78,11 @@ defaultDeniedTemplateBehavior = true ;controllerAccess[*] = access.VuFindInterface ;controllerAccess[VuFind\Controller\SearchController] = access.SearchResults +; Configuration for EIT (needed to make it behave correctly in combined +; searches): +[access.EITModule] +deniedTemplateBehavior = showTemplate:error/loginForAccess + ; Example configuration for non-standard favorites permission behavior: ;[feature.Favorites] ;deniedTemplateBehavior = "showMessage:Login for Favorites" diff --git a/local/config/vufind/permissions.ini b/local/config/vufind/permissions.ini index 4e21bed744bb5433bd7cb67295f17fded62fe07c..ed527555d98940ef0e843f149f718c4ff2b3eebc 100644 --- a/local/config/vufind/permissions.ini +++ b/local/config/vufind/permissions.ini @@ -18,8 +18,8 @@ ; The values associated with these keys will be passed along to the services. ; You can define your own permission providers, or use some of the following: ; -; ipRange - Grant the permission to the single IP adresse or to the range. -; Accepts a single IP adresse or a range with a minus character without +; ipRange - Grant the permission to the single IP addresse or to the range. +; Accepts a single IP address or a range with a minus character without ; blanks as separator. Also partial addresses can be used (e.g. 192.168 ; denotes 192.168.0.0-192.168.255.255) and IPv6 addresses are also ; supported (unless PHP is compiled with IPv6 disabled). diff --git a/local/config/vufind/searches.ini b/local/config/vufind/searches.ini index 179e1624d2ef979d5e7ad5f0271a21665db5f9d0..1253602e9e94b8e631c04fbce36d83f7bcda436e 100644 --- a/local/config/vufind/searches.ini +++ b/local/config/vufind/searches.ini @@ -107,14 +107,13 @@ retain_filters_by_default = true ;default_filters[] = "institution:MyInstitution" ;default_filters[] = "(format:Book AND institution:MyInstitution)" -; Avoid query rebuilding in case the user injects a query in lucene like syntax. -; Provide an array of Search Types for which the lucene query syntax detection -; MUST NOT be applied. -; Note: this does not work for Search Types used in advanced search as avoiding -; advanced lucene detection needs would have to be set either for all -; Search Types used in advanced search or for none at all. Disabling -; advanced lucene detection for a search does not work partially! -;override_advanced_lucene_detection[] = Signatur; +; Default record fields to fetch from Solr when searching (Solr parameter 'fl') +; Default is "*" (since VuFind 7.0). To restore previous setting, just uncomment +; line below. +;default_record_fields = "*,score" + +; Whether the "versions" (FRBR) link and record tab are enabled. Default is true. +;display_versions = true [Cache] ; This controls whether the parsed searchspecs.yaml file will be stored to @@ -196,6 +195,7 @@ title = sort_title ; using the default_sort setting in the [General] section above. [DefaultSortingByType] CallNumber = callnumber-sort +WorkKeys = year ; Each search type defined in searchspecs.yaml can have one or more "recommendations ; modules" associated with it in the following sections. These plug-ins will cause @@ -226,6 +226,12 @@ CallNumber = callnumber-sort ; defined abbrevation of the service provider to resolve the service for ; a specific instituion. Default [url] is set ; to: www.bibliothek.tu-chemnitz.de/finc/%s/ebsco3.cgi +; EDSResults:[GET parameter]:[result limit] +; Display EDS search results matching the terms found in the specified +; GET parameter (default = "lookfor"), limited to a specified number of +; matches (default = 5). +; EDSResultsDeferred:[GET parameter]:[result limit] +; Same as EDSResults, but loaded via AJAX. ; EuropeanaResults:[url]:[requestParam]:[limit]:[unwanted data providers] ; Display search results from Europeana.eu API. ; Parameters (all are optional): @@ -393,11 +399,14 @@ CallNumber = callnumber-sort ; ; AlphaBrowseLink:index ; Use the query to generate a link to the specified alphabrowse index -; DOI:[prefix] +; DOI:[prefix]:[redirect_exact_match] ; Detect DOIs in the user search query. If a DOI makes up part of the search, ; display a link to resolve it. If it makes up the entire query, redirect to ; the resolver automatically. [prefix] is the URL of the resolver to which -; the DOI itself will be appended. +; the DOI itself will be appended. [redirect_exact_match] is a boolean; set it +; to true if you want a search query that consists only of a DOI to redirect +; automatically to the DOI resolver, or set it to false to only display a +; message with a link. (Default is "true"). ; ExternalSearch:[link label]:[url template] ; Display a link to an external search system. The contents of the <a> tag ; will be [link label] (which will be run through the translator -- use a @@ -406,7 +415,7 @@ CallNumber = callnumber-sort ; search's lookfor parameter. If you omit the %%lookfor%% placeholder, the ; search terms will simply be appended to the end of the URL template. ; Libraryh3lp:[type]:[id]:[skin] -; Display a chat box for the Libraryh3lp service. [type] indicats the type +; Display a chat box for the Libraryh3lp service. [type] indicates the type ; of chat being used (either "queue" or "user"). [id] is the name of the ; queue or user. [skin] is optional and specifies a skin number to use. ; RecommendLinks:[ini section]:[ini name] @@ -457,11 +466,14 @@ Author[] = AuthorFacets ;Author[] = SpellingSuggestions ;Author[] = WorldCatIdentities ;CallNumber[] = "TopFacets:ResultsTop" ; disable spelling in this context +; Do not show top recommendations for the Versions (WorkKeys) search by default +WorkKeys[] = false [NoResultsRecommendations] ;CallNumber[] = SwitchQuery::wildcard:truncatechar ;CallNumber[] = RemoveFilters ;CallNumber[] = AlphaBrowseLink:lcc +WorkKeys[] = false ; These settings control the top and side recommendations within the special Author ; module (the page accessed by clicking on an author's name within the search @@ -594,12 +606,12 @@ topic = "Subjects" ; This section allows sharding to be used to pull in content from additional Solr ; servers. All servers used in sharding must contain the same index fields needed ; to satisfy queries sent to them AND they must all include different ID numbers! -; Leave this commented out to disable sharding. +; Leave this section commented out to disable sharding. ; To use sharding, simply fill in lines using the format: ; [display name of shard] = [URL of shard (without http://)] [IndexShards] -;Library Catalog = localhost:8080/solr/biblio -;Website = localhost:8080/solr/website +;Library Catalog = localhost:8983/solr/biblio +;Website = localhost:8983/solr/website ai = ai.ub.uni-leipzig.de/solr/biblio main = index.ub.uni-leipzig.de/solr/biblio @@ -736,9 +748,28 @@ view=full ; IlsStatusMonitor:[target] - Performs an AJAX health check of the ILS and ; prepends a warning message to the HTML element identified by the jQuery selector ; provided in [target] (which defaults to .searchHomeContent. +; +; TemplateBased:[template] - Display the content of template defined after colon. +; The template could be in phtml or md (markdown) format and has to be saved in +; ContentBlock/TemplateBased/ directory of your theme. You can use language code +; filename suffixes to present the content in different languages. For example, +; you could add "content[] = TemplateBased:foo" to the settings below, then create +; a ContentBlock/TemplateBased/foo.phtml (or foo.md) file in your theme's templates +; directory to provide default content. If you wanted a different version of the +; page for the German language, you could create a foo_de.phtml or foo_de.md file, +; and that version would be loaded when the user's language was set to German. ; content[] = IlsStatusMonitor content[] = FacetList +; This section controls default behavior of the Search API. +; [API] +; These permissions must be defined in permissions.ini to grant access to the API: +; recordAccessPermission = access.api.Record +; searchAccessPermission = access.api.Search + +; This is the maximum number of results that can be returned in a single response: +; maxLimit = 100 + ; PreMunge is used by a listener on the search-pre event ; registered by the MungerInjectionDelegatorFactory. This listener applies ; the regex patterns as configured for the search handlers diff --git a/local/config/vufind/searchspecs.yaml b/local/config/vufind/searchspecs.yaml index b2fa3dba00c6324a83925fd2eabb9cc2cd5bcacf..9e25158349c760543babe86800df8eb34a39a0df 100644 --- a/local/config/vufind/searchspecs.yaml +++ b/local/config/vufind/searchspecs.yaml @@ -657,4 +657,10 @@ multipart: titleUniform: QueryFields: title_id_str_mv: - - [onephrase, ~] \ No newline at end of file + - [onephrase, ~] + +WorkKeys: + QueryFields: + work_keys_str_mv: + - [and, 100] + - [or, ~] diff --git a/themes/finc/templates/RecordDriver/DefaultRecord/toolbar.phtml b/themes/finc/templates/RecordDriver/DefaultRecord/toolbar.phtml index 51191a23b23efb4df5a10d05efd7196b0b73f930..3c3928a92b2428740f58caf14529b104cc5ad10a 100644 --- a/themes/finc/templates/RecordDriver/DefaultRecord/toolbar.phtml +++ b/themes/finc/templates/RecordDriver/DefaultRecord/toolbar.phtml @@ -29,7 +29,6 @@ class="staff-view-btn"> <i class="fa fa-info-circle" aria-hidden="true"></i> <?=$this->translate('Staff View')?> </a> - <?=$this->inlineScript(\Zend\View\Helper\HeadScript::FILE, 'staff_view_button.js', 'SET');?> </li> <?php endif; ?> <?php /* finc: we don't use sms, CK