Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D6D16D101 for ; Mon, 24 Jun 2013 19:43:12 +0000 (UTC) Received: (qmail 71768 invoked by uid 500); 24 Jun 2013 19:43:12 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 71748 invoked by uid 500); 24 Jun 2013 19:43:12 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 71741 invoked by uid 99); 24 Jun 2013 19:43:12 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jun 2013 19:43:12 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 81B65314E53; Mon, 24 Jun 2013 19:43:12 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pranavs@apache.org To: commits@cloudstack.apache.org Message-Id: <0736c3b2c9434077b17af34c68dde2e0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master to 388e80e Date: Mon, 24 Jun 2013 19:43:12 +0000 (UTC) Updated Branches: refs/heads/master 0b4e0b307 -> 388e80efb making fields required when adding a vmwareDC to a cloudstack zone Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/388e80ef Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/388e80ef Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/388e80ef Branch: refs/heads/master Commit: 388e80efb1bcde46475cd0b5ad6c1862dedb0b68 Parents: 0b4e0b3 Author: Pranav Saxena Authored: Tue Jun 25 01:12:42 2013 +0530 Committer: Pranav Saxena Committed: Tue Jun 25 01:12:42 2013 +0530 ---------------------------------------------------------------------- ui/scripts/system.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/388e80ef/ui/scripts/system.js ---------------------------------------------------------------------- diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 0a8ea7e..ae6924e 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -5711,7 +5711,7 @@ title: 'Add VMware datacenter', fields: { name: { - label: 'label.name', + label: 'DC Name', validation: { required: true } }, vcenter: { @@ -5720,12 +5720,12 @@ }, username: { label: 'label.username', - validation: { required: false } + validation: { required: true } }, password: { label: 'label.password', isPassword: true, - validation: { required: false } + validation: { required: true } }, } },