Changeset 20806
- Timestamp:
- 05/03/10 17:06:45 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modmine/webapp/src/org/modmine/web/FeaturesAction.java
r20792 r20806 42 42 import org.intermine.web.struts.ForwardParameters; 43 43 import org.intermine.web.struts.InterMineAction; 44 import org.intermine.web.struts.TableExportForm; 44 45 45 46 /** … … 80 81 String experimentName = null; 81 82 83 boolean doGzip = false; 84 if (request.getParameter("gzip") != null 85 && request.getParameter("gzip").equalsIgnoreCase("true")) { 86 doGzip = true; 87 } 88 82 89 PathQuery q = new PathQuery(model); 83 90 … … 234 241 } 235 242 236 exporter.export(pt, request, response, null); 243 TableExportForm exportForm = null; 244 if (format.equals("gff3")) { 245 246 exportForm = new TableExportForm(); 247 exportForm.setDoGzip(doGzip); 248 } 249 exporter.export(pt, request, response, exportForm); 237 250 238 251 // If null is returned then no forwarding is performed and
Note: See TracChangeset
for help on using the changeset viewer.
