Return-Path: X-Original-To: apmail-incubator-deltacloud-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-deltacloud-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5566C7DA8 for ; Mon, 24 Oct 2011 19:11:08 +0000 (UTC) Received: (qmail 80627 invoked by uid 500); 24 Oct 2011 19:11:08 -0000 Delivered-To: apmail-incubator-deltacloud-dev-archive@incubator.apache.org Received: (qmail 80612 invoked by uid 500); 24 Oct 2011 19:11:08 -0000 Mailing-List: contact deltacloud-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: deltacloud-dev@incubator.apache.org Delivered-To: mailing list deltacloud-dev@incubator.apache.org Received: (qmail 80604 invoked by uid 99); 24 Oct 2011 19:11:08 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Oct 2011 19:11:08 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of email4tong@gmail.com designates 209.85.212.47 as permitted sender) Received: from [209.85.212.47] (HELO mail-vw0-f47.google.com) (209.85.212.47) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Oct 2011 19:10:59 +0000 Received: by vwe42 with SMTP id 42so5007964vwe.6 for ; Mon, 24 Oct 2011 12:10:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:x-mailer; bh=TM+gOl2oWxWI/pU+3TsVsEsJ99NzrSwvkm2Cq/VBnr4=; b=woHdjIdLNTEqs1b0apvCE7B+H+LPjWMEb6KX7PmEkm7dQjWHmCnFUB++MsP87OMkmG JJed9R6laCdkaM4+JRp4W9UYgt1ugZbXAskbKE3dPaahY/REkj56TRitFFENSQpoj240 8yRk2siRAArhE8VogDVlss5TDSLYfFcljk/PA= Received: by 10.52.90.169 with SMTP id bx9mr23770282vdb.49.1319483438296; Mon, 24 Oct 2011 12:10:38 -0700 (PDT) Received: from localhost.localdomain (cpe-174-097-220-103.nc.res.rr.com. [174.97.220.103]) by mx.google.com with ESMTPS id eu4sm14493204vdc.8.2011.10.24.12.10.35 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 24 Oct 2011 12:10:37 -0700 (PDT) From: email4tong@gmail.com To: deltacloud-dev@incubator.apache.org Subject: [PATCH] fix the use of camelize method so that the first character is not capped Date: Mon, 24 Oct 2011 12:10:32 -0700 Message-Id: <1319483432-2580-1-git-send-email-litong01@us.ibm.com> X-Mailer: git-send-email 1.7.4.1 X-Virus-Checked: Checked by ClamAV on apache.org From: Tong Li --- server/views/cimi/cloudEntryPoint/index.xml.haml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/server/views/cimi/cloudEntryPoint/index.xml.haml b/server/views/cimi/cloudEntryPoint/index.xml.haml index c39a34d..85cdb4a 100644 --- a/server/views/cimi/cloudEntryPoint/index.xml.haml +++ b/server/views/cimi/cloudEntryPoint/index.xml.haml @@ -5,5 +5,5 @@ %description cloud entry point %created= Time.new.getutc.to_s - @collections.each do |api| - - res_name = api[0].to_s.camelize + - res_name = api[0].to_s.camelize(true) = "<#{res_name} href=\"#{api[1]}\"/>" -- 1.7.4.1