Changeset 1065


Ignore:
Timestamp:
01/13/11 13:53:18 (13 years ago)
Author:
patdui
Message:
  • made some cosmetic changes in results page and changed audio icon
Location:
vlo/trunk/vlo_webapp
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • vlo/trunk/vlo_webapp/CHANGES

    r955 r1065  
    11Bug Fixes and Features
     2
     3Release VLO-2.1 (13 Januari 2011):
     4http://trac.clarin.eu/ticket/54         Change columnheaders of results
     5http://trac.clarin.eu/ticket/26         add prev/next links to show result page
     6http://trac.clarin.eu/ticket/42         capitalization
     7http://trac.clarin.eu/ticket/62         10 facet values instead of 5
     8http://trac.clarin.eu/ticket/43         origin for LRT should be CLARIN LRT inventory
     9http://trac.clarin.eu/ticket/37         extract proper country names from country code facets
     10http://trac.clarin.eu/ticket/38         extract proper language names from language code facets
     11http://trac.clarin.eu/ticket/60         remove Unspecified and Unknown from initial facet list
     12http://trac.clarin.eu/ticket/46         open in original context for the LRT inventory
     13http://trac.clarin.eu/ticket/29         Link to correct archives based on the metadata
     14http://trac.clarin.eu/ticket/45         make all links clickable
     15http://trac.clarin.eu/ticket/34         make partner images clickable
     16- Added resourceType facet (still todo for OLAC data)
     17- Added resource list and links to download resources (still todo show names for handles)
     18
     19
    220
    321Release VLO-2.0 (2 December 2010):
  • vlo/trunk/vlo_webapp/src/main/java/eu/clarin/cmdi/vlo/Resources.java

    r1050 r1065  
    1313    public static final String VALUE = "value";
    1414    public static final String RESULTS = "results";
    15     public static final String OPEN_IN_ORIGINAL_CONTEXT = "openInOriginalContext";   
     15    public static final String OPEN_IN_ORIGINAL_CONTEXT = "openInOriginalContext";
     16    public static final String ORIGINAL_CONTEXT_NOT_AVAILABLE = "originalContextNotAvailable";   
    1617   
    1718
  • vlo/trunk/vlo_webapp/src/main/java/eu/clarin/cmdi/vlo/VloApplication.properties

    r1007 r1065  
    66next=next
    77noResourceFound=No Resources found
    8 openInOriginalContext=open in original context
    9 prev=prev
     8openInOriginalContext=open in original context
     9originalContextNotAvailable=no original context available
     10prev=previous
    1011quickNavTo=Quick navigation to
    1112resources=Resources
  • vlo/trunk/vlo_webapp/src/main/java/eu/clarin/cmdi/vlo/pages/ShowResultPage.html

    r1061 r1065  
    55    <wicket:extend>
    66        <div class="endgame"><br>
    7             <div><a wicket:id="backLink" href="#"><wicket:message key="backToResult">[back]</wicket:message></a>&nbsp;|&nbsp;
    8                 <a wicket:id="openBrowserLink"></a>
     7            <div><a wicket:id="backLink" href="#"><wicket:message key="backToResult">[back]</wicket:message></a>&nbsp;|&nbsp;<a wicket:id="openBrowserLink"></a>
    98                <p />
    109            </div>
    1110            <br>
    1211            <br>
    13             <div class="prevNextLabels"><a wicket:id="prev"><wicket:message key="prev" /></a> <a wicket:id="next"><wicket:message key="next" /></a>
     12            <div class="prevNextLabels"><a wicket:id="prev"><wicket:message key="prev" /></a>&nbsp;-&nbsp;<a wicket:id="next"><wicket:message key="next" /></a>
    1413            </div>
    1514            <div class="resultAttributes">
  • vlo/trunk/vlo_webapp/src/main/java/eu/clarin/cmdi/vlo/pages/ShowResultPage.java

    r1055 r1065  
    5252            add(new ExternalLink("openBrowserLink", href, new ResourceModel(Resources.OPEN_IN_ORIGINAL_CONTEXT).getObject()));
    5353        } else {
    54             add(new Label("openBrowserLink", ""));
     54            add(new Label("openBrowserLink", new ResourceModel(Resources.ORIGINAL_CONTEXT_NOT_AVAILABLE).getObject()));
    5555        }
    5656        addPrevNextLabels(docId, query);
     
    114114                });
    115115            }
     116           
     117            @Override
     118            public String getCssClass() {
     119                return "attributeValue";
     120            }
    116121        };
    117122        return columns;
  • vlo/trunk/vlo_webapp/src/main/resources/applicationContext.xml

    r1039 r1065  
    44
    55  <bean id="configuration" class="eu.clarin.cmdi.vlo.Configuration" factory-method="getInstance">
    6     <property name="solrUrl" value="http://localhost:8080/vlo_solr" />
    7 <!--    <property name="solrUrl" value="http://lux16.mpi.nl:8080/vlo_solr" />-->
     6<!--    <property name="solrUrl" value="http://localhost:8080/vlo_solr" />-->
     7    <property name="solrUrl" value="http://lux16.mpi.nl:8080/vlo_solr" />
    88<!--    <property name="solrUrl" value="http://catalog.clarin.eu:8080/vlo_solr" />-->
    99    <property name="IMDIBrowserUrl" value="http://corpus1.mpi.nl/ds/imdi_browser?openpath=" />
  • vlo/trunk/vlo_webapp/src/main/resources/importerConfig.xml

    r1058 r1065  
    1313          <property name="originName" value="OLAC Metadata Providers"/>
    1414          <property name="rootFile"
    15             value="/lat/tools/vlo_importer/data/olac/olac-cmdi-20101214/_corpusstructure/collection_root.cmdi"/>
     15            value="/lat/tools/vlo_importer/data/olac/olac-cmdi-20110112/_corpusstructure/collection_root.cmdi"/>
    1616          <property name="facetMapping" ref="olacMapping"/>
    1717        </bean>
  • vlo/trunk/vlo_webapp/src/main/webapp/css/main.css

    r1061 r1065  
    110110    background-color: #BCCEE8;
    111111    text-align: right;
    112     padding-right: 5px;
     112    padding-right: 8px;
    113113}
     114
     115.endgame .attributeValue{
     116    padding-left: 8px;
     117}
     118
    114119.endgame .headers .attribute{
    115120    background-color: #2E6B99;   
Note: See TracChangeset for help on using the changeset viewer.