Sha256: 6943bebe43e161afd24f919377c9198cac14ca92e0e23335a96567a4676021c7
Contents?: true
Size: 1.87 KB
Versions: 4
Compression:
Stored size: 1.87 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::Connection.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].flatten.zip([types].flatten.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
4 entries across 4 versions & 1 rubygems