From 4a3238c779c6412f428fc52cbd511bd2ac9ad026 Mon Sep 17 00:00:00 2001 From: Selvasundaram Date: Mon, 8 Aug 2011 22:20:53 +0530 Subject: GlusterFS download URI updated --- .../storage/management/console/views/VolumeSummaryView.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/views/VolumeSummaryView.java b/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/views/VolumeSummaryView.java index 73cd14a6..45e97b75 100644 --- a/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/views/VolumeSummaryView.java +++ b/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/views/VolumeSummaryView.java @@ -202,18 +202,18 @@ public class VolumeSummaryView extends ViewPart { // TODO: implement a logic to identify the corresponding glusterfs client download link String message = "You can download gluster FS client from"; - String glusterClientDownloadlinkText = "here."; - final String glusterClientDownloadlink = "http://www.gluster.com"; + String glusterFSDownloadlinkText = "here."; + final String glusterFSDownloadlink = "http://download.gluster.com/pub/gluster/glusterfs/"; toolkit.createLabel(section, ""); toolkit.createLabel(section, message); - Hyperlink link = toolkit.createHyperlink(section, glusterClientDownloadlinkText, SWT.NORMAL); + Hyperlink link = toolkit.createHyperlink(section, glusterFSDownloadlinkText, SWT.NORMAL); link.addHyperlinkListener(new HyperlinkAdapter() { public void linkActivated(HyperlinkEvent e) { try { System.out.println(e.getLabel() + " [" + e.getHref() + "]"); PlatformUI.getWorkbench().getBrowserSupport().getExternalBrowser() - .openURL(new URL(glusterClientDownloadlink)); + .openURL(new URL(glusterFSDownloadlink)); } catch (PartInitException e1) { e1.printStackTrace(); } catch (MalformedURLException e1) { -- cgit