source: vlo/trunk/UPGRADE @ 5005

Last change on this file since 5005 was 4385, checked in by twagoo, 11 years ago

merged fix in autocompletedao from 2.18 branch

File size: 2.3 KB
Line 
1Upgrading from 2.17 to 2.18
2
3* In version 2.18 of the VLO, the URL mapping has been changed. To prevent
4existing references and bookmarks from breaking, add rewrite rules to the
5HTTP 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
15In both case all additional GET parameters SHOULD be kept.
16
17Next 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
25Has been added to tune the Wicket page cache. The first parameter allows you
26to set the size of the application wide cache holding pages. The second parameter
27denotes the size of the cache (in kilobytes) associated with a session. The values
28listed above are the Wicket defaults.
29
30Other 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
53Finally,
54
55    <cqlEndpointFilter>http://cqlservlet.mpi.nl/</cqlEndpointFilter>
56   
57    <cqlEndpointAlternative>http://cqlservlet.mpi.nl/</cqlEndpointAlternative>
58
59add the possibility of creating a filter for endpoints.
Note: See TracBrowser for help on using the repository browser.