-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.xml
49 lines (49 loc) · 2.48 KB
/
Config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Name>Alma Blacklight Catalog Search</Name>
<Author>Atlas Systems</Author>
<Version>1.3.0</Version>
<Active>True</Active>
<Type>Addon</Type>
<Description>Catalog Search and Import Addon that uses Alma as the catalog and Blacklight as the discovery layer</Description>
<Forms>
<Form>FormRequest</Form>
</Forms>
<Settings>
<Setting name="CatalogURL" value="" type="string">
<Description>The base URL that the query strings are appended to.</Description>
</Setting>
<Setting name="HomeURL" value="" type="string">
<Description>Home page of the catalog.</Description>
</Setting>
<Setting name="AutoSearch" value="true" type="boolean">
<Description>Defines whether the search should be automatically performed when the form opens.</Description>
</Setting>
<Setting name="RemoveTrailingSpecialCharacters" value="true" type="boolean">
<Description>Defines whether to remove trailing special characters on import or not.</Description>
</Setting>
<Setting name="SearchPriorityList" value="Catalog Number,Title,Author,Call Number" type="string">
<Description>The fields that should be searched on, in order of search priority. Each field in the string will be checked for a valid corresponding search value in the request, and the first search type with a valid corresponding value will be used.</Description>
</Setting>
<Setting name="AutoRetrieveItems" value="true" type="boolean">
<Description>Defines whether or not the addon should automatically retrieve items related to a record being viewed.</Description>
</Setting>
<Setting name="AlmaAPIURL" value="https://api-na.hosted.exlibrisgroup.com/almaws/v1/" type="string">
<Description>The URL to the Alma API</Description>
</Setting>
<Setting name="AlmaAPIKey" value="" type="string">
<Description>API key used for interacting with the Alma API.</Description>
</Setting>
<Setting name="MMS_IDPrefix" value="" type="string">
<Description>The MMS_ID Prefix are any characters that proceed the mms_id of a record in the URL.</Description>
</Setting>
</Settings>
<Files>
<File>Utility.lua</File>
<File>DataMapping.lua</File>
<File>CustomizedMapping.lua</File>
<File>Catalog.lua</File>
<File>WebClient.lua</File>
<File>AlmaApi.lua</File>
</Files>
</Configuration>