Changeset 1805


Ignore:
Timestamp:
03/23/12 08:17:04 (12 years ago)
Author:
herste
Message:

small change

Location:
vlo/trunk/vlo_webapp
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • vlo/trunk/vlo_webapp/CHANGES

    r1457 r1805  
    11Bug Fixes and Features
     2
     3TODO: https://trac.mpi.nl/ticket/1630
     4Make one distribution
     5
     6Release VLO 2.5 (22 march 2012):
     7Lot's of bugfixes and small enhancements.
    28
    39Release VLO-2.3.1 (28 June 2011):
  • vlo/trunk/vlo_webapp/src/main/resources/applicationContext.xml

    r1783 r1805  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
     3       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
    44
    5   <bean id="configuration" class="eu.clarin.cmdi.vlo.Configuration" factory-method="getInstance">
    6     <property name="solrUrl" value="http://localhost:8080/vlo_solr" />
    7 <!--    <property name="solrUrl" value="http://lux16.mpi.nl:8080/vlo_solr" />-->
    8 <!--    <property name="solrUrl" value="http://catalog.clarin.eu:8080/vlo_solr" />-->
    9     <property name="IMDIBrowserUrl" value="http://corpus1.mpi.nl/ds/imdi_browser?openpath=" />
    10     <property name="handleServerUrl" value="http://hdl.handle.net/" />
    11     <property name="facetFields">
    12     <!-- The possible values of facets are defined in the schema.xml of the solr_server installation.
    13          If you want to add a facet you need to adjust this schema.xml and reindex the data.
    14          -->
    15       <list> <!-- List of facets to be shown as columns, the order specified is kept in the application -->
    16         <value>collection</value>
    17         <value>language</value>
    18         <value>continent</value>
    19         <value>genre</value>
    20         <value>country</value>
    21         <value>subject</value>
    22         <value>organisation</value>
    23         <value>resourceType</value>
    24         <value>dataProvider</value>
    25         <value>nationalProject</value>
    26 <!--        <value>year</value>-->
    27       </list>
    28     </property>
    29   </bean>
     5    <!--
     6                        Property placeholder that allows init parameters defined in servlet context to be used as property values
     7                (in this case admin users list)
     8                    -->
     9    <bean class="org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer">
     10    </bean>
     11
     12    <bean id="configuration" class="eu.clarin.cmdi.vlo.Configuration" factory-method="getInstance">
     13        <property name="solrUrl" value="${eu.clarin.cmdi.vlo.solrUrl}" />
     14        <!--<property name="solrUrl" value="http://localhost:8080/vlo_solr" />-->
     15        <!--    <property name="solrUrl" value="http://lux16.mpi.nl:8080/vlo_solr" />-->
     16        <!--    <property name="solrUrl" value="http://catalog.clarin.eu:8080/vlo_solr" />-->
     17        <property name="IMDIBrowserUrl" value="http://corpus1.mpi.nl/ds/imdi_browser?openpath=" />
     18        <property name="handleServerUrl" value="http://hdl.handle.net/" />
     19        <property name="facetFields">
     20            <!-- The possible values of facets are defined in the schema.xml of the solr_server installation.
     21            If you want to add a facet you need to adjust this schema.xml and reindex the data.
     22            -->
     23            <list> <!-- List of facets to be shown as columns, the order specified is kept in the application -->
     24                <value>collection</value>
     25                <value>language</value>
     26                <value>continent</value>
     27                <value>genre</value>
     28                <value>country</value>
     29                <value>subject</value>
     30                <value>organisation</value>
     31                <value>resourceType</value>
     32                <value>dataProvider</value>
     33                <value>nationalProject</value>
     34                <!--        <value>year</value>-->
     35            </list>
     36        </property>
     37    </bean>
    3038
    3139</beans>
Note: See TracChangeset for help on using the changeset viewer.