From 21ef1b2d60f3a483dc32f1aeefd62fcb71753ba0 Mon Sep 17 00:00:00 2001 From: Shireesh Anjal Date: Thu, 8 Sep 2011 20:07:06 +0530 Subject: Moved to eclipse 3.7 (indigo) --- .../feature.xml | 6 +-- .../rootfiles/gluster-management-console.jnlp | 4 +- .../feature.xml | 63 ++++++++++++---------- .../plugin.xml | 10 +++- .../console/actions/AbstractActionDelegate.java | 17 +----- .../console/actions/DownloadVolumeLogsAction.java | 2 - .../gluster-management-console.target | 7 ++- 7 files changed, 53 insertions(+), 56 deletions(-) (limited to 'src') diff --git a/src/com.gluster.storage.management.console.feature.webstart/feature.xml b/src/com.gluster.storage.management.console.feature.webstart/feature.xml index 94717400..24a76dc9 100644 --- a/src/com.gluster.storage.management.console.feature.webstart/feature.xml +++ b/src/com.gluster.storage.management.console.feature.webstart/feature.xml @@ -50,12 +50,12 @@ - - - + + + - - + + diff --git a/src/com.gluster.storage.management.console.feature/feature.xml b/src/com.gluster.storage.management.console.feature/feature.xml index fdafcd35..aaf4a08c 100644 --- a/src/com.gluster.storage.management.console.feature/feature.xml +++ b/src/com.gluster.storage.management.console.feature/feature.xml @@ -107,13 +107,6 @@ version="0.0.0" unpack="false"/> - - - - - - - - + + + + + + + + + + diff --git a/src/com.gluster.storage.management.console/plugin.xml b/src/com.gluster.storage.management.console/plugin.xml index f7f644a5..3cb0e1e3 100644 --- a/src/com.gluster.storage.management.console/plugin.xml +++ b/src/com.gluster.storage.management.console/plugin.xml @@ -296,6 +296,12 @@ id="com.gluster.storage.management.console.commands.Terminal" name="Terminal"> + + @@ -345,7 +351,7 @@ sequence="CTRL+SHIFT+M"> @@ -1109,7 +1115,7 @@ - - - - + + + -- cgit From 21110f3b8b592c79b1ef5e391137e301991582de Mon Sep 17 00:00:00 2001 From: Shireesh Anjal Date: Fri, 9 Sep 2011 14:21:29 +0530 Subject: Corrected the disabled icon for "clear task" --- .../icons/tango/32x32/clear-task-disabled.png | Bin 0 -> 1416 bytes src/com.gluster.storage.management.console/plugin.xml | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 src/com.gluster.storage.management.console/icons/tango/32x32/clear-task-disabled.png (limited to 'src') diff --git a/src/com.gluster.storage.management.console/icons/tango/32x32/clear-task-disabled.png b/src/com.gluster.storage.management.console/icons/tango/32x32/clear-task-disabled.png new file mode 100644 index 00000000..af8884e3 Binary files /dev/null and b/src/com.gluster.storage.management.console/icons/tango/32x32/clear-task-disabled.png differ diff --git a/src/com.gluster.storage.management.console/plugin.xml b/src/com.gluster.storage.management.console/plugin.xml index 3cb0e1e3..e7c2c2d4 100644 --- a/src/com.gluster.storage.management.console/plugin.xml +++ b/src/com.gluster.storage.management.console/plugin.xml @@ -950,7 +950,7 @@ allowLabelUpdate="false" class="com.gluster.storage.management.console.actions.ClearTaskAction" definitionId="com.gluster.storage.management.console.commands.Clear" - disabledIcon="icons/tango/32x32/create-volume-disabled.png" + disabledIcon="icons/tango/32x32/clear-task-disabled.png" icon="icons/tango/32x32/clear-task.png" id="com.gluster.storage.management.console.actions.Clear" label="&Clear Task" -- cgit From ed353681543956ec09c9ef6652d3ccb77cff96b2 Mon Sep 17 00:00:00 2001 From: Shireesh Anjal Date: Fri, 9 Sep 2011 14:21:54 +0530 Subject: Changed the background job name to "Retrieving Management Info" --- .../gluster/storage/management/console/ApplicationWorkbenchAdvisor.java | 2 +- .../gluster/storage/management/console/actions/RefreshDataAction.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/ApplicationWorkbenchAdvisor.java b/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/ApplicationWorkbenchAdvisor.java index c9995517..fcbe3fcf 100644 --- a/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/ApplicationWorkbenchAdvisor.java +++ b/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/ApplicationWorkbenchAdvisor.java @@ -78,7 +78,7 @@ public class ApplicationWorkbenchAdvisor extends WorkbenchAdvisor { } private void setupBackgroundJobs() { - syncJob = new DataSyncJob("Retrieving Management Information"); + syncJob = new DataSyncJob("Retrieving Management Info"); syncJob.schedule(JOB_INTERVAL); syncJob.addJobChangeListener(new JobChangeAdapter() { @Override diff --git a/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/actions/RefreshDataAction.java b/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/actions/RefreshDataAction.java index 49b4f7d0..4d492f8d 100644 --- a/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/actions/RefreshDataAction.java +++ b/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/actions/RefreshDataAction.java @@ -38,6 +38,6 @@ public class RefreshDataAction extends AbstractActionDelegate { */ @Override protected void performAction(IAction action) { - new DataSyncJob("Retrieving Management Information").schedule(); + new DataSyncJob("Retrieving Management Info").schedule(); } } -- cgit