Sha256: 80008b4375e92c3e62b7f15b722112ac110c3a3d0ff044b23c7ef6f5a210a40f
Contents?: true
Size: 1.84 KB
Versions: 9
Compression:
Stored size: 1.84 KB
Contents
# Copyright (C) 2008-2011 AMEE UK Ltd. - http://www.amee.com # Released as Open Source Software under the BSD 3-Clause license. See LICENSE.txt for details. module AMEE module Admin class ItemValueDefinitionList < AMEE::Collection alias_method :initialize_without_v3, :initialize def initialize(connection,uid,options={}, &block) @use_v3_connection = true initialize_without_v3(connection, uid, options, &block) end def collectionpath "/#{AMEE_API_VERSION}/definitions/#{@uid}/values;full" end def xmlcollectorpath '/Representation/ItemValueDefinitions/ItemValueDefinition' end def parse_json(p) raise AMEE::NotSupported end def parse_xml(p) # This should really be handed off to ItemValueDefinition fully data = {} data[:itemdefuid] = @uid data[:uid] = x '@uid',:doc => p data[:name] = x 'Name',:doc => p || data[:uid] data[:path] = x 'Path',:doc => p data[:default] = x 'Value',:doc => p data[:unit] = x 'Unit',:doc => p data[:perunit] = x 'PerUnit',:doc => p data[:valuetype] =x 'ValueDefinition/ValueType',:doc => p data[:choices] =(x('Choices',:doc => p)||'').split(',') data[:versions] =[(x('Versions/Version/Version',:doc => p))].flatten data[:meta] = {} data[:meta][:wikidoc]=x 'WikiDoc', :doc => p names = x('Usages/Usage/Name', :doc => p) types = x('Usages/Usage/Type', :doc => p) data[:meta][:usages] = names && types ? Hash[*(names.zip(types.map{|x| x.downcase.to_sym})).flatten] : {} data[:drill]=(x('DrillDown',:doc => p)=='true') data[:from_profile]=(x('FromProfile',:doc => p)=='true') data[:from_data]=(x('FromData',:doc => p)=='true') data end end end end
Version data entries
9 entries across 9 versions & 1 rubygems