Revert hack that was necessary before Rap 2.3.x
authorBruno Sinou <bsinou@argeo.org>
Tue, 10 Feb 2015 18:53:45 +0000 (18:53 +0000)
committerBruno Sinou <bsinou@argeo.org>
Tue, 10 Feb 2015 18:53:45 +0000 (18:53 +0000)
git-svn-id: https://svn.argeo.org/commons/trunk@7783 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

org.argeo.eclipse.ui.rap/src/org/argeo/eclipse/ui/specific/OpenFile.java

index 4d293727351a4e983e428660d593db76ebc0cd91..db65ee785d5cd170cec57b1ad26fefa051a42acf 100644 (file)
@@ -29,8 +29,8 @@ import org.eclipse.rap.rwt.client.service.UrlLauncher;
  * in the request URI.
  * 
  * The parameter "URI" is used to determine the correct file service, the path
- * and the file name. An optional file name can be precised to present a
- * different file name as the one used to retrieve it to the end user/
+ * and the file name. An optional file name can be precized to present a
+ * different file name as the one used to retrieve it to the end user.
  * 
  * Various instances of this handler with different command ID might coexist in
  * order to provide context specific download service.
@@ -71,17 +71,7 @@ public class OpenFile extends AbstractHandler {
                        log.debug("URL : " + downloadUrl);
 
                UrlLauncher launcher = RWT.getClient().getService(UrlLauncher.class);
-               // FIXME: find a way to manage correctly the addition of the base
-               // context for the workbench.
-               launcher.openURL("/ui" + downloadUrl);
-
-               // These lines are useless in the current use case but might be
-               // necessary with new browsers. Stored here for memo
-               // response.setContentType("application/force-download");
-               // response.setHeader("Content-Disposition", contentDisposition);
-               // response.setHeader("Content-Transfer-Encoding", "binary");
-               // response.setHeader("Pragma", "no-cache");
-               // response.setHeader("Cache-Control", "no-cache, must-revalidate");
+               launcher.openURL(downloadUrl);
                return null;
        }