X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.eclipse.ui.rap%2Fsrc%2Forg%2Fargeo%2Feclipse%2Fui%2Fspecific%2FOpenFile.java;h=db65ee785d5cd170cec57b1ad26fefa051a42acf;hb=619390bc8401f59f6a8a8880053544322dfebb76;hp=4d293727351a4e983e428660d593db76ebc0cd91;hpb=335abf2b8731bdf9898e4fa0dcc3d3ab5b6c4c16;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.eclipse.ui.rap/src/org/argeo/eclipse/ui/specific/OpenFile.java b/org.argeo.eclipse.ui.rap/src/org/argeo/eclipse/ui/specific/OpenFile.java index 4d2937273..db65ee785 100644 --- a/org.argeo.eclipse.ui.rap/src/org/argeo/eclipse/ui/specific/OpenFile.java +++ b/org.argeo.eclipse.ui.rap/src/org/argeo/eclipse/ui/specific/OpenFile.java @@ -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; }