Changeset 5063


Ignore:
Timestamp:
04/25/14 11:43:06 (10 years ago)
Author:
Twan Goosen
Message:

Updated UPGRADE,CHANGES,README and DEPLOY-README files

Location:
vlo/branches/vlo-3.0
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/vlo-3.0/CHANGES

    r4790 r5063  
    11Bug Fixes and Features
    22
    3 VLO 3.0-alpha (March 2014)
     3VLO 3.0-beta (April 2014)
     4* Added a 'simple search' front page
     5* Added expansion of search results items to see more details
     6* Added federated content search support
     7* Added links to 'search pages' if provided by a record
     8* Added an 'About' page
     9* Added links to help and error report form
     10* Added support for themes, included a CLARIN-D theme
     11        (enabled by query parameter theme=clarin-d)
     12* Added a filter or 'quick search' input to facet selection panels
     13* Added filtering on minimal number of occurrences in all facet values popup/page
     14* Added an advanced search options box with the option to filter on FCS option
     15* Added resolving of handles of resources to show the actual filename
     16* Added support for UBN:NBN
     17* Added a link to the CLARIN language info page for language values of records
     18* Resource details now shown in tooltip instead of separate page section
     19* Lazy rendering of the 'all metadata fields' view (generated by CMDI-to-HTML stylesheet)
     20* Improved error handling
     21* Numerous fixes and small enhancements to the user interface and code base
     22
     23* Solr configuration: data directory is configured through java system property
     24        'solr.data.dir', which needs to be configured in the Tomcat instance
     25
     26VLO 3.0-alpha1 (March 2014)
    427* Reimplemented Wicket front-end, see <https://trac.clarin.eu/milestone/VLO-3.0>
    528* Upgraded to Solr 4.6.0
     
    2548'sessionCacheSize' to control the size of the Wicket page cache
    2649
    27 Beta release 2.17 (november 2013)
     50Beta release 2.17 (November 2013)
    2851
    2952Added facet overview to the search bar
     
    3356Added support for fulltext search on header (441)
    3457
    35 Beta release 2.16 (July October 2013)
     58Beta release 2.16 (October 2013)
    3659
    3760Fixed broken web links (#311, #420)
  • vlo/branches/vlo-3.0/DEPLOY-README

    r5011 r5063  
    7373        vlo/config/solr
    7474
     75   Solr needs a location to store its index data. This needs to be configured
     76   through a Java system property 'solr.data.dir'. Configure this in your
     77   Tomcat instance, for example by adding the following to
     78   ${catalina.home}/bin/setenv.sh:
     79   
     80    export JAVA_OPTS="$JAVA_OPTS -Dsolr.data.dir=/var/vlo/solr/data"
     81
     82   The directory does not have to exist, but its parent does and the Tomcat
     83   user needs write access in that location.
     84   
    7585   Copy the new context.xml file to the Tomcat configuration:
    7686
     
    8292
    8393        apps/WEB-INF/classes/log4j.properties
    84 
     94   
    8595   If necessary, change the ownership of the files in the tree starting in
    8696
  • vlo/branches/vlo-3.0/README

    r5010 r5063  
    44
    55        https://trac.clarin.eu/wiki/CmdiVirtualLanguageObservatory
     6
     7= Setting up =
     8
     9Follow the instructions in DEPLOY-README to set up a development environment.
     10You may deploy the Solr instance and the web app from your IDE. Make sure to
     11set the required Java system property for the Solr data location (solr.data.dir)!
    612
    713== Preparing for release ==
  • vlo/branches/vlo-3.0/UPGRADE

    r4764 r5063  
    11Upgrading from 2.18 to 3.0
     2
     3* In version 3.0, the context parameters for the VLO web application have changed, see
     4the file META-INF/context.xml for examples. The following parameters are now being
     5processed:     
     6
     7- eu.carlin.cmdi.vlo.config.location
     8        Optional but recommended. Should point to the location of VloConfig.xml that
     9        should be used. Replaces The previously available parameter 'externalConfig', which is
     10        no longer supported.
     11
     12- eu.carlin.cmdi.vlo.solr.serverUrl
     13        Optional. Configures the base URL of the SOLR instance to connect to.
     14
     15* New options have been added to the shared VLO configuration file VloConfig.xml
     16(in vlo-3.0/config):
     17
     18- The 'length' attributes in list elements can be removed
     19
     20- The following elements should be added:
     21
     22        <!-- begin added in 3.0 -->
     23
     24        <collectionFacet>collection</collectionFacet>
     25
     26        <simpleSearchFacetFields>
     27                <simpleSearchFacetField>language</simpleSearchFacetField>
     28                <simpleSearchFacetField>resourceClass</simpleSearchFacetField>
     29                <simpleSearchFacetField>genre</simpleSearchFacetField>
     30                <simpleSearchFacetField>nationalProject</simpleSearchFacetField>
     31        </simpleSearchFacetFields>
     32
     33        <!-- Fields shown in expanded search results on the search page -->
     34        <searchResultFields>
     35                <searchResultField>name</searchResultField>
     36                <searchResultField>country</searchResultField>
     37                <searchResultField>languages</searchResultField>
     38                <searchResultField>modality</searchResultField>
     39                <searchResultField>subject</searchResultField>
     40                <searchResultField>genre</searchResultField>
     41                <searchResultField>organisation</searchResultField>
     42                <searchResultField>collection</searchResultField>
     43                <searchResultField>nationalProject</searchResultField>
     44        </searchResultFields>
     45
     46        <!-- Fields ignored in the record page -->
     47        <ignoredFields>
     48                <ignoredField>format</ignoredField>
     49        </ignoredFields>
     50
     51        <!-- Fields shown as technical fields in the record page -->
     52        <technicalFields>
     53                <technicalField>id</technicalField>
     54                <technicalField>dataProvider</technicalField>
     55                <technicalField>metadataSource</technicalField>
     56                <technicalField>_landingPageRef</technicalField>
     57                <technicalField>_searchPageRef</technicalField>
     58                <technicalField>_contentSearchRef</technicalField>
     59                <technicalField>_lastSeen</technicalField>
     60                <technicalField>_componentProfile</technicalField>
     61        </technicalFields>
     62
     63        <!-- end added in 3.0 -->
     64
     65- The element 'facetfield' should be replaced with new values:
     66
     67        <!-- begin changed in 3.0 -->
     68
     69        <facetFields>
     70                <facetField>language</facetField>
     71                <facetField>resourceClass</facetField>
     72                <facetField>continent</facetField>
     73                <facetField>country</facetField>
     74                <facetField>modality</facetField>
     75                <facetField>genre</facetField>
     76                <facetField>subject</facetField>
     77                <facetField>organisation</facetField>
     78                <facetField>nationalProject</facetField>
     79                <facetField>format</facetField>
     80                <facetField>keywords</facetField>
     81                <facetField>dataProvider</facetField>
     82        </facetFields>
     83
     84        <!-- end changed in 3.0 -->
     85
     86* The location of the Solr index data directory is now governed through a java system
     87property 'solr.data.dir'. Add the following to ${catalina.home}/bin/setenv.sh:
     88
     89        export JAVA_OPTS="$JAVA_OPTS -Dsolr.data.dir=/lat/webapps/vlo/solr/data-beta"
     90
     91Substitute the directory with the actual desired location of the index data. The
     92parent directory has to exist and should be writable by the Tomcat user.
    293
    394TODO: EXTEND!!
Note: See TracChangeset for help on using the changeset viewer.