| 1 | <!-- this comment is here to prevent ant from setting model.struts.config to null --> |
|---|
| 2 | |
|---|
| 3 | <!-- used by the fasta... buttons on object details pages --> |
|---|
| 4 | <action path="/sequenceExporter" |
|---|
| 5 | type="org.intermine.bio.web.struts.SequenceExportAction" /> |
|---|
| 6 | |
|---|
| 7 | <action path="/chartRenderer" |
|---|
| 8 | type="org.flymine.web.ChartRenderer" |
|---|
| 9 | parameter="method"/> |
|---|
| 10 | |
|---|
| 11 | <!-- <action path="/initSequenceExportOptions" |
|---|
| 12 | type="org.intermine.bio.web.struts.SequenceExportOptionsController"/> --> |
|---|
| 13 | |
|---|
| 14 | <action path="/initSequenceFeatureExportOptions" |
|---|
| 15 | type="org.intermine.bio.web.struts.SequenceFeatureExportOptionsController"/> |
|---|
| 16 | |
|---|
| 17 | <action path="/galaxyExportOptions" forward="galaxyExportOptions.page"/> |
|---|
| 18 | |
|---|
| 19 | <action path="/initGalaxyExportOptions" |
|---|
| 20 | type="org.intermine.bio.web.struts.GalaxyExportOptionsController"/> |
|---|
| 21 | |
|---|
| 22 | <action path="/sequenceExportAction" name="sequenceExportForm" |
|---|
| 23 | type="org.intermine.web.struts.TableExportAction" parameter="method"/> |
|---|
| 24 | |
|---|
| 25 | <action path="/gff3ExportAction" name="gff3ExportForm" |
|---|
| 26 | type="org.intermine.web.struts.TableExportAction" parameter="method"/> |
|---|
| 27 | |
|---|
| 28 | <action path="/bedExportAction" name="bedExportForm" |
|---|
| 29 | type="org.intermine.web.struts.TableExportAction" parameter="method"/> |
|---|
| 30 | |
|---|
| 31 | <action path="/galaxyExportAction" name="galaxyExportForm" |
|---|
| 32 | type="org.intermine.bio.web.struts.GalaxyExportAction" parameter="method"/> |
|---|
| 33 | |
|---|
| 34 | <action path="/cytoscapeNetworkExport" |
|---|
| 35 | type="org.intermine.bio.web.struts.CytoscapeNetworkExportAction"/> |
|---|
| 36 | |
|---|
| 37 | <action path="/cytoscapeNetworkAjax" |
|---|
| 38 | type="org.intermine.bio.web.struts.CytoscapeNetworkAjaxAction"/> |
|---|
| 39 | |
|---|
| 40 | <!-- Beginning of Genomic Region Search configuration --> |
|---|
| 41 | |
|---|
| 42 | <action path="/initGenomicRegionSearchOptions" |
|---|
| 43 | type="org.intermine.bio.web.struts.GenomicRegionSearchOptionsController"/> |
|---|
| 44 | |
|---|
| 45 | <action path="/genomicRegionSearch" forward="genomicRegionSearchOptions.page"/> |
|---|
| 46 | |
|---|
| 47 | <action path="/genomicRegionSearchResults" forward="genomicRegionSearchResults.page"/> |
|---|
| 48 | |
|---|
| 49 | <action input="/genomicRegionSearchOptionsBase.jsp" path="/genomicRegionSearchAction" name="genomicRegionSearchForm" scope="request" type="org.intermine.bio.web.struts.GenomicRegionSearchAction" > |
|---|
| 50 | <!-- Not use redirect="true". here it is doing a forward, not redirecting. Redirecting causes the browser to make a new request, and that's why the things I put in the request aren't there anymore. --> |
|---|
| 51 | <forward name="genomicRegionSearchResults" path="/genomicRegionSearchResults.do" redirect="false"/> |
|---|
| 52 | <forward name="genomicRegionSearchOptions" path="/genomicRegionSearch.do" redirect="true"/> |
|---|
| 53 | </action> |
|---|
| 54 | |
|---|
| 55 | <action path="/genomicRegionSearchAjax" type="org.intermine.bio.web.struts.GenomicRegionSearchAjaxAction"/> |
|---|
| 56 | |
|---|
| 57 | <!-- End of Genomic Region Search configuration --> |
|---|
| 58 | |
|---|
| 59 | <action path="/initFriendlyMineLinkDisplayer" type="org.intermine.bio.web.FriendlyMineLinkController"/> |
|---|