From 2370fa72b8ed17476cd2a5c4564da104fa1e5842 Mon Sep 17 00:00:00 2001 From: Sebastian Kehr <kehr@ub.uni-leipzig.de> Date: Fri, 29 Jun 2018 16:10:54 +0200 Subject: [PATCH] availability and publish date range facet (refs #13543) --- docker-compose.yml | 8 +- fid_bbi/.gitignore | 1 + fid_bbi/config/vufind/facets.ini | 10 +- fid_bbi/dev/.gitignore | 5 - fid_bbi/dev/config/vufind/DAIA.ini.sample | 22 - fid_bbi/dev/config/vufind/DDS.ini.sample | 22 - .../config/vufind/EmailProfiles.ini.sample | 22 - .../vufind/ExternalCatalogue.json.sample | 27 - fid_bbi/dev/config/vufind/FincILS.ini.sample | 22 - .../config/vufind/HierarchyDefault.ini.sample | 22 - fid_bbi/dev/config/vufind/NoILS.ini.sample | 22 - .../config/vufind/OpenUrlRules.json.sample | 51 -- fid_bbi/dev/config/vufind/SolrAI.ini.sample | 26 - .../dev/config/vufind/branches.yaml.sample | 461 ---------- fid_bbi/dev/config/vufind/config.ini.sample | 44 - fid_bbi/dev/config/vufind/export.ini.sample | 22 - fid_bbi/dev/config/vufind/facets.ini.sample | 23 - .../dev/config/vufind/permissions.ini.sample | 22 - fid_bbi/dev/config/vufind/searches.ini.sample | 22 - .../dev/config/vufind/searchspecs.yaml.sample | 784 ------------------ fid_bbi/dev/httpd-vufind.conf.sample | 81 -- fid_bbi/dev/languages/DDS/de.ini | 15 - fid_bbi/dev/languages/DDS/en.ini | 15 - fid_bbi/dev/languages/Ebsco/de.ini | 15 - fid_bbi/dev/languages/Ebsco/en.ini | 15 - fid_bbi/dev/languages/EmailHold/de.ini | 17 - fid_bbi/dev/languages/EmailHold/en.ini | 17 - fid_bbi/dev/languages/HoldingStatus/de.ini | 17 - fid_bbi/dev/languages/HoldingStatus/en.ini | 17 - fid_bbi/dev/languages/PDA/de.ini | 18 - fid_bbi/dev/languages/PDA/en.ini | 18 - fid_bbi/dev/languages/de.ini | 19 - fid_bbi/dev/languages/en.ini | 18 - fid_bbi/languages/Facet/de.ini | 6 + fid_bbi/languages/Facet/en.ini | 5 + 35 files changed, 26 insertions(+), 1905 deletions(-) delete mode 100644 fid_bbi/dev/.gitignore delete mode 100644 fid_bbi/dev/config/vufind/DAIA.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/DDS.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/EmailProfiles.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/ExternalCatalogue.json.sample delete mode 100644 fid_bbi/dev/config/vufind/FincILS.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/HierarchyDefault.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/NoILS.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/OpenUrlRules.json.sample delete mode 100644 fid_bbi/dev/config/vufind/SolrAI.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/branches.yaml.sample delete mode 100644 fid_bbi/dev/config/vufind/config.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/export.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/facets.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/permissions.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/searches.ini.sample delete mode 100644 fid_bbi/dev/config/vufind/searchspecs.yaml.sample delete mode 100644 fid_bbi/dev/httpd-vufind.conf.sample delete mode 100644 fid_bbi/dev/languages/DDS/de.ini delete mode 100644 fid_bbi/dev/languages/DDS/en.ini delete mode 100644 fid_bbi/dev/languages/Ebsco/de.ini delete mode 100644 fid_bbi/dev/languages/Ebsco/en.ini delete mode 100644 fid_bbi/dev/languages/EmailHold/de.ini delete mode 100644 fid_bbi/dev/languages/EmailHold/en.ini delete mode 100644 fid_bbi/dev/languages/HoldingStatus/de.ini delete mode 100644 fid_bbi/dev/languages/HoldingStatus/en.ini delete mode 100644 fid_bbi/dev/languages/PDA/de.ini delete mode 100644 fid_bbi/dev/languages/PDA/en.ini delete mode 100644 fid_bbi/dev/languages/de.ini delete mode 100644 fid_bbi/dev/languages/en.ini create mode 100644 fid_bbi/languages/Facet/de.ini create mode 100644 fid_bbi/languages/Facet/en.ini diff --git a/docker-compose.yml b/docker-compose.yml index 4413284a07f..8d27507350f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '2' services: php: - image: ubleipzig/vufind-php:5.6-7-debug + image: ubleipzig/vufind-php:5.6-8-debug volumes: - ./:/usr/local/vufind environment: @@ -42,7 +42,7 @@ services: - mail-data:/home/dev/Maildir:z grunt: - image: ubleipzig/vufind-php:5.6-7-debug + image: ubleipzig/vufind-php:5.6-8-debug volumes: - ./:/usr/local/vufind:z - npm-cache:/home/www-data/.npm @@ -51,7 +51,7 @@ services: command: npm install && node_modules/.bin/grunt watch composer: - image: ubleipzig/vufind-php:7.2-7-debug + image: ubleipzig/vufind-php:7.2-8-debug volumes: - ./:/usr/local/vufind:z - composer-cache:/home/www-data/.composer @@ -92,6 +92,8 @@ networks: driver_opts: com.docker.network.bridge.name: vufind-bridge driver: bridge + driver_opts: + com.docker.network.bridge.name: vufind-bridge ipam: driver: default config: diff --git a/fid_bbi/.gitignore b/fid_bbi/.gitignore index 47aeea1e6db..1a4355ce61e 100644 --- a/fid_bbi/.gitignore +++ b/fid_bbi/.gitignore @@ -1 +1,2 @@ cache/* +/dev \ No newline at end of file diff --git a/fid_bbi/config/vufind/facets.ini b/fid_bbi/config/vufind/facets.ini index 605ff6fc597..29ccba2858b 100644 --- a/fid_bbi/config/vufind/facets.ini +++ b/fid_bbi/config/vufind/facets.ini @@ -22,7 +22,9 @@ override_full_sections = "Results,Advanced_Settings,HomePage,Advanced" [Results] ; institution = Institution -access_facet = Access +;access_facet = Access +; use facet_avail instead of access_facet +facet_avail = Facet::Availability format = Medientyp ;format_de15 = Medientyp UBL finc_class_facet = Fachgebiet @@ -31,6 +33,8 @@ finc_class_facet = Fachgebiet language = Language author_facet = Author mega_collection = Datensammlung +publishDateSort = "adv_search_year" + [Results_Settings] exclude = false @@ -49,9 +53,11 @@ mega_collection = Datensammlung [Advanced] format = Medientyp mega_collection = Datensammlung +facet_avail = Facet::Availability [Advanced_Settings] facet_limit = 100 +special_facets = "daterange" translated_facets[] = format translated_facets[] = language translated_facets[] = access_facet @@ -60,6 +66,7 @@ translated_facets[] = rvk_facet translated_facets[] = mega_collection translated_facets[] = format translated_facets[] = language +translated_facets[] = facet_avail:Facet ;translated_facets[] = topic_facet [HideFacetValue] @@ -69,3 +76,4 @@ local_heading_facet_dezi4[] = "z"; local_heading_facet_dezi4[] = "g"; finc_class_facet[] = "not assigned" language[] = "not assigned" +facet_avail[] = "Non-free" \ No newline at end of file diff --git a/fid_bbi/dev/.gitignore b/fid_bbi/dev/.gitignore deleted file mode 100644 index 70e8c6d360c..00000000000 --- a/fid_bbi/dev/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -config/vufind/*.ini -config/vufind/*.json -config/vufind/*.yaml -httpd-vufind.conf -cache/* diff --git a/fid_bbi/dev/config/vufind/DAIA.ini.sample b/fid_bbi/dev/config/vufind/DAIA.ini.sample deleted file mode 100644 index 01b53f0a626..00000000000 --- a/fid_bbi/dev/config/vufind/DAIA.ini.sample +++ /dev/null @@ -1,22 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the default DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the default INI-file located in the folder vufind2/local -; - -[Parent_Config] -relative_path = ../../../config/vufind/DAIA.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -;override_full_sections = "Languages,AlphaBrowse_Types" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/config/vufind/DDS.ini.sample b/fid_bbi/dev/config/vufind/DDS.ini.sample deleted file mode 100644 index 705fe1956ca..00000000000 --- a/fid_bbi/dev/config/vufind/DDS.ini.sample +++ /dev/null @@ -1,22 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the default DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the default INI-file located in the folder vufind2/local -; - -[Parent_Config] -;relative_path = ../../../config/vufind/DSS.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -;override_full_sections = "Languages,AlphaBrowse_Types" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### \ No newline at end of file diff --git a/fid_bbi/dev/config/vufind/EmailProfiles.ini.sample b/fid_bbi/dev/config/vufind/EmailProfiles.ini.sample deleted file mode 100644 index 5b1ada9133f..00000000000 --- a/fid_bbi/dev/config/vufind/EmailProfiles.ini.sample +++ /dev/null @@ -1,22 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the default DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the default INI-file located in the folder vufind2/local -; - -[Parent_Config] -relative_path = ../../../config/vufind/EmailProfiles.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -;override_full_sections = "Acquisition" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/config/vufind/ExternalCatalogue.json.sample b/fid_bbi/dev/config/vufind/ExternalCatalogue.json.sample deleted file mode 100644 index 47dc67807f4..00000000000 --- a/fid_bbi/dev/config/vufind/ExternalCatalogue.json.sample +++ /dev/null @@ -1,27 +0,0 @@ -{ - "ppn": { - "DE-540": { - "pattern": "http://194.94.197.6/libero/WebopacOpenURL.cls?ACTION=DISPLAY&LANG=DE&RID=%s" - }, - "DE-D13": { - "pattern": "http://webopac.skd.museum/libero/WebopacOpenURL.cls?ACTION=DISPLAY&RID=%s", - "filter": { - "getSourceID": [ - "0", - "22" - ] - } - }, - "DE-L242": { - "pattern": "http://webpac.bibhgb.hgb-leipzig.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&RID=%s" - }, - "DE-D117": { - "pattern": "http://www.hfmdd.de:8060/alipac/-/item-local?VID=%s" - } - }, - "id": { - "DE-14": { - "pattern": "http://katalogbeta.slub-dresden.de/id/%s/" - } - } -} \ No newline at end of file diff --git a/fid_bbi/dev/config/vufind/FincILS.ini.sample b/fid_bbi/dev/config/vufind/FincILS.ini.sample deleted file mode 100644 index 06bbd78fc7c..00000000000 --- a/fid_bbi/dev/config/vufind/FincILS.ini.sample +++ /dev/null @@ -1,22 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the default DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the default INI-file located in the folder vufind2/local -; - -[Parent_Config] -relative_path = ../../../config/vufind/FincILS.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -;override_full_sections = "Languages,AlphaBrowse_Types" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/config/vufind/HierarchyDefault.ini.sample b/fid_bbi/dev/config/vufind/HierarchyDefault.ini.sample deleted file mode 100644 index d3ac9fdf67f..00000000000 --- a/fid_bbi/dev/config/vufind/HierarchyDefault.ini.sample +++ /dev/null @@ -1,22 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the default DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the default INI-file located in the folder vufind2/local -; - -[Parent_Config] -relative_path = ../../../config/vufind/HierarchyDefault.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -;override_full_sections = "Languages,AlphaBrowse_Types" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/config/vufind/NoILS.ini.sample b/fid_bbi/dev/config/vufind/NoILS.ini.sample deleted file mode 100644 index da190dee45f..00000000000 --- a/fid_bbi/dev/config/vufind/NoILS.ini.sample +++ /dev/null @@ -1,22 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the ISIL-instance-specific DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the ISIL-instance-specific default INI-file located in -; the folder vufind2/ISIL/config/vufind -; - -[Parent_Config] -relative_path = ../../../config/vufind/NoILS.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -;override_full_sections = "Languages,AlphaBrowse_Types" -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/config/vufind/OpenUrlRules.json.sample b/fid_bbi/dev/config/vufind/OpenUrlRules.json.sample deleted file mode 100644 index e4e5a634a8a..00000000000 --- a/fid_bbi/dev/config/vufind/OpenUrlRules.json.sample +++ /dev/null @@ -1,51 +0,0 @@ -{ - "Redi": [ - { - "exclude": [ - { - "methods": { - "getSourceID": "49", - "getFormats": "ElectronicBookPart" - }, - "recorddriver": "finc\\RecordDriver\\SolrAI" - }, - { - "methods": { - "getSourceID": "48" - }, - "recorddriver": "finc\\RecordDriver\\SolrAI" - }, - { - "methods": { - "getSourceID": "28" - }, - "recorddriver": "finc\\RecordDriver\\SolrAI" - } - ], - "include": [ - { - "methods": { - "getSourceID": "49" - }, - "recorddriver": "finc\\RecordDriver\\SolrAI" - } - ] - } - ], - "Ezb": [ - { - "exclude": [ - { - "recorddriver": "finc\\RecordDriver\\SolrAI" - } - ], - "include": [ - { - "methods": { - "getSourceID": "0" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/fid_bbi/dev/config/vufind/SolrAI.ini.sample b/fid_bbi/dev/config/vufind/SolrAI.ini.sample deleted file mode 100644 index 84c18ffc83b..00000000000 --- a/fid_bbi/dev/config/vufind/SolrAI.ini.sample +++ /dev/null @@ -1,26 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the default DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the default INI-file located in the folder vufind2/local -; - -;[Parent_Config] -;relative_path = ../../../config/vufind/SolrAI.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -;override_full_sections = "Languages,AlphaBrowse_Types" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### - -[General] -; base url to ai blob server -baseUrl = "https://ai.ub.uni-leipzig.de/blob?%s" diff --git a/fid_bbi/dev/config/vufind/branches.yaml.sample b/fid_bbi/dev/config/vufind/branches.yaml.sample deleted file mode 100644 index 1f408c25bc2..00000000000 --- a/fid_bbi/dev/config/vufind/branches.yaml.sample +++ /dev/null @@ -1,461 +0,0 @@ -# That file represents a basic structure of addresses and openings of the Leipzig -# University Library. Due to the yaml format please notice that all changes have to -# be made by line-indentation without tabs and charset utf-8. Please configure and -# use your editor in advance. -http://data.ub.uni-leipzig.de/resource/UBL/department/zw01: - branch: "Bibliotheca Albertina" - branchno: zw01 - streetaddress: Beethovenstraße 6 - postalcode: "04103" - city: Leipzig - tel: +49(0) 341 97 30577 - email: info@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=198" - note: "Aktuelle Hinweise zu den Öffnungszeiten, z. B. an Sonn- und Feiertagen, finden Sie auf der Website." - parts: - http://data.ub.uni-leipzig.de/resource/UBL/department/zw01/part/01: - branchpart: "Freihand / Lesesaal / Offenes Magazin" - tel: [+49(0) 341 97 30587, +49(0) 341 97 30528] - email: [freihand@ub.uni-leipzig.de, lesesaal@ub.uni-leipzig.de] -# openinghours: -# - {open: 08:00:00, close: 24:00:00, days: Monday-Saturday} - http://data.ub.uni-leipzig.de/resource/UBL/department/zw01/part/02: - branchpart: "Bibliothekarischer Service" -# openinghours: -# - {open: 08:00:00, close: 20:00:00, days: Monday-Friday} -# - {open: 08:00:00, close: 19:00:00, days: Saturday} - http://data.ub.uni-leipzig.de/resource/UBL/department/zw01/part/03: - branchpart: Forschungslesesaal - tel: [+49(0) 341 97 30526, +49(0) 341 97 30584] - email: sondersammlungen@ub.uni-leipzig.de -# openinghours: -# - {open: 09:00:00, close: 20:00:00, days: Monday-Friday} -# - {open: 10:00:00, close: 19:00:00, days: Saturday} -http://data.ub.uni-leipzig.de/resource/UBL/department/zw02: - branch: "Campus-Bibliothek, 24 h geöffnet" - branchno: zw02 - streetaddress: "Universitätsstraße 3 (im Hörsaalgebäude)" - postalcode: "04109" - city: Leipzig - tel: [+49(0) 341 97 30811, +49(0) 341 97 30813] - fax: +49(0) 341 97 39239 - email: zbcb@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=196" - parts: - http://data.ub.uni-leipzig.de/resource/UBL/department/zw02/part/01: - branchpart: "Bibliothekarischer Service" -# openinghours: -# - {open: 08:00:00, close: 19:00:00, days: Monday-Friday} -# - {open: 08:00:00, close: 13:00:00, days: Saturday} - http://data.ub.uni-leipzig.de/resource/UBL/department/zw02/part/02: - branchpart: "Hauptzugang im Hörsaalgebäude" -# openinghours: -# - {open: 07:00:00, close: 22:00:00, days: Monday-Friday} -# - {open: 07:00:00, close: 14:00:00, days: Saturday} - note: "Der Hauptzugang im Hörsaalgebäude ist von montags bis freitags 7:00 - 22:00 Uhr und samstags 7:00 - 14:00 Uhr geöffnet. Außerhalb dieser Zeiten benutzen Sie bitte den Nachtzugang am Augustusplatz. Über den Nachtzugang kann die Bibliothek nur mit gültiger Lesekarte betreten werden." -zw08paed: - branch: "Nebenstandort Kunstpädagogik Institut für Kunstpädagogik der Universität Leipzig" - branchno: zw08paed - streetaddress: "Ritterstr. 8-10 (Geschwister-Scholl-Haus)" - postalcode: "04109" - city: Leipzig - tel: +49(0) 341 97 37250 -# fax: +49(0) 341 97 30759 - email: kunstpae@uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/standorte/kunst/" -zw09: - branch: "Museum für Musikinstrumente der Universität Leipzig" - branchno: zw11-01 - streetaddress: "Johannisplatz 5–11" - postalcode: "04103" - city: Leipzig - tel: +49(0) 341 97 30750 - fax: +49(0) 341 97 30759 - email: musik.museum@uni-leipzig.de - url: "http://mfm.uni-leipzig.de/dt/dasmuseum/bibliothek.php" -# openinghours: -# - {open: 14:00:00, close: 17:00:00, days: Thursday} -# - {open: 09:00:00, close: 16:00:00, days: Friday} -zw11: - branch: "Bibliothek Musik" - branchno: zw11 - streetaddress: "Neumarkt 9-19, Städtisches Kaufhaus" - postalcode: "04109" - city: Leipzig - tel: +49(0) 341 97 30478 - email: zbmus@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=489" -# openinghours: -# - {open: 09:00:00, close: 12:00:00, days: Monday-Thursday} -# - {open: 13:00:00, close: 15:30:00, days: Monday} -# - {open: 13:00:00, close: 18:00:00, days: Tuesday-Thursday} -# - {open: 09:00:00, close: 14:00:00, days: Friday} -# note: "Sie erreichen die Bibliothek über Aufgang D, 3. Etage. Bitte beachten Sie, dass der Zugang über die Universitätsstraße erfolgt. Achten Sie auch auf die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." - note: "Sie erreichen die Bibliothek über Aufgang D, 3. Etage. Bitte beachten Sie, dass der Zugang über die Universitätsstraße erfolgt." -zw12: - branch: "Bibliothek Psychologie" - branchno: zw12 - streetaddress: "Seeburgstraße 14/20" - postalcode: "04103" - city: Leipzig - tel: +49(0) 341 97 30625 - email: zbcb@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=499" -# openinghours: -# - {open: 09:00:00, close: 18:00:00, days: Monday-Wednesday} -# - {open: 09:00:00, close: 16:00:00, days: Thursday-Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw13: - branch: "Karl-Sudhoff-Institut" - branchno: zw13 - streetaddress: "Käthe-Kollwitz-Straße 82" - postalcode: "04109" - city: Leipzig - tel: +49(0) 341 97 25607 - fax: +49(0) 341 97 25624 - email: zbmed.sudhoff@medizin.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=604" -# openinghours: -# - {open: 13:00:00, close: 17:00:00, days: Monday} -# - {open: 13:00:00, close: 17:00:00, days: Thursday} -# - {open: 09:00:00, close: 13:00:00, days: Tuesday-Wednesday} -# - {open: 09:00:00, close: 13:00:00, days: Friday} -http://data.ub.uni-leipzig.de/resource/UBL/department/zw31: - branch: "Bibliothek Rechtswissenschaft" - branchno: zw31 - streetaddress: Burgstraße 27 - postalcode: "04109" - city: Leipzig - tel: +49(0) 341 97 30655 - fax: +49(0) 341 97 30669 - email: zbrewi@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=504" - parts: - 01: -# openinghours: -# - {open: 08:00:00, close: 22:00:00, days: Monday-Friday} -# - {open: 10:00:00, close: 22:00:00, days: Saturday} - 02: - branchpart: Zeitschriftenlesesaal -# openinghours: -# - {open: 09:00:00, close: 19:00:00, days: Monday-Friday} -# - {open: 12:00:00, close: 17:00:00, days: Saturday} -http://data.ub.uni-leipzig.de/resource/UBL/department/zw41: - branch: "Bibliothek Orientwissenschaften / Ethnologie, Indologie, Japanologie, Orientalistik, Religionswissenschaft, Sinologie, Zentralasienwissenschaften" - branchno: zw41 - streetaddress: Schillerstraße 6 - postalcode: "04109" - city: Leipzig - tel: [+49(0) 341 97 37117 (Auskunft), +49(0) 341 97 37139 (Benutzung)] - fax: +49(0) 341 97 30698 - email: zborient@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=494" -# openinghours: -# - {open: 09:00:00, close: 20:00:00, days: Monday-Friday} -# note: "Standort: Graduiertenkolleg 1553: http://www.ub.uni-leipzig.de/ubl/standorte/orientwissenschaften/graduiertenkolleg-orientwissenschaften.html. Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -# note: "Standort: Graduiertenkolleg 1553: http://www.ub.uni-leipzig.de/ubl/standorte/orientwissenschaften/graduiertenkolleg-orientwissenschaften.html." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw41alt: - branch: "Bibliothek Orientwissenschaften / Altorientalistik" - branchno: zw41alt - streetaddress: "Goethestraße 2 (Krochhochhaus)" - postalcode: "04109" - city: Leipzig - tel: +49(0) 341 97 37023 - email: zborient@ub.uni-leipzig.de - url: "http://www.uni-leipzig.de/altorient/bibliothek.html" -# openinghours: -# - {open: 10:00:00, close: 16:00:00, days: Monday-Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit. In der vorlesungsfreien Zeit ist die Benutzung auch nach Vereinbarung möglich." - note: "Die aktuellen Öffnungszeiten sind auf der Website zu finden." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw41ori: - branch: "Bibliothek Orientwissenschaften / Ägyptologie" - branchno: zw41ori - streetaddress: "Goethestraße 2 (Krochhochhaus)" - postalcode: "04109" - city: Leipzig - tel: +49(0) 341 97 37018 - email: bibliothek.aegyptologie@uni-leipzig.de - url: "http://www.gko.uni-leipzig.de/aegyptologisches-institut/bibliothek/informationen.html" - note: "Die Öffnungszeiten finden Sie auf der Website des Instituts." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw46: - branch: "Bibliothek Erziehungswissenschaft" - branchno: zw46 - streetaddress: "Karl-Heine-Straße 22b" - postalcode: "04229" - city: Leipzig - tel: +49(0) 341 97 30674 - fax: +49(0) 341 97 39236 - email: zberz@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=471" - parts: - http://data.ub.uni-leipzig.de/resource/UBL/department/zw46/part/01: - branchpart: Ausleihe -# openinghours: -# - {open: 10:00:00, close: 16:00:00, days: Monday} -# - {open: 10:00:00, close: 17:00:00, days: Tuesday-Thursday} -# - {open: 10:00:00, close: 16:00:00, days: Friday} - http://data.ub.uni-leipzig.de/resource/UBL/department/zw46/part/02: - branchpart: Freihandbereich-Lesesaal -# openinghours: -# - {open: 09:00:00, close: 18:00:00, days: Monday-Thursday} -# - {open: 09:00:00, close: 16:00:00, days: Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw66: - branch: "Bibliothek Geowissenschaften" - branchno: zw66 - streetaddress: Talstraße 35 - postalcode: "04103" - city: Leipzig - tel: +49(0) 341 97 30629 - email: zbgeowi@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=437" -# openinghours: -# - {open: 09:00:00, close: 12:00:00, days: Monday-Friday} -# - {open: 13:00:00, close: 16:00:00, days: Monday-Thursday} -zw71: - branch: "Bibliothek Physik" - branchno: zw71 - streetaddress: "Linnéstraße 5" - postalcode: "04103" - city: Leipzig - tel: +49(0) 341 97 32414 - fax: +49(0) 341 97 39242 - email: zbphys@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=463" -# openinghours: -# - {open: 09:00:00, close: 12:00:00, days: Monday-Friday} -# - {open: 13:00:00, close: 18:00:00, days: Monday-Wednesday} -# - {open: 13:00:00, close: 16:00:00, days: Thursday-Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw76: - branch: "Bibliothek Chemie/Physik" - branchno: zw76 - streetaddress: Johannisallee 29 - postalcode: "04103" - city: Leipzig - tel: +49(0) 341 97 30630 - fax: +49(0) 341 97 39253 - email: zbchem@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=463" -# openinghours: -# - {open: 08:00:00, close: 12:00:00, days: Monday-Friday} -# - {open: 13:00:00, close: 16:30:00, days: Monday} -# - {open: 13:00:00, close: 16:30:00, days: Friday} -# - {open: 13:00:00, close: 18:00:00, days: Tuesday-Thursday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw81: - branch: "Bibliothek Biowissenschaften" - branchno: zw81 - streetaddress: Talstraße 35 - postalcode: "04103" - city: Leipzig - tel: +49(0) 341 97 36783 - fax: +49(0) 341 97 39245 - email: zbbio@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=415" -# openinghours: -# - {open: 09:00:00, close: 12:00:00, days: Monday-Friday} -# - {open: 13:00:00, close: 18:00:00, days: Monday-Thursday} -# - {open: 13:00:00, close: 16:00:00, days: Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw81idiv: - branch: "Bibliothek des German Centre for Integrative Biodiversity Research (iDiv) - Nebenstelle der Bibliothek Biowissenschaften" - branchno: zw81idiv - streetaddress: Deutscher Platz 5e - postalcode: "04103" - city: Leipzig - tel: +49(0) 341 97 33102 - email: rebecca.thier-lange@idiv.de - note: "Öffnungszeiten: Dienstag: 10:00 - 12:00 Uhr" -http://data.ub.uni-leipzig.de/resource/UBL/department/zw86: - branch: "Bibliothek Veterinärmedizin" - branchno: zw86 - streetaddress: "An den Tierkliniken 5" - postalcode: "04103" - city: Leipzig - tel: [+49(0) 341 97 30623, +49(0) 341 97 38017 (Ausleihe)] - fax: +49(0) 341 97 39246 - email: zbvetmed@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=514" -# openinghours: -# - {open: 09:00:00, close: 20:00:00, days: Monday-Thursday} -# - {open: 09:00:00, close: 18:00:00, days: Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw91: - branch: "Zentralbibliothek Medizin" - branchno: zw91 - streetaddress: "Johannisallee 34" - postalcode: "04103" - city: Leipzig - tel: [+49(0) 341 97 14012 (Ausleihe), +49(0) 341 97 14014 (Fernleihe)] - url: "https://www.ub.uni-leipzig.de/index.php?id=519" -# openinghours: -# - {open: 08:00:00, close: 19:00:00, days: Monday-Thursday} -# - {open: 09:00:00, close: 18:00:00, days: Friday} -# - {open: 11:00:00, close: 16:00:00, days: Saturday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw96: - branch: "Bibliothek Sportwissenschaft" - branchno: zw96 - streetaddress: Jahnallee 59 - postalcode: "04109" - city: Leipzig - tel: [+49(0) 341 97 30635, +49(0) 341 97 30663 (Ausleihe)] - fax: +49(0) 341 97 31628 - email: zbspowi@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=509" -# openinghours: -# - {open: 10:00:00, close: 18:00:00, days: Monday-Thursday} -# - {open: 10:00:00, close: 16:00:00, days: Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw01theat: - branch: "Nebenstandort Theaterwissenschaft" - branchno: zw01theat - streetaddress: Ritterstraße 16 - postalcode: "04109" - city: Leipzig - tel: +49(0) 341 97 30400 - fax: +49(0) 341 97 30409 - email: theaterw@uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/standorte/bibliotheca-albertina/nebenstandort-theaterwissenschaft/" - note: "Die Öffnungszeiten erfragen Sie bitte per automatischer Antwort hier: nebenstelle-tw@uni-leipzig.de." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw02kmw: - branch: "Nebenstandort Kommunikations- und Medienwissenschaft" - branchno: zw02kmw - streetaddress: Burgstraße 21, Raum 3.22 - postalcode: "04109" - city: Leipzig - tel: +49(0) 341 97 35784 - email: bgenner@rz.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/standorte/campus-bibliothek/nebenstandort-kmw/" -# openinghours: -# - {open: 09:00:00, close: 16:30:00, days: Monday} -# - {open: 09:00:00, close: 18:00:00, days: Tuesday} -# - {open: 09:00:00, close: 16:30:00, days: Wednesday-Thursday} -# - {open: 09:00:00, close: 15:00:00, days: Friday} -http://data.ub.uni-leipzig.de/resource/UBL/department/zw05: - branch: "Bibliothek Klassische Archäologie und Ur- und Frühgeschichte" - branchno: zw05 - streetaddress: Ritterstraße 14 - postalcode: "04109" - city: Leipzig - tel: +49(0) 341 97 30707 - email: zbarch@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=449" - parts: - http://data.ub.uni-leipzig.de/resource/UBL/department/zw05/part/01: - branchpart: "Klassische Archäologie (2. Etage)" -# openinghours: -# - {open: 09:00:00, close: 19:00:00, days: Monday} -# - {open: 09:00:00, close: 20:00:00, days: Tuesday} -# - {open: 09:00:00, close: 17:00:00, days: Wednesday} -# - {open: 09:00:00, close: 20:00:00, days: Thursday} -# - {open: 09:00:00, close: 17:00:00, days: Friday} - - http://data.ub.uni-leipzig.de/resource/UBL/department/zw05/part/02: - branchpart: "Ur- und Frühgeschichte (3. Etage)" -# openinghours: -# - {open: 09:00:00, close: 19:00:00, days: Monday-Friday} - note: "Aktuelle Öffnungszeiten in der vorlesungsfreien Zeit sind dem Aushang in der Zweigbibliothek zu entnehmen." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw06: - branch: "Bibliothek Deutsches Literaturinstitut Leipzig" - branchno: zw06 - streetaddress: Wächterstraße 34 - postalcode: "04107" - city: Leipzig - tel: +49(0) 341 97 30312 - email: neumannb@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=410" -# openinghours: -# - {open: 13:00:00, close: 16:00:00, days: Monday} -# - {open: 10:00:00, close: 12:00:00, days: Tuesday} -# - {open: 13:00:00, close: 16:00:00, days: Tuesday} -# - {open: 13:00:00, close: 18:00:00, days: Wednesday} -# - {open: 13:00:00, close: 16:00:00, days: Thursday} -# - {open: 10:00:00, close: 13:00:00, days: Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw07: - branch: "Bibliothek Geographie" - branchno: zw07 - streetaddress: Johannisallee 19 - postalcode: "04103" - city: Leipzig - tel: +49(0) 341 97 38586 - fax: +49(0) 341 97 39241 - email: zbgeogr@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=484" -# openinghours: -# - {open: 09:00:00, close: 12:00:00, days: Monday-Friday} -# - {open: 13:00:00, close: 18:00:00, days: Monday} -# - {open: 13:00:00, close: 18:00:00, days: Wednesday-Thursday} -# - {open: 13:00:00, close: 16:00:00, days: Tuesday} -# - {open: 13:00:00, close: 15:00:00, days: Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw08: - branch: "Bibliothek Kunst" - branchno: zw08 - streetaddress: Dittrichring 18-20 - postalcode: "04109" - city: Leipzig - tel: [+49(0) 341 97 35545, +49(0) 341 97 35547] - fax: +49(0) 341 97 39244 - email: zbkunst@ub.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=456" -# openinghours: -# - {open: 09:30:00, close: 18:00:00, days: Monday-Wednesday} -# - {open: 09:30:00, close: 20:00:00, days: Thursday} -# - {open: 09:00:00, close: 14:00:00, days: Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw11instr: - branch: "Bibliothek Musik / Nebenstelle Museum für Musikinstrumente" - branchno: zw11instr - streetaddress: "Johannisplatz 5-11" - postalcode: "04103" - city: Leipzig - tel: +49(0) 341 97 30750 - fax: +49(0) 341 97 30759 - email: musik.museum@uni-leipzig.de - url: "http://mfm.uni-leipzig.de/" -# openinghours: -# - {open: 14:00:00, close: 17:00:00, days: Thursday} -# - {open: 09:00:00, close: 16:00:00, days: Friday} -http://data.ub.uni-leipzig.de/resource/UBL/department/zw76thph: - branch: "Bibliothek Chemie/Physik / Nebenstelle Theoretische Physik" - branch-no: zw71thph - street-address: "Vor dem Hospitaltore 1" - postal-code: "04103" - city: Leipzig - tel: +49(0) 341 97 32430 - email: gabriele.menge@itp.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=463" -# openinghours: -# - {open: 09:00:00, close: 12:00:00, days: Tuesday-Thursday} -zw91018: - branch: "Bibliothek Medizin / Kopfkliniken" - branch-no: zw91018 - street-address: "Johannisallee 34" - postal-code: "04103" - city: Leipzig - tel: +49(0) 341 97 14170 - fax: +49(0) 341 97 17163 - email: zbmed2@medizin.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=519" -# openinghours: -# - {open: 08:00:00, close: 19:00:00, days: Monday-Thursday} -# - {open: 08:00:00, close: 18:00:00, days: Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." -http://data.ub.uni-leipzig.de/resource/UBL/department/zw91016: - branch: "Zentralbibliothek Medizin 2" - branchno: zw91016 - streetaddress: "Johannisallee 34" - postalcode: "04103" - city: Leipzig - tel: +49(0) 341 97 14170 - fax: +49(0) 341 97 17163 - email: zbmed2@medizin.uni-leipzig.de - url: "https://www.ub.uni-leipzig.de/index.php?id=519" -# openinghours: -# - {open: 08:00:00, close: 19:00:00, days: Monday-Thursday} -# - {open: 08:00:00, close: 18:00:00, days: Friday} -# note: "Bitte beachten Sie die veränderten Öffnungszeiten während der vorlesungsfreien Zeit (siehe Website)." - diff --git a/fid_bbi/dev/config/vufind/config.ini.sample b/fid_bbi/dev/config/vufind/config.ini.sample deleted file mode 100644 index 46b2b8f2838..00000000000 --- a/fid_bbi/dev/config/vufind/config.ini.sample +++ /dev/null @@ -1,44 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the ISIL-instance-specific DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the ISIL-instance-specific default INI-file located in -; the folder vufind2/ISIL/config/vufind -; - -[Parent_Config] -relative_path = ../../../config/vufind/config.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -override_full_sections = "Http" -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### - -[System] -debug = false - -[Index] -; lokaler Solr -url = http://localhost:8080/solr - -; Solr5Entwickler -;url = http://172.18.85.142:8085/solr - -[Site] -url = "http://localhost" - -[Authentication] -hash_passwords = "1" -encrypt_ils_password = "1" -ils_encryption_key = "3e2ac9b644dd4e0b64b179a0309ead13bb59202a" - -[Http] -; Pfad zu SSL-Zertifikaten in der docker-VM (global für CentOS konfiguriert) -sslcapath = "/etc/ssl/certs" diff --git a/fid_bbi/dev/config/vufind/export.ini.sample b/fid_bbi/dev/config/vufind/export.ini.sample deleted file mode 100644 index dfc6d42b14a..00000000000 --- a/fid_bbi/dev/config/vufind/export.ini.sample +++ /dev/null @@ -1,22 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the default DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the default INI-file located in the folder vufind2/local -; - -[Parent_Config] -relative_path = ../../../config/vufind/export.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -;override_full_sections = "EndNote" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/config/vufind/facets.ini.sample b/fid_bbi/dev/config/vufind/facets.ini.sample deleted file mode 100644 index 68d848f9185..00000000000 --- a/fid_bbi/dev/config/vufind/facets.ini.sample +++ /dev/null @@ -1,23 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the default DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the default INI-file located in the folder vufind2/local -; - -[Parent_Config] -relative_path = ../../../config/vufind/facets.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -;override_full_sections = "Languages,AlphaBrowse_Types" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### - diff --git a/fid_bbi/dev/config/vufind/permissions.ini.sample b/fid_bbi/dev/config/vufind/permissions.ini.sample deleted file mode 100644 index c62d333770a..00000000000 --- a/fid_bbi/dev/config/vufind/permissions.ini.sample +++ /dev/null @@ -1,22 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the default DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the default INI-file located in the folder vufind2/local -; - -[Parent_Config] -relative_path = ../../../config/vufind/permissions.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -;override_full_sections = "Languages,AlphaBrowse_Types" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### \ No newline at end of file diff --git a/fid_bbi/dev/config/vufind/searches.ini.sample b/fid_bbi/dev/config/vufind/searches.ini.sample deleted file mode 100644 index 7ce560f40bf..00000000000 --- a/fid_bbi/dev/config/vufind/searches.ini.sample +++ /dev/null @@ -1,22 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is the default DEV-INI-file and inherits -; all the settings from the INI-file defined in [Parent_Config] which -; points to the default INI-file located in the folder vufind2/local -; - -[Parent_Config] -relative_path = ../../../config/vufind/searches.ini - -; A comma-separated list of config sections from the parent which should be -; completely overwritten by the equivalent sections in this configuration; -; any sections not listed here will be merged on a section-by-section basis. -;override_full_sections = "Languages,AlphaBrowse_Types" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/config/vufind/searchspecs.yaml.sample b/fid_bbi/dev/config/vufind/searchspecs.yaml.sample deleted file mode 100644 index 2b741dc3e11..00000000000 --- a/fid_bbi/dev/config/vufind/searchspecs.yaml.sample +++ /dev/null @@ -1,784 +0,0 @@ ---- -# Listing of search types and their component parts and weights. -# -# Format is: -# searchType: -# # CustomMunge is an optional section to define custom pre-processing of -# # user input. See below for details of munge actions. -# CustomMunge: -# MungeName1: -# - [action1, actionParams] -# - [action2, actionParams] -# - [action3, actionParams] -# MungeName2: -# - [action1, actionParams] -# # DismaxFields is optional and defines the fields sent to the Dismax handler -# # when we are able to use it. QueryFields will be used for advanced -# # searches that Dismax cannot support. QueryFields is always used if no -# # DismaxFields section is defined. -# DismaxFields: -# - field1^boost -# - field2^boost -# - field3^boost -# # DismaxParams is optional and allows you to override default Dismax settings -# # (i.e. mm / bf) on a search-by-search basis. Enclose the parameter values -# # in quotes for proper behavior. If you want global default values for these -# # settings, you can edit the appropriate search handler in -# # solr/biblio/conf/solrconfig.xml. -# DismaxParams: -# - [param1_name, param1_value] -# - [param2_name, param2_value] -# - [param3_name, param3_value] -# # This optional setting may be used to specify which Dismax handler to use. By -# # default, VuFind provides two options: dismax (for the old, standard -# # Dismax) and edismax (for Extended Dismax). You can also configure your own -# # in solrconfig.xml, but VuFind relies on the name "edismax" to identify an -# # Extended Dismax handler. If you omit this setting, the default value from -# # the default_dismax_handler setting in the [Index] section of config.ini -# # will be used. -# DismaxHandler: dismax|edismax -# # QueryFields define the fields we are searching when not using Dismax; VuFind -# # detects queries that will not work with Dismax and switches to QueryFields -# # as needed. -# QueryFields: -# SolrField: -# - [howToMungeSearchstring, weight] -# - [differentMunge, weight] -# DifferentSolrField: -# - [howToMunge, weight] -# # The optional FilterQuery section allows you to AND a static query to the -# # dynamic query generated using the QueryFields; see JournalTitle below -# # for an example. This is applied whether we use DismaxFields or -# # QueryFields. -# FilterQuery: (optional Lucene filter query) -# ExactSettings: -# DismaxFields: ... -# QueryFields: ... -# # All the same settings as above, but for exact searches, i.e. search terms -# # enclosed in quotes. Allows different fields or weights for exact -# # searches. See below for commented-out examples. -# -# ...etc. -# -#----------------------------------------------------------------------------------- -# -# Within the QueryFields area, fields are OR'd together, unless they're in an -# anonymous array with a numeric instead of alphanumeric key, in which case the -# first element is a two-value array that tells us what the type (AND or OR) and -# weight of the whole group should be. -# -# So, given: -# -# test: -# QueryFields: -# A: -# - [onephrase, 500] -# - [and, 200] -# B: -# - [and, 100] -# - [or, 50] -# # Start an anonymous array to group; first element indicates AND grouping -# # and a weight of 50 -# 0: -# 0: -# - AND -# - 50 -# C: -# - [onephrase, 200] -# D: -# - [onephrase, 300] -# # Note the "not" attached to the field name as a minus, and the use of ~ -# # to mean null ("no special weight") -# -E: -# - [or, ~] -# D: -# - [or, 100] -# -# ...and the search string -# -# test "one two" -# -# ...we'd get -# -# (A:"test one two"^500 OR -# A:(test AND "one two")^ 200 OR -# B:(test AND "one two")^100 OR -# B:(test OR "one two")^50 -# ( -# C:("test one two")^200 AND -# D:"test one two"^300 AND -# -E:(test OR "one two") -# )^50 OR -# D:(test OR "one two")^100 -# ) -# -#----------------------------------------------------------------------------------- -# -# Munge types are based on the original Solr.php code, and consist of: -# -# onephrase: eliminate all quotes and do it as a single phrase. -# testing "one two" -# ...becomes ("testing one two") -# -# and: AND the terms together -# testing "one two" -# ...becomes (testing AND "one two") -# -# or: OR the terms together -# testing "one two" -# ...becomes (testing OR "one two") -# -# identity: Use the search as-is -# testing "one two" -# ...becomes (testing "one two") -# -# Additional Munge types can be defined in the CustomMunge section. Each array -# entry under CustomMunge defines a new named munge type. Each array entry under -# the name of the munge type specifies a string manipulation operation. Operations -# will be applied in the order listed, and different operations take different -# numbers of parameters. -# -# Munge operations: -# -# [append, text] - Append text to the end of the user's search string -# [lowercase] - Convert string to lowercase -# [preg_replace, pattern, replacement] - Perform a regular expression replace -# using the preg_replace() PHP function. If you use backreferences in your -# replacement phrase, be sure to escape dollar signs (i.e. \$1, not $1). -# [uppercase] - Convert string to uppercase -# -# See the CallNumber search below for an example of custom munging in action. -#----------------------------------------------------------------------------------- - -# These searches use Dismax when possible: -Author: - DismaxParams: - - [bf , ord(publishDateSort)^10] - DismaxFields: - - author^400 - - author2^300 - - author_id^100 - - author_ref^150 - - author_corporate^200 - - author_corporate2^200 - - author_corp_ref^150 - - author_orig^200 - - author2_orig^200 - - author_corporate_orig^200 - - author_corporate2_orig^200 - - author_fuller^50 - - author2_fuller - - author_additional - - author_variant - - author2_variant - QueryFields: - author: - - [onephrase, 350] - - [and, 200] - - [or, 100] - author_fuller: - - [onephrase, 200] - - [and, 100] - - [or, 50] - author2: - - [onephrase, 100] - - [and, 50] - - [or, ~] - author_ref: - - [onephrase, 350] - - [and, 200] - - [or, 100] - author_corporate: - - [onephrase, 350] - - [and, 200] - - [or, 100] - author_corporate2: - - [onephrase, 350] - - [and, 200] - - [or, 100] - author_corp_ref: - - [onephrase, 350] - - [and, 200] - - [or, 100] - author_orig: - - [onephrase, 350] - - [and, 200] - - [or, 100] - author2_orig: - - [onephrase, 350] - - [and, 200] - - [or, 100] - author_corporate_orig: - - [onephrase, 350] - - [and, 200] - - [or, 100] - author_corporate2_orig: - - [onephrase, 350] - - [and, 200] - - [or, 100] - author_id: - - [onephrase, 450] - - [and, 300] - - [or, 200] - author2_fuller: - - [onephrase, 100] - - [and, 50] - - [or, ~] - author_additional: - - [onephrase, 100] - - [and, 50] - - [or, ~] - author_variant: - - [onephrase, 100] - - [and, 50] - - [or, ~] - author2_variant: - - [onephrase, 100] - - [and, 50] - - [or, ~] - -ISN: - DismaxFields: - - isbn - - issn - - ismn - QueryFields: - issn: - - [and, 100] - - [or, ~] - isbn: - - [and, 100] - - [or, ~] - ismn: - - [and, 100] - - [or, ~] - -Signatur: -# DismaxParams: -# - [mm, 0] -# DismaxFields: -# - callnumber_ISIL - QueryFields: - callnumber_ISIL: - - [onephrase, 1000] - - [and, 100] - - [or, ~] - -Barcode: -# DismaxParams: -# - [mm, 0] -# DismaxFields: -# - barcode_ISIL - QueryFields: - barcode_ISIL: - - [onephrase, 1000] - - [and, 100] - - [or, ~] - -Subject: - DismaxFields: - - topic_unstemmed^150 - - topic^100 - - topic_id^100 - - topic_ref^100 - #- geographic^50 - #- genre^50 - #- era - QueryFields: - topic_unstemmed: - - [onephrase, 350] - - [and, 150] - - [or, ~] - topic: - - [onephrase, 300] - - [and, 100] - - [or, ~] - topic_ref: - - [onephrase, 100] - - [and, 50] - - [or, ~] - topic_id: - - [onephrase, 100] - - [and, 50] - - [or, ~] - #- geographic: - # - [onephrase, 300] - # - [and, 100] - # - [or, ~] - #- genre: - # - [onephrase, 300] - # - [and, 100] - # - [or, ~] - #- era: - # - [and, 100] - # - [or, ~] -# ExactSettings: -# DismaxFields: -# - topic_unstemmed^150 -# QueryFields: -# - topic_unstemmed: -# - [onephrase, 350] -# - [and, 150] -# - [or, ~] - -# This field definition is a compromise that supports both journal-level and -# article-level data. The disadvantage is that hits in article titles will -# be mixed in. If you are building a purely article-oriented index, you should -# customize this to remove all of the title_* fields and focus entirely on the -# container_title field. -JournalTitle: - DismaxFields: - - title_short^500 - - title_full_unstemmed^450 - - title_full^400 - - title^300 - - container_title^250 - - title_alt^200 - - title_new^100 - - title_old - - series^100 - - series2 - QueryFields: - title_short: - - [onephrase, 500] - title_full_unstemmed: - - [onephrase, 450] - - [and, 400] - title_full: - - [onephrase, 400] - title: - - [onephrase, 300] - - [and, 250] - container_title: - - [onephrase, 275] - - [and, 225] - title_alt: - - [and, 200] - title_new: - - [and, 100] - title_old: - - [and, ~] - series: - - [onephrase, 100] - - [and, 50] - series2: - - [onephrase, 50] - - [and , ~] - FilterQuery: "format:Journal OR format:Article OR format:ElectronicBookPart" -# ExactSettings: -# DismaxFields: -# - title_full_unstemmed^450 -# QueryFields: -# - title_full_unstemmed: -# - [onephrase, 450] -# - [and, 400] -# FilterQuery: "format:Journal OR format:Article" - -Title: - DismaxParams: - - [mm, 3] - - [bf , ord(publishDateSort)^10] - DismaxFields: -# - title_sub^200 -# - title_short^300 - - title_full_unstemmed^150 - - title_full^100 - - title^900 - - title_alt^200 - - title_new^100 - - title_old - - title_orig^400 - - series^100 - - series2 - - series_orig^100 - QueryFields: - title_short: - - [onephrase, 500] - title_full_unstemmed: - - [onephrase, 150] - - [and, 100] - title_full: - - [onephrase, 100] - title: - - [onephrase, 300] - - [and, 250] - title_alt: - - [and, 200] - title_new: - - [and, 100] - title_old: - - [and, ~] - title_orig: - - [onephrase, 500] - - [and, 200] - series: - - [onephrase, 100] - - [and, 50] - series2: - - [onephrase, 50] - - [and , ~] - series_orig: - - [onephrase, 100] - - [and, 50] -# ExactSettings: -# DismaxFields: -# - title_full_unstemmed^450 -# QueryFields: -# - title_full_unstemmed: -# - [onephrase, 450] -# - [and, 400] - -Series: - DismaxFields: - - series^100 - - series2 - - series_orig^100 - QueryFields: - series: - - [onephrase, 500] - - [and, 200] - - [or, 100] - series2: - - [onephrase, 50] - - [and, 50] - - [or, ~] - series_orig: - - [onephrase, 500] - - [and, 200] - - [or, 100] - -Series2: - DismaxFields: - - series2 - QueryFields: - series2: - - [onephrase, 200] - - [and, 50] - -AllFields: - DismaxParams: - - [mm, 3] - - [bf , ord(publishDateSort)^10] -# - [bf , "if(exists(query({!v='source_id:0'})),10,1)^1000"] - - [bf, "if(exists(query({!v='access_facet:Local*'})),10,1)^1000"] - DismaxFields: - - title_short^1000 - - title_full_unstemmed^1000 - - title_full^400 - - title^500 - - title_alt^200 - - title_new^100 - - title_orig^500 - - series^50 - - series2^30 - - series_orig^50 - - author^500 - - author_fuller^150 - - author_corporate^300 - - author2^400 - - author_corporate2^100 - - author_ref^500 - - author_corp_ref^500 - - author_orig^300 - - author2_orig^300 - - author_corporate_orig^300 - - author_corporate2_orig^100 - - topic_ref^10 - - contents^10 - - topic_unstemmed^15 - - topic^10 - - geographic^10 - - genre^10 - - rvk_label - - allfields_unstemmed^10 - - allfields - - fulltext - - isbn - - issn - - ismn - - QueryFields: - 0: - 0: - - OR - - 50 - title_short: - - [onephrase, 1000] - title_full_unstemmed: - - [onephrase, 1000] - - [and, 500] - title_full: - - [onephrase, 400] - title: - - [onephrase, 300] - - [and, 250] - title_alt: - - [and, 200] - title_new: - - [and, 100] - title_orig: - - [onephrase, 500] - - [and, 400] - series: - - [onephrase, 300] - - [and, 100] - series2: - - [and, 30] - series_orig: - - [onephrase, 200] - - [and, 100] - author: - - [onephrase, 500] - - [and, 250] - author_fuller: - - [onephrase, 150] - - [and, 125] - author_ref: - - [onephrase, 250] - - [and, 250] - - [or, 250] - author_corp_ref: - - [onephrase, 250] - - [and, 250] - - [or, 250] - author_orig: - - [onephrase, 500] - - [and, 250] - author2_orig: - - [and, 50] - author_corporate_orig: - - [onephrase, 500] - - [and, 400] - author_corporate2_orig: - - [and, 50] - author_corporate: - - [onephrase, 500] - - [and, 400] - author2: - - [and, 50] - author_additional: - - [and, 50] - author_corporate2: - - [and, 50] - contents: - - [and, 10] - topic_unstemmed: - - [onephrase, 55] - - [and, 50] - topic: - - [onephrase, 50] - topic_ref: - - [onephrase, 10] - - [and, 5] - - [or, 5] - topic_id: - - [onephrase, 50] - - [and, 25] - allfields_unstemmed: - - [or, 10] -# fulltext_unstemmed: -# - [or, 10] - allfields: - - [or, ~] - fulltext: - - [or, ~] -# description: -# - [or, ~] - rvk_label: - - [onephrase, 500] - - [and, 250] - - [or, 250] - isbn: - - [onephrase, 500] - issn: - - [onephrase, 500] - ismn: - - [onephrase, 500] - imprint: - - [onephrase, 500] - -# ExactSettings: -# DismaxFields: -# - title_full_unstemmed^600 -# - topic_unstemmed^550 -# - allfields_unstemmed^10 -# - fulltext_unstemmed^10 -# - isbn -# - issn -# QueryFields: -# title_full_unstemmed: -# - [onephrase, 600] -# - [and, 500] -# topic_unstemmed: -# - [onephrase, 550] -# - [and, 500] -# allfields_unstemmed: -# - [or, 10] -# fulltext_unstemmed: -# - [or, 10] -# isbn: -# - [onephrase, ~] -# issn: -# - [onephrase, ~] - -# These are advanced searches that never use Dismax: -id: - QueryFields: - id: - - [onephrase, ~] - -ParentID: - QueryFields: - hierarchy_parent_id: - - [onephrase, ~] - -# Fields for exact matches originating from alphabetic browse -ids: - QueryFields: - id: - - [or, ~] - -TopicBrowse: - QueryFields: - topic_browse: - - [onephrase, ~] - -AuthorBrowse: - QueryFields: - author_browse: - - [onephrase, ~] - -TitleBrowse: - QueryFields: - title_full: - - [onephrase, ~] - -DeweyBrowse: - QueryFields: - dewey-raw: - - [onephrase, ~] - -LccBrowse: - QueryFields: - callnumber-a: - - [onephrase, ~] - - - -# CallNumber: - # We use two similar munges here -- one for exact matches, which will get - # a very high boost factor, and one for left-anchored wildcard searches, - # which will return a larger number of hits at a lower boost. - #CustomMunge: - #callnumber_exact: - #- [uppercase] - # Strip whitespace and quotes: - #- [preg_replace, '/[ "]/', ''] - # Escape colons (unescape first to avoid double-escapes): - #- [preg_replace, '/(\\\:)/', ':'] - #- [preg_replace, '/:/', '\:'] - # Strip pre-existing trailing asterisks: - #- [preg_replace, '/\*+$/', ''] - #callnumber_fuzzy: - #- [uppercase] - # Strip whitespace and quotes: - #- [preg_replace, '/[ "]/', ''] - # Escape colons (unescape first to avoid double-escapes): - #- [preg_replace, '/(\\\:)/', ':'] - #- [preg_replace, '/:/', '\:'] - # Strip pre-existing trailing asterisks, then add a new one: - #- [preg_replace, '/\*+$/', ''] - #- [append, "*"] - QueryFields: - callnumber-search: - - [callnumber_exact, 1000] - - [callnumber_fuzzy, ~] - dewey-search: - - [callnumber_exact, 1000] - - [callnumber_fuzzy, ~] - -publisher: - DismaxFields: - - publisher^100 - QueryFields: - publisher: - - [and, 100] - - [or, ~] - -year: - DismaxFields: - - publishDate^100 - QueryFields: - publishDate: - - [and, 100] - - [or, ~] - -language: - QueryFields: - language: - - [and, ~] - -toc: - DismaxFields: - - contents^100 - QueryFields: - contents: - - [and, 100] - - [or, ~] - -topic: - QueryFields: - topic: - - [and, 50] - topic_facet: - - [and, ~] - -geographic: - QueryFields: - geographic: - - [and, 50] - geographic_facet: - - [and, ~] - -genre: - QueryFields: - genre: - - [and, 50] - genre_facet: - - [and, ~] - -era: - QueryFields: - era: - - [and, ~] - -oclc_num: - CustomMunge: - oclc_num: - - [preg_replace, "/[^0-9]/", ""] - # trim leading zeroes: - - [preg_replace, "/^0*/", ""] - QueryFields: - oclc_num: - - [oclc_num, ~] - -rvk: - DismaxFields: - - rvk_facet^100 - QueryFields: - rvk_facet: - - [and, 50] - - [or, 50] - -rvk_path: - QueryFields: - rvk_path: - - [onephrase, ~] - -multipart: - DismaxFields: - - multipart_link^100 - QueryFields: - multipart_link: - - [and, 50] - - [or, 50] diff --git a/fid_bbi/dev/httpd-vufind.conf.sample b/fid_bbi/dev/httpd-vufind.conf.sample deleted file mode 100644 index 3986a0340e0..00000000000 --- a/fid_bbi/dev/httpd-vufind.conf.sample +++ /dev/null @@ -1,81 +0,0 @@ -# Configuration for theme-specific resources: -AliasMatch ^/themes/([0-9a-zA-Z-_]*)/css/(.*)$ /usr/local/vufind2/themes/$1/css/$2 -AliasMatch ^/themes/([0-9a-zA-Z-_]*)/images/(.*)$ /usr/local/vufind2/themes/$1/images/$2 -AliasMatch ^/themes/([0-9a-zA-Z-_]*)/js/(.*)$ /usr/local/vufind2/themes/$1/js/$2 -<Directory ~ "^/usr/local/vufind2/themes/([0-9a-zA-Z-_]*)/(css|images|js)/"> - <IfModule !mod_authz_core.c> - Order allow,deny - Allow from all - </IfModule> - <IfModule mod_authz_core.c> - Require all granted - </IfModule> - AllowOverride All -</Directory> - -# Configuration for general VuFind base: -Alias / /usr/local/vufind2/public/ -<Directory /usr/local/vufind2/public/> - <IfModule !mod_authz_core.c> - Order allow,deny - Allow from all - </IfModule> - <IfModule mod_authz_core.c> - Require all granted - </IfModule> - AllowOverride All - -# php_value short_open_tag On - - # If you wish to use the Shibboleth authentication, uncomment the following lines - # AND comment out the "Require all granted" line above. There must not be any other - # "Require" lines in this configuration section for the "Require shibboleth" - # directive to be effective. - #AuthType shibboleth - #Require shibboleth -</Directory> - -<Location /> - RewriteEngine On - - # If using VuDL, uncomment the following line, fill in your appropriate Fedora - # server and port, and make sure that Apache mod_proxy and mod_proxy_http are - # enabled. - #RewriteRule ^files/(.*)/(.*) http://your-fedora-server/fedora/objects/$1/datastreams/$2/content [P] - - RewriteCond %{REQUEST_FILENAME} -s [OR] - RewriteCond %{REQUEST_FILENAME} -l [OR] - RewriteCond %{REQUEST_FILENAME} -d - RewriteRule ^.*$ - [NC,L] - RewriteRule ^.*$ index.php [NC,L] - - # Uncomment this line to put VuFind into development mode in order to see more detailed messages: - SetEnv VUFIND_ENV development - - # Uncomment this line if you want to use the XHProf profiler; this is a developer-oriented option - # that most users will not need. Make sure the XHProf PHP libraries are available on your include - # path. See http://vufind.org/jira/browse/VUFIND-419 for more details. - #SetEnv VUFIND_PROFILER_XHPROF http://url/to/your/xhprof/web/interface - - # This line points to the local override directory where you should place your customized files - # to override VuFind core features/settings. Set to blank string ("") to disable. - SetEnv VUFIND_LOCAL_DIR /usr/local/vufind2/fid_bbi/dev - - # This line can be used to force caching in a specific location other than the - # default location inside the local settings directory. - # Do not share this directory between multiple instances of VuFind or you may - # encounter unexpected side effects -- while this directory may be outside of the - # local settings directory, there should be exactly one separate cache location per - # local settings directory. - #SetEnv VUFIND_CACHE_DIR /usr/local/vufind2/fid_bbi/cache - - # This line specifies additional Zend Framework 2 modules to load after the standard VuFind module. - # Multiple modules may be specified separated by commas. This mechanism can be used to override - # core VuFind functionality without modifying core code. - SetEnv VUFIND_LOCAL_MODULES finc - - # This line overrides the detection of VuFind base directory. By default it is determined from - # the location of the index.php file, but in case it is e.g. symlinked or there is another reason - # to define the path manually, you can uncomment and modify this line. - #SetEnv VUFIND_APPLICATION_PATH /usr/local/vufind2 -</Location> diff --git a/fid_bbi/dev/languages/DDS/de.ini b/fid_bbi/dev/languages/DDS/de.ini deleted file mode 100644 index 34e9baa3073..00000000000 --- a/fid_bbi/dev/languages/DDS/de.ini +++ /dev/null @@ -1,15 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; -@parent_ini = "../../languages/DDS/de.ini" -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/languages/DDS/en.ini b/fid_bbi/dev/languages/DDS/en.ini deleted file mode 100644 index 66c29954475..00000000000 --- a/fid_bbi/dev/languages/DDS/en.ini +++ /dev/null @@ -1,15 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; -@parent_ini = "../../languages/DDS/en.ini" -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### \ No newline at end of file diff --git a/fid_bbi/dev/languages/Ebsco/de.ini b/fid_bbi/dev/languages/Ebsco/de.ini deleted file mode 100644 index 891ac4fb874..00000000000 --- a/fid_bbi/dev/languages/Ebsco/de.ini +++ /dev/null @@ -1,15 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; -@parent_ini = "../../languages/Ebsco/de.ini" -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/languages/Ebsco/en.ini b/fid_bbi/dev/languages/Ebsco/en.ini deleted file mode 100644 index 0ce444e1814..00000000000 --- a/fid_bbi/dev/languages/Ebsco/en.ini +++ /dev/null @@ -1,15 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; -@parent_ini = "../../languages/Ebsco/en.ini" -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/languages/EmailHold/de.ini b/fid_bbi/dev/languages/EmailHold/de.ini deleted file mode 100644 index 73b85cdfb0f..00000000000 --- a/fid_bbi/dev/languages/EmailHold/de.ini +++ /dev/null @@ -1,17 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; - -@parent_ini = "../../languages/EmailHold/de.ini" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### \ No newline at end of file diff --git a/fid_bbi/dev/languages/EmailHold/en.ini b/fid_bbi/dev/languages/EmailHold/en.ini deleted file mode 100644 index 8a6a545bbb7..00000000000 --- a/fid_bbi/dev/languages/EmailHold/en.ini +++ /dev/null @@ -1,17 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; - -@parent_ini = "../../languages/EmailHold/en.ini" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### \ No newline at end of file diff --git a/fid_bbi/dev/languages/HoldingStatus/de.ini b/fid_bbi/dev/languages/HoldingStatus/de.ini deleted file mode 100644 index 1dc74d5c538..00000000000 --- a/fid_bbi/dev/languages/HoldingStatus/de.ini +++ /dev/null @@ -1,17 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; - -@parent_ini = "../../languages/HoldingStatus/de.ini" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/languages/HoldingStatus/en.ini b/fid_bbi/dev/languages/HoldingStatus/en.ini deleted file mode 100644 index 96dfa61d42a..00000000000 --- a/fid_bbi/dev/languages/HoldingStatus/en.ini +++ /dev/null @@ -1,17 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; - -@parent_ini = "../../languages/HoldingStatus/en.ini" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### diff --git a/fid_bbi/dev/languages/PDA/de.ini b/fid_bbi/dev/languages/PDA/de.ini deleted file mode 100644 index aeb4c2a27c9..00000000000 --- a/fid_bbi/dev/languages/PDA/de.ini +++ /dev/null @@ -1,18 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; - -@parent_ini = "../../languages/PDA/de.ini" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### - diff --git a/fid_bbi/dev/languages/PDA/en.ini b/fid_bbi/dev/languages/PDA/en.ini deleted file mode 100644 index 4623eaafd29..00000000000 --- a/fid_bbi/dev/languages/PDA/en.ini +++ /dev/null @@ -1,18 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; - -@parent_ini = "../../languages/PDA/en.ini" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### - diff --git a/fid_bbi/dev/languages/de.ini b/fid_bbi/dev/languages/de.ini deleted file mode 100644 index 5abb09ac6d8..00000000000 --- a/fid_bbi/dev/languages/de.ini +++ /dev/null @@ -1,19 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; - -@parent_ini = "../../languages/de.ini" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### - - diff --git a/fid_bbi/dev/languages/en.ini b/fid_bbi/dev/languages/en.ini deleted file mode 100644 index 2298100b0c6..00000000000 --- a/fid_bbi/dev/languages/en.ini +++ /dev/null @@ -1,18 +0,0 @@ -;#################################################################### -;##################### DO NOT DELETE THIS HEADER #################### -;################### Leipzig University Library © 2015 ############## -; -; This is a default DEV-LANGUAGE-file and inherits -; all the settings from the LANGUAGE-file defined in @parent_ini which -; points to the default LANGUAGE-file located in the folder -; vufind2/local/languages -; - -@parent_ini = "../../languages/en.ini" - -; -; Add DEV-specific customization after this header. -; -;##################### DO NOT DELETE THIS HEADER #################### -;#################################################################### - diff --git a/fid_bbi/languages/Facet/de.ini b/fid_bbi/languages/Facet/de.ini new file mode 100644 index 00000000000..d016f619c01 --- /dev/null +++ b/fid_bbi/languages/Facet/de.ini @@ -0,0 +1,6 @@ +facet_avail = "Zugang" +Availability = Zugang +Online = Online-Ressourcen +Free = Open Access +Local = Lokale Bestände +Non-Free = Beschränkter Zugang \ No newline at end of file diff --git a/fid_bbi/languages/Facet/en.ini b/fid_bbi/languages/Facet/en.ini new file mode 100644 index 00000000000..dc98cbf7c6f --- /dev/null +++ b/fid_bbi/languages/Facet/en.ini @@ -0,0 +1,5 @@ +Availability = Access +Online = Online-Resources +Free = Open Access +Local = Lokale Holdings +Non-Free = Restricted Access \ No newline at end of file -- GitLab