Changeset 16270
- Timestamp:
- 21/07/08 16:56:40 (1 month ago)
- Files:
-
- tickets/ticket-1673/bio/webapp/src/org/intermine/bio/web/export/SequenceHttpExporter.java (modified) (1 diff)
- tickets/ticket-1673/flymine/webapp/src/model.properties (modified) (1 diff)
- tickets/ticket-1673/intermine/webapp/main/resources/webapp/WEB-INF/classes/InterMineWebApp.properties (modified) (1 diff)
- tickets/ticket-1673/intermine/webapp/main/resources/webapp/WEB-INF/struts-config.xml (modified) (2 diffs)
- tickets/ticket-1673/intermine/webapp/main/resources/webapp/export.jsp (modified) (1 diff)
- tickets/ticket-1673/intermine/webapp/main/resources/webapp/exportOptions.jsp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tickets/ticket-1673/bio/webapp/src/org/intermine/bio/web/export/SequenceHttpExporter.java
r16265 r16270 57 57 /** 58 58 * Method called to export a PagedTable object using the BioJava sequence and feature writers. 59 * @param pt exported PagedTable 60 * @param request The HTTP request we are processing 61 * @param response The HTTP response we are creating 59 * {@inheritDoc} 62 60 */ 63 61 public void export(PagedTable pt, HttpServletRequest request, HttpServletResponse response, tickets/ticket-1673/flymine/webapp/src/model.properties
r14467 r16270 23 23 templateQuery.Gene_Synonyms.category=Genomics 24 24 25 exporter.sequence Exporter.description=Export first visible column in FASTA format26 exporter.gff3 Exporter.description=Export in GFF3 format27 exporter.proteinInteraction Exporter.description=Export in cytoscape SIF format28 exporter.proteinInteractionView Exporter.description=Open network in cytoscape25 exporter.sequence.description=Export first visible column in FASTA format 26 exporter.gff3.description=Export in GFF3 format 27 exporter.proteinInteraction.description=Export in cytoscape SIF format 28 exporter.proteinInteractionView.description=Open network in cytoscape 29 29 30 30 locatedSequenceFeature.GBrowse.message=Genome browser view (GBrowse) tickets/ticket-1673/intermine/webapp/main/resources/webapp/WEB-INF/classes/InterMineWebApp.properties
r16264 r16270 329 329 export.title = Results export page 330 330 export.description = Choose an export format for the results table 331 export .tab = customQuery331 exportOptions.tab = customQuery 332 332 export.export = Export results 333 333 export.noFollow = true tickets/ticket-1673/intermine/webapp/main/resources/webapp/WEB-INF/struts-config.xml
r16265 r16270 32 32 <form-bean name="widgetForm" type="org.intermine.web.struts.WidgetForm"/> 33 33 <form-bean name="tabExportForm" type="org.intermine.web.struts.TableExportForm"/> 34 <form-bean name="c vsExportForm" type="org.intermine.web.struts.TableExportForm"/>34 <form-bean name="csvExportForm" type="org.intermine.web.struts.TableExportForm"/> 35 35 <form-bean name="excelExportForm" type="org.intermine.web.struts.TableExportForm"/> 36 36 <!-- don't (re)move this - it's used for importing any model-specific forms --> … … 171 171 </action> 172 172 <action path="/tabExportAction" name="tabExportForm" type="org.intermine.web.struts.TableExportAction" parameter="method"/> 173 <action path="/c vsExportAction" name="cvsExportForm" type="org.intermine.web.struts.TableExportAction" parameter="method"/>173 <action path="/csvExportAction" name="csvExportForm" type="org.intermine.web.struts.TableExportAction" parameter="method"/> 174 174 <action path="/excelExportAction" name="excelExportForm" type="org.intermine.web.struts.TableExportAction" parameter="method"/> 175 175 <action path="/changeTable" type="org.intermine.web.struts.ChangeTableAction" parameter="method"> tickets/ticket-1673/intermine/webapp/main/resources/webapp/export.jsp
r16264 r16270 29 29 30 30 <c:forEach var="entry" items="${exporters}" varStatus="status"> 31 <c:set var="exporterId" value="${entry.key}"/> 31 32 <c:choose> 32 33 <c:when test="${empty entry.value}"> 33 <span class="nullStrike"><fmt:message key="exporter.${e ntry.key}.description"/></span><br>34 <span class="nullStrike"><fmt:message key="exporter.${exporterId}.description"/></span><br> 34 35 </c:when> 35 36 <c:otherwise> 36 <html:link action="/exportOptions?table=${tableName} ">37 <fmt:message key="exporter.${e ntry.key}.description"/>37 <html:link action="/exportOptions?table=${tableName};type=${exporterId}"> 38 <fmt:message key="exporter.${exporterId}.description"/> 38 39 </html:link><br> 39 40 </c:otherwise> tickets/ticket-1673/intermine/webapp/main/resources/webapp/exportOptions.jsp
r16264 r16270 23 23 <html:hidden property="table" value="${table}"/> 24 24 <html:hidden property="type" value="${type}"/> 25 <br/> 25 26 <html:submit property="submit"><fmt:message key="export.submit"/></html:submit> 26 27 </html:form>
