Ignore:
Timestamp:
02/09/16 14:53:05 (8 years ago)
Author:
Twan Goosen
Message:

merged 2.0 branch into trunk. Trunk now 2.1-SNAPSHOT

Location:
ComponentRegistry/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ComponentRegistry/trunk

  • ComponentRegistry/trunk/UPDATE

    r5945 r6963  
    2323-------------------------------------
    2424
    25 === 1.15.0 ===
     25=== 2.0 ===
     26
     27- The application's public base URL is configured differently as of this
     28  release.
     29
     30  The following context parameter is NO LONGER USED:
     31
     32    eu.clarin.cmdi.componentregistry.serviceRootUrl <- DEPRECATED
     33
     34  Instead, configure the parameter:
     35
     36    eu.clarin.cmdi.componentregistry.serviceUrlPath
     37        e.g. "/ds/ComponentRegistry" (or "" for root deployment)
     38  and
     39
     40    EITHER
     41        eu.clarin.cmdi.componentregistry.serviceUrlBase
     42            e.g. "http://catalog.clarin.eu"
     43    OR (if the application is running behind a proxy)
     44            eu.clarin.cmdi.componentregistry.serviceUrlProtocolHeader
     45                    e.g. (usually) "X-FORWARDED-PROTO"
     46                AND
     47            eu.clarin.cmdi.componentregistry.serviceUrlHostHeader
     48                    e.g. (usually) "X-FORWARDED-HOST"
     49
     50  See the bundled context.xml for details and examples.
     51
     52- The scheme for bookmark URLs of the front end have changed. Add a rewrite rule
     53  that causes a redirect from
     54 
     55    http://server/ComponentRegistry?param1=x&param2=y
     56                                   ^
     57  to
     58 
     59    http://server/ComponentRegistry#/?param1=x&param2=y
     60                                   ^^^
     61  (Difference marked)
     62
     63- Since the JS front end (like the previous Flash based front end) is quite heavy
     64  on the loading of compressible content, consider enabling content compression
     65  on the Tomcat server to improve performance, especially on clients with slow
     66  connections. In particular the loading of content of types 'application/json'
     67  and 'application/javascript' benefits from this.
     68 
     69  E.g., use the following in the Tomcat's server.xml:
     70
     71    <Connector port="8080" protocol="HTTP/1.1"
     72               connectionTimeout="20000"
     73               redirectPort="8443"
     74               compression="on"
     75               compressableMimeType="text/html,text/xml,text/plain,text/javascript,text/css,application/json,application/javascript"
     76               />
     77
     78  More information can be found at the following page:
     79        <https://tomcat.apache.org/tomcat-7.0-doc/config/http.html>
    2680
    2781- Remove the context parameter eu.clarin.cmdi.componentregistry.jpaDialect from the global
Note: See TracChangeset for help on using the changeset viewer.