]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/config.tt2
TPac: facet display filtering and sorting
[working/Evergreen.git] / Open-ILS / src / templates / opac / parts / config.tt2
1 [% 
2
3 ##############################################################################
4 # This file contains skin-level configuration settings.
5 # Many of these settings will probably migrate into actor.org_unit_settings.
6 ##############################################################################
7
8 ##############################################################################
9 # RefWorks configuration
10 ##############################################################################
11 # RefWorks is a Web-based citation manager
12 ctx.refworks.enabled = 'false';
13
14 # Base URL for RefWorks
15 ctx.refworks.url = 'http://www.refworks.com';
16
17 # Some sites have a hosted RefWorks instance at a different URL;
18 # in addition, you might want to proxy access to RefWorks - for example:
19 # ctx.refworks.url = 'http://librweb.laurentian.ca/login?url=http://refworks.scholarsportal.info';
20
21 ##############################################################################
22 # OpenURL resolution
23 ##############################################################################
24 # Evergreen provides the ability to point at an OpenURL resolver to find
25 # electronic resources for a given ISSN or ISBN. Currently, only the SFX
26 # resolver is supported.
27 #
28 # You must enable the open-ils.resolver instance in opensrf.xml to use
29 # this feature.
30 ##############################################################################
31
32 openurl.enabled = 'false';
33 openurl.baseurl = 'http://sfx.example.com/instance';
34
35 ##############################################################################
36 # Google Analytics support
37 ##############################################################################
38 # You can enable Google Analytics support in Evergreen by entering a
39 # valid Google Analytics code and changing 'false' to 'true'
40 ##############################################################################
41 google_analytics.enabled = 'false';
42 google_analytics.code = 'UA-9999999-99';
43
44 ##############################################################################
45 # Enable "Forgot your password?" prompt at login
46 ##############################################################################
47 reset_password = 'true';
48
49 ##############################################################################
50 # Misc. UI Settings
51 ##############################################################################
52
53 ##############################################################################
54 # Size of the jacket image to display on the record detail summary.
55 # Sizes vary depending on added content provider.
56 # Options are "small", "medium", and "large"
57 record.summary.jacket_size = 'medium';
58
59
60 ##############################################################################
61 # Define the order in which facets are displayed.  Only facets listed here 
62 # will be displayed.  To show all facets sorted by name, comment out this 
63 # setting.  
64 # facet.display = [] # show no facets
65 facet.display = [
66     {facet_class => 'author',  facet_order => ['personal', 'corporate']},
67     {facet_class => 'subject', facet_order => ['topic']},
68     {facet_class => 'series',  facet_order => ['seriestitle']},
69     {facet_class => 'subject', facet_order => ['name', 'geographic']}
70 ];
71
72 %]