1 | Upgrading from 2.17 to 2.18 |
---|
2 | |
---|
3 | * In version 2.18 of the VLO, the URL mapping has been changed. To prevent |
---|
4 | existing references and bookmarks from breaking, add rewrite rules to the |
---|
5 | HTTP server to achieve the following mappings: |
---|
6 | |
---|
7 | [TODO: Define actual mod_rewrite rules and document here] |
---|
8 | |
---|
9 | - {vlobase}/?wicket:bookmarkablePage=:eu.clarin.cmdi.vlo.pages.ShowResultPage&docId={docId} |
---|
10 | -> {vlobase}/record?docId={docId} |
---|
11 | |
---|
12 | - {vlobase}/?wicket:bookmarkablePage=:eu.clarin.cmdi.vlo.pages.ShowAllFacetValuesPage&selectedFacet={facet} |
---|
13 | -> {vlobase}/values/{facet} |
---|
14 | |
---|
15 | In both case all additional GET parameters SHOULD be kept. |
---|
16 | |
---|
17 | Next to the URL mapping, the XML parameter file has undergone some changes: |
---|
18 | |
---|
19 | <!-- Sets the maximum number of page instances which will be stored in the application scoped second level cache for faster retrieval --> |
---|
20 | <pagesInApplicationCache>40</pagesInApplicationCache> |
---|
21 | |
---|
22 | <!-- Sets the maximum size (in KILOBYTES) of the File where page instances per session are stored. --> |
---|
23 | <sessionCacheSize>10000</sessionCacheSize> |
---|
24 | |
---|
25 | Has been added to tune the Wicket page cache. The first parameter allows you |
---|
26 | to set the size of the application wide cache holding pages. The second parameter |
---|
27 | denotes the size of the cache (in kilobytes) associated with a session. The values |
---|
28 | listed above are the Wicket defaults. |
---|
29 | |
---|
30 | Other changes in the parameter file: |
---|
31 | - maxFileSize and use MaxFileSize have been integrated into one parameter: |
---|
32 | |
---|
33 | maxFileSize |
---|
34 | |
---|
35 | If equal to 0, no upper limit to the size of metadata input files will be |
---|
36 | applied. |
---|
37 | |
---|
38 | - maxDaysToLife has been renamed into maxDaysInSolr |
---|
39 | |
---|
40 | - VloHomeLink has been renamed into homeUrl |
---|
41 | |
---|
42 | - helpUrl has been added; a link to a help page. |
---|
43 | |
---|
44 | - The facetConceptsFile parameter, referencing the facetConcepts.xml file, |
---|
45 | has been added also. This is part of the effort of making parameterised |
---|
46 | instantiation of the VLO possible. |
---|
47 | |
---|
48 | - Also, the facetOverviewLength parameter has been added. This parameter controls |
---|
49 | the listing of facets on the search page. |
---|
50 | |
---|
51 | - Similar to 'useMaxFileSize' the expectReverseProxy parameter has been removed |
---|
52 | |
---|
53 | Finally, |
---|
54 | |
---|
55 | <cqlEndpointFilter>http://cqlservlet.mpi.nl/</cqlEndpointFilter> |
---|
56 | |
---|
57 | <cqlEndpointAlternative>http://cqlservlet.mpi.nl/</cqlEndpointAlternative> |
---|
58 | |
---|
59 | add the possibility of creating a filter for endpoints. |
---|