Changeset 3525

Show
Ignore:
Timestamp:
20/05/04 11:51:35 (4 years ago)
Author:
kmr
Message:

Added a bubble message for /changePath links.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/intermine/src/web/main.jsp

    r3520 r3525  
    1414      <c:if test="${!empty navigation}"> 
    1515        <c:forEach items="${navigation}" var="entry" varStatus="status"> 
    16           <html:link action="/mainChange?method=changePath&prefix=${entry.value}&path=${QUERY[entry.value].type}"> 
     16          <fmt:message key="query.changePath" var="changePathTitle"> 
     17            <fmt:param value="${entry.key}"/> 
     18          </fmt:message> 
     19          <html:link action="/mainChange?method=changePath&prefix=${entry.value}&path=${QUERY[entry.value].type}" 
     20                     title="${changePathTitle}"> 
    1721            <c:out value="${entry.key}"/> 
    1822          </html:link> 
     
    112116                </c:when> 
    113117                <c:otherwise> 
    114                   <html:link action="/mainChange?method=changePath&prefix=${node.path}&path=${node.type}"> 
     118                  <fmt:message key="query.changePath" var="changePathTitle"> 
     119                    <fmt:param value="${node.type}"/> 
     120                  </fmt:message> 
     121                  <html:link action="/mainChange?method=changePath&prefix=${node.path}&path=${node.type}" 
     122                             title="${changePathTitle}"> 
    115123                    <c:out value="${node.type}"/> 
    116124                  </html:link>