Let's not get into a dev tool debate please! It's generally not a useful argument in the end (and I've seen it escalate too many times in the past).
On Thu, Feb 21, 2013 at 04:05:16PM +0530, Rajesh Battala wrote: > Eclipse do support inserting the spaces for tabs. Its matter of > configuration. > Window -> preference - > General -> Editors - > Text Editors the option is > available to "insert spaces for tabs" and tab width space. > > Surprised to see the mail telling to stop Eclipse for java project. AFAIK, > Eclipse is best IDE for java projects. > > Thanks > Rajesh Battala > > > -----Original Message----- > > From: rohityada...@gmail.com [mailto:rohityada...@gmail.com] On Behalf > > Of Rohit Yadav > > Sent: Thursday, February 21, 2013 2:11 PM > > To: cloudstack-dev@incubator.apache.org > > Cc: cloudstack-comm...@incubator.apache.org > > Subject: Re: git commit: refs/heads/master - CLOUDSTACK-1334 global config > > vmware.root.disk.controller doesn't work > > > > People should stop using Eclipse or any other text editor that would insert > > tabs > > and not whitespaces for tabs. Just use something sensible like emacs, vim or > > IntelliJ which is fast, does not sck during git branch checkouts and won't > > put a lot > > of garbage in the codebase. > > People need to work on their git-foo as well, use hooks or filters if they > > cannot > > fix their editors. > > > > Regards. > > > > On Thu, Feb 21, 2013 at 10:24 AM, Sateesh Chodapuneedi > > <sateesh.chodapune...@citrix.com> wrote: > > > Seeing tab spaces and trailing white spaces in the commit. > > > > > > Regards, > > > Sateesh > > > > > > > > >> -----Original Message----- > > >> From: m...@apache.org [mailto:m...@apache.org] > > >> Sent: 21 February 2013 09:00 > > >> To: cloudstack-comm...@incubator.apache.org > > >> Subject: git commit: refs/heads/master - CLOUDSTACK-1334 global > > >> config vmware.root.disk.controller doesn't work > > >> > > >> Updated Branches: > > >> refs/heads/master 99653ea32 -> f7b600b43 > > >> > > >> > > >> CLOUDSTACK-1334 global config vmware.root.disk.controller doesn't > > >> work > > >> > > >> > > >> Project: > > >> http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo > > >> Commit: http://git-wip-us.apache.org/repos/asf/incubator- > > >> cloudstack/commit/f7b600b4 > > >> Tree: http://git-wip-us.apache.org/repos/asf/incubator- > > >> cloudstack/tree/f7b600b4 > > >> Diff: http://git-wip-us.apache.org/repos/asf/incubator- > > >> cloudstack/diff/f7b600b4 > > >> > > >> Branch: refs/heads/master > > >> Commit: f7b600b43921ee2324e049432c9cf18906fc6772 > > >> Parents: 99653ea > > >> Author: hongtu_zang <hongtu_z...@tcloudcomputing.com> > > >> Authored: Wed Feb 20 09:52:25 2013 +0800 > > >> Committer: Mice Xia <mice_...@tcloudcomputing.com> > > >> Committed: Thu Feb 21 11:29:08 2013 +0800 > > >> > > >> ---------------------------------------------------------------------- > > >> .../src/com/cloud/hypervisor/guru/VMwareGuru.java | 12 ++++++++++++ > > >> .../hypervisor/vmware/manager/VmwareManager.java | 2 ++ > > >> .../vmware/manager/VmwareManagerImpl.java | 5 +++++ > > >> 3 files changed, 19 insertions(+), 0 deletions(-) > > >> --------------------------------------------------------------------- > > >> - > > >> > > >> > > >> http://git-wip-us.apache.org/repos/asf/incubator- > > >> cloudstack/blob/f7b600b4/plugins/hypervisors/vmware/src/com/cloud/hyp > > >> ervis > > >> or/guru/VMwareGuru.java > > >> --------------------------------------------------------------------- > > >> - > > >> diff --git > > >> a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/guru/VMwareGuru > > >> .ja > > >> va > > >> b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/guru/VMwareGuru > > >> .ja > > >> va > > >> index 819d399..bb7c297 100644 > > >> --- > > >> a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/guru/VMwareGuru > > >> .ja > > >> va > > >> +++ b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/guru/VMware > > >> +++ Gur > > >> +++ u.java > > >> @@ -1,3 +1,4 @@ > > >> + > > >> // Licensed to the Apache Software Foundation (ASF) under one // or > > >> more contributor license agreements. See the NOTICE file // > > >> distributed with this work for additional information @@ -129,6 > > >> +130,17 @@ public class VMwareGuru extends HypervisorGuruBase > > implements HypervisorGuru { > > >> } > > >> } > > >> } > > >> + > > >> + String diskDeviceType = > > >> details.get(VmDetailConstants.ROOK_DISK_CONTROLLER); > > >> + if (!(vm.getVirtualMachine() instanceof DomainRouterVO || > > >> vm.getVirtualMachine() instanceof ConsoleProxyVO > > >> + || vm.getVirtualMachine() instanceof SecondaryStorageVmVO)){ > > >> + // user vm > > >> + if (diskDeviceType != null){ > > >> + details.remove(VmDetailConstants.ROOK_DISK_CONTROLLER); > > >> + } > > >> + details.put(VmDetailConstants.ROOK_DISK_CONTROLLER, > > >> _vmwareMgr.getRootDiskController()); > > >> + } > > >> + > > >> to.setDetails(details); > > >> > > >> if(vm.getVirtualMachine() instanceof DomainRouterVO) { > > >> > > >> http://git-wip-us.apache.org/repos/asf/incubator- > > >> cloudstack/blob/f7b600b4/plugins/hypervisors/vmware/src/com/cloud/hyp > > >> ervis > > >> or/vmware/manager/VmwareManager.java > > >> --------------------------------------------------------------------- > > >> - > > >> diff --git > > >> a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/manager/ > > >> V > > >> mwareManager.java > > >> b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/manager/ > > >> V > > >> mwareManager.java > > >> index e219c1c..445b2f0 100755 > > >> --- > > >> a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/manager/ > > >> V > > >> mwareManager.java > > >> +++ > > >> b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/manager > > >> +++ /VmwareManager.java > > >> @@ -67,4 +67,6 @@ public interface VmwareManager { > > >> String getPublicVSwitchName(long dcId, HypervisorType > > >> hypervisorType); > > >> > > >> String getGuestVSwitchName(long dcId, HypervisorType > > >> hypervisorType); > > >> + > > >> + public String getRootDiskController(); > > >> } > > >> > > >> http://git-wip-us.apache.org/repos/asf/incubator- > > >> cloudstack/blob/f7b600b4/plugins/hypervisors/vmware/src/com/cloud/hyp > > >> ervis or/vmware/manager/VmwareManagerImpl.java > > >> --------------------------------------------------------------------- > > >> - > > >> diff --git > > >> a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/manager/ > > >> V > > >> mwareManagerImpl.java > > >> b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/manager/ > > >> V > > >> mwareManagerImpl.java > > >> index e6d5742..70f98cc 100755 > > >> --- > > >> a/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/manager/ > > >> V > > >> mwareManagerImpl.java > > >> +++ > > >> b/plugins/hypervisors/vmware/src/com/cloud/hypervisor/vmware/manager > > >> +++ /VmwareManagerImpl.java > > >> @@ -906,4 +906,9 @@ public class VmwareManagerImpl extends > > >> ManagerBase implements VmwareManager, Vmw > > >> } > > >> return nexusVSMCredentials; > > >> } > > >> + > > >> + @Override > > >> + public String getRootDiskController() { > > >> + return _rootDiskController; > > >> + } > > >> } > > > >