Skip to content

Commit

Permalink
Merge pull request #194 from TAMULib/sprint13-staging
Browse files Browse the repository at this point in the history
Sprint13 staging
  • Loading branch information
jcreel authored Jun 14, 2021
2 parents a8e710b + 505d3b9 commit b7a0aad
Show file tree
Hide file tree
Showing 4 changed files with 2,905 additions and 2,167 deletions.
1 change: 1 addition & 0 deletions dspace/config/local.cfg.tamu
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ webui.browse.index.2 = author:metadata:dc.contributor.*\,dc.creator:text
webui.browse.index.3 = title:item:title
webui.browse.index.4 = subject:metadata:dc.subject.*:text
webui.browse.index.5 = department:metadata:thesis.degree.department\,local.department:text
webui.browse.index.6 = type:metadata:dc.type.*:text


search.index.1 = author:dc.contributor.*
Expand Down
7 changes: 4 additions & 3 deletions dspace/config/spring/api/discovery.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
<ref bean="searchFilterAuthor" />
<ref bean="searchFilterSubject" />
<ref bean="searchFilterIssued" />
<ref bean="searchFilterType" />
<ref bean="searchFilterContentInOriginalBundle"/>
</list>
</property>
Expand Down Expand Up @@ -489,6 +490,7 @@
<property name="sortOrderFilterPage" value="COUNT"/>
</bean>


<bean id="searchFilterKeyword" class="org.dspace.discovery.configuration.DiscoverySearchFilterFacet">
<property name="indexFieldName" value="Keyword"/>
<property name="metadataFields">
Expand All @@ -513,7 +515,6 @@
<property name="sortOrderFilterPage" value="COUNT"/>
</bean>


<bean id="searchFilterSeries" class="org.dspace.discovery.configuration.DiscoverySearchFilterFacet">
<property name="indexFieldName" value="Series"/>
<property name="metadataFields">
Expand Down Expand Up @@ -688,10 +689,10 @@
</bean>

<bean id="searchFilterType" class="org.dspace.discovery.configuration.DiscoverySearchFilterFacet">
<property name="indexFieldName" value="Type"/>
<property name="indexFieldName" value="type"/>
<property name="metadataFields">
<list>
<value>dc.type</value>
<value>dc.type.*</value>
</list>
</property>
<property name="facetLimit" value="10"/>
Expand Down
Loading

0 comments on commit b7a0aad

Please sign in to comment.