summaryrefslogtreecommitdiffstats
path: root/src/com.gluster.storage.management.console
diff options
context:
space:
mode:
authorSelvasundaram <selvam@gluster.com>2011-08-08 22:20:53 +0530
committerSelvasundaram <selvam@gluster.com>2011-08-08 22:20:53 +0530
commit4a3238c779c6412f428fc52cbd511bd2ac9ad026 (patch)
tree7976ab4b4820af68aa5f0526ea7528ed3c65a37a /src/com.gluster.storage.management.console
parent2034897d0085ec7808cb22cad72d8b9e0c90f879 (diff)
GlusterFS download URI updated
Diffstat (limited to 'src/com.gluster.storage.management.console')
-rw-r--r--src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/views/VolumeSummaryView.java8
1 files 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) {