Changeset 5946 for ComponentRegistry


Ignore:
Timestamp:
01/21/15 16:33:20 (9 years ago)
Author:
Twan Goosen
Message:

merged some changes from trunk to 2.0 branch

Location:
ComponentRegistry/branches/ComponentRegistry-2.0
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • ComponentRegistry/branches/ComponentRegistry-2.0

  • ComponentRegistry/branches/ComponentRegistry-2.0/CHANGES

    r5882 r5946  
    11Bug Fixes and Features
     2
     3Release ComponentRegistry-1.14.5 (?? January 2014)
     4- The Component Registry now connects to the CLARIN Concept Registry instead of ISOcat. https://trac.clarin.eu/ticket/731
     5- Group components can now be saved as new in the private workspace. https://trac.clarin.eu/ticket/717
     6- Reduced noice in log output. https://trac.clarin.eu/ticket/714 ; https://trac.clarin.eu/ticket/715
    27
    38Release ComponentRegistry-1.14.2 (2 December 2014)
  • ComponentRegistry/branches/ComponentRegistry-2.0/ComponentRegistry

  • ComponentRegistry/branches/ComponentRegistry-2.0/ComponentRegistry/src/main/webapp/WEB-INF/web-shib.xml

    r5917 r5946  
    66-->
    77
    8 <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     8<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
     9                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    910         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    1011    <display-name>ComponentRegistry</display-name>
    1112    <description>Clarin Metadata Component Registry</description>
    12 
    13 
    14     <context-param>
    15         <param-name>ShhaaConfigLocation</param-name>
    16         <param-value>/WEB-INF/shhaa.xml</param-value>
    17     </context-param>
     13    <listener>
     14        <listener-class>org.springframework.web.context.ContextLoaderListener
     15        </listener-class>
     16    </listener>
     17   
    1818    <context-param>
    1919        <param-name>contextConfigLocation</param-name>
     
    2121        </param-value>
    2222    </context-param>
     23   
     24    <context-param>
     25        <param-name>eu.clarin.cmdi.componentregistry.jpaDialect</param-name>
     26        <param-value>org.hibernate.dialect.PostgreSQLDialect</param-value>
     27    </context-param>
    2328
    24     <listener>
    25         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    26     </listener>
    27    
    28    
     29    <context-param>
     30        <param-name>ShhaaConfigLocation</param-name>
     31        <param-value>/WEB-INF/shhaa.xml</param-value>
     32    </context-param>   
    2933
    3034    <filter>
  • ComponentRegistry/branches/ComponentRegistry-2.0/ComponentRegistry/src/main/webapp/WEB-INF/web-test.xml

    r5917 r5946  
    1717        <param-value>classpath:spring-config/applicationContext.xml,classpath:spring-config/container-environment.xml
    1818        </param-value>
     19    </context-param>
     20   
     21    <context-param>
     22        <param-name>eu.clarin.cmdi.componentregistry.jpaDialect</param-name>
     23        <param-value>org.hibernate.dialect.PostgreSQLDialect</param-value>
    1924    </context-param>
    2025
  • ComponentRegistry/branches/ComponentRegistry-2.0/UPDATE

    r5934 r5946  
    2525=== 1.15.0 ===
    2626
    27 - ComponentRegistry no longer provides its own JDBC driver jar. In case the Tomcat
    28   container does NOT provide a suitable PostgreSQL JDBC driver yet:
    29 
    30     - Download a suitable version and deploy it as a provided library in the Tomcat
    31 
    3227- Remove the context parameter eu.clarin.cmdi.componentregistry.jpaDialect from the global
    3328  context.xml or application context fragment, as it is now provided within the web.xml
    3429  of the application itself.
    35  
    3630 
    3731=== 1.14.5 ===
     
    6357          name="eu.clarin.cmdi.componentregistry.jpaDialect"
    6458          value="org.hibernate.dialect.PostgreSQLDialect"/>
     59         
     60- ComponentRegistry no longer provides its own JDBC driver jar. In case the Tomcat
     61  container does NOT provide a suitable PostgreSQL JDBC driver yet:
     62
     63    - Download a suitable version and deploy it as a provided library in the Tomcat
     64
    6565
    6666=== 1.13 ===
Note: See TracChangeset for help on using the changeset viewer.