You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by mf...@apache.org on 2011/10/25 14:47:07 UTC

svn commit: r1188636 - /incubator/deltacloud/trunk/server/views/cimi/cloudEntryPoint/index.xml.haml

Author: mfojtik
Date: Tue Oct 25 12:47:07 2011
New Revision: 1188636

URL: http://svn.apache.org/viewvc?rev=1188636&view=rev
Log:
CIMI: Fix the use of camelize method so that the first character is not capped

Signed-off-by: Tong Li <li...@us.ibm.com>

Modified:
    incubator/deltacloud/trunk/server/views/cimi/cloudEntryPoint/index.xml.haml

Modified: incubator/deltacloud/trunk/server/views/cimi/cloudEntryPoint/index.xml.haml
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/views/cimi/cloudEntryPoint/index.xml.haml?rev=1188636&r1=1188635&r2=1188636&view=diff
==============================================================================
--- incubator/deltacloud/trunk/server/views/cimi/cloudEntryPoint/index.xml.haml (original)
+++ incubator/deltacloud/trunk/server/views/cimi/cloudEntryPoint/index.xml.haml Tue Oct 25 12:47:07 2011
@@ -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(:lower_case_first_letter)
     = "<#{res_name} href=\"#{api[1]}\"/>"