Skip to content
Snippets Groups Projects
Commit 084552a8 authored by André Lahmann's avatar André Lahmann
Browse files

refs #7920:

* added export.ini to local config folder
* added trailing whitespace to German translation of "Export to"
parent b251859e
cache/*
;####################################################################
;##################### DO NOT DELETE THIS HEADER ####################
;################### Leipzig University Library © 2015 ##############
;
; This is the default ALPHA-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 ALPHA-specific customization after this header.
;
;##################### DO NOT DELETE THIS HEADER ####################
;####################################################################
; This configuration file controls the formats which can be used to export data.
; The order of the sections will control the display order of export options within
; VuFind.
;
; Explanation of keys in each section:
;
; combineNamespaces[] - a repeatable field containing a namespace prefix and URL
; separated by a pipe. This only applies when combineXpath is used (see below).
; combineXpath - an Xpath expression specifying XML tags which should be merged;
; this can be used for bulk export of XML records when it is necessary to merge
; multiple single records into a single collection. It is not needed for
; non-XML formats.
; headers[] - a repeatable field containing HTTP headers that should be output to
; specify the appropriate export format.
; label - the label to display to the user when referring to this format; if omitted,
; the section name will be used by default.
; redirectUrl - a URL to forward the user to when they export this format (used for
; sending data to an external service like RefWorks). The URL must include one
; or more of these special tokens:
; {config|[section]|[setting]|[default value if unset]} - A value extracted
; from config.ini (with a default value in case of missing setting).
; {encodedCallback} - The URL that the external service can use to retrieve
; the export data, URL-encoded.
; {encodedConfig|[section]|[setting]|[default value if unset]} - Same as the
; {config...} setting above, except result will be URL-encoded.
; requiredMethods[] - a repeatable field indicating methods which must be available
; on the record driver object in order to allow export in this format.
; bulkExportType - [ "link" | "download" ] - link renders a download link in the UI,
; download offers to save the export-file directly; overrides the defaultType
; setting found in the [BulkExport] section of config.ini. This distinction
; currently only affects users with Javascript enabled; the 'download' option
; cannot be implemented in a user-friendly way when Javascript is disabled.
[RefWorks]
requiredMethods[] = getTitle
redirectUrl = "{config|RefWorks|url|http://www.refworks.com}/express/expressimport.asp?vendor={encodedConfig|RefWorks|vendor|VuFind}&filter=RefWorks%20Tagged%20Format&url={encodedCallback}"
headers[] = "Content-type: text/plain; charset=utf-8"
[EndNoteWeb]
requiredMethods[] = getTitle
redirectUrl = "{config|EndNoteWeb|url|https://www.myendnoteweb.com/EndNoteWeb.html}?partnerName={encodedConfig|EndNoteWeb|vendor|VuFind}&dataRequestUrl={encodedCallback}&func=directExport&dataIdentifier=1&Init=Yes&SrcApp=CR&returnCode=ROUTER.Unauthorized"
headers[] = "Content-type: text/plain; charset=utf-8"
[EndNote]
requiredMethods[] = getTitle
headers[] = "Pragma: public"
headers[] = "Expires: Thu, 01 Dec 1994 16:00:00 GMT"
headers[] = "Cache-Control: must-revalidate, post-check=0, pre-check=0, private"
headers[] = "Content-type: application/x-endnote-refer"
headers[] = "Content-Disposition: attachment; filename=\"vufind.enw\";"
[MARC]
requiredMethods[] = getMarcRecord
headers[] = "Content-type: application/MARC"
headers[] = "Content-Disposition: attachment; filename=\"VuFindExport.mrc\";"
[MARCXML]
requiredMethods[] = getMarcRecord
headers[] = "Content-type: text/xml"
headers[] = "Content-Disposition: attachment; filename=\"VuFindExport.xml\";"
combineNamespaces[] = "marc21|http://www.loc.gov/MARC21/slim"
combineXpath = "/marc21:collection/marc21:record"
[RDF]
requiredMethods[] = getRDFXML
headers[] = "Content-type: application/rdf+xml"
[BibTeX]
requiredMethods[] = getTitle
headers[] = "Content-type: application/x-bibtex; charset=utf-8"
[RIS]
requiredMethods[] = getTitle
headers[] = "Content-type: application/x-research-info-systems; charset=utf-8"
\ No newline at end of file
;####################################################################
;##################### 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 ####################
;####################################################################
...@@ -310,7 +310,7 @@ Expires = Ablaufdatum ...@@ -310,7 +310,7 @@ Expires = Ablaufdatum
Expires on = "Läuft ab am" Expires on = "Läuft ab am"
Export = "Exportieren" Export = "Exportieren"
Export Record = Exportieren Export Record = Exportieren
Export to = Exportieren nach Export to = "Exportieren nach "
Faculty = Fakultät Faculty = Fakultät
Favorite = "Favorit" Favorite = "Favorit"
Favorites = Favoriten Favorites = Favoriten
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment