1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

feature #661: Fix Group translation

This commit is contained in:
Daniel Molina 2011-06-10 18:59:59 +02:00
parent 11389f58cd
commit da6bd6eeed
5 changed files with 5 additions and 5 deletions

View File

@ -73,7 +73,7 @@ class OneImageHelper < OpenNebulaHelper::OneHelper
end
column :GROUP, "Group of the Virtual Machine", :left, :size=>8 do |d|
helper.uid_to_str(d["GID"], options)
helper.gid_to_str(d["GID"], options)
end
column :TYPE, "Type of the Image", :size=>4 do |d,e|

View File

@ -68,7 +68,7 @@ class OneTemplateHelper < OpenNebulaHelper::OneHelper
end
column :GROUP, "Group of the Template", :left, :size=>8 do |d|
helper.uid_to_str(d["GID"], options)
helper.gid_to_str(d["GID"], options)
end
column :REGTIME, "Registration time of the Template", :size=>20 do |d|

View File

@ -72,7 +72,7 @@ class OneUserHelper < OpenNebulaHelper::OneHelper
end
column :GROUP, "Group of the User", :left, :size=>8 do |d|
helper.uid_to_str(d["GID"], options)
helper.gid_to_str(d["GID"], options)
end
column :PASSWORD, "Password of the User", :size=>50 do |d|

View File

@ -82,7 +82,7 @@ class OneVMHelper < OpenNebulaHelper::OneHelper
end
column :GROUP, "Group of the Virtual Machine", :left, :size=>8 do |d|
helper.uid_to_str(d["GID"], options)
helper.gid_to_str(d["GID"], options)
end
column :STAT, "Actual status", :size=>4 do |d,e|

View File

@ -75,7 +75,7 @@ class OneVNetHelper < OpenNebulaHelper::OneHelper
end
column :GROUP, "Group of the Virtual Network", :left, :size=>8 do |d|
helper.uid_to_str(d["GID"], options)
helper.gid_to_str(d["GID"], options)
end
column :TYPE, "Type of Virtual Network", :size=>6 do |d|