Changeset 16540
- Timestamp:
- 19/08/08 16:39:15 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/intermine/webapp/main/resources/webapp/export.jsp
r16539 r16540 2 2 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> 3 3 <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> 4 <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> 4 5 5 6 <!-- export.jsp --> 6 7 8 <c:set var="queryTrailLink" value="|query"/> 9 <c:if test="${fn:startsWith(tableName, 'bag.')}"> 10 <c:set var="queryTrailLink" value=""/> 11 </c:if> 7 12 <html:xhtml/> 8 13 9 <html:link action="/exportOptions?table=${tableName}&type=csv&trail= |query|${tableName}">14 <html:link action="/exportOptions?table=${tableName}&type=csv&trail=${queryTrailLink}|${tableName}"> 10 15 <fmt:message key="exporter.csv.description"/> 11 16 </html:link> … … 13 18 14 19 <c:if test="${pagedTable.estimatedSize <= WEB_PROPERTIES['max.excel.export.size']}"> 15 <html:link action="/exportOptions?table=${tableName}&type=excel&trail= |query|${tableName}">20 <html:link action="/exportOptions?table=${tableName}&type=excel&trail=${queryTrailLink}|${tableName}"> 16 21 <fmt:message key="exporter.excel.description"> 17 22 <fmt:param value="${WEB_PROPERTIES['max.excel.export.size']}"/> … … 30 35 </c:when> 31 36 <c:otherwise> 32 <html:link action="/exportOptions?table=${tableName}&type=${exporterId}&trail= |query|${tableName}">37 <html:link action="/exportOptions?table=${tableName}&type=${exporterId}&trail=${queryTrailLink}|${tableName}"> 33 38 <fmt:message key="exporter.${exporterId}.description"/> 34 39 </html:link><br>
