Class: Pubid::Iso::Identifiers::InternationalStandardizedProfile

Inherits:
SingleIdentifier show all
Defined in:
lib/pubid/iso/identifiers/international_standardized_profile.rb

Overview

International Standardized Profile Identifier

Constant Summary collapse

TYPED_STAGES =
[
  ::Pubid::Components::TypedStage.new(
    code: :pwiisp,
    stage_code: :pwi,
    type_code: :isp,
    abbr: ["PWI ISP"],
    name: "Proposed Work Item for International Standardized Profile",
    harmonized_stages: %w[00.00 00.20 00.60 00.92 00.93 00.98 00.99],
  ),
  ::Pubid::Components::TypedStage.new(
    code: :npisp,
    stage_code: :np,
    type_code: :isp,
    abbr: ["NP ISP"],
    name: "New Work Item Proposal for International Standardized Profile",
    harmonized_stages: %w[10.00 10.20 10.60 10.92 10.93 10.98],
  ),
  ::Pubid::Components::TypedStage.new(
    code: :awiisp,
    stage_code: :awi,
    type_code: :isp,
    abbr: ["AWI ISP"],
    name: "Approved Work Item for International Standardized Profile",
    harmonized_stages: %w[10.99 20.00],
  ),
  ::Pubid::Components::TypedStage.new(
    code: :wdisp,
    stage_code: :wd,
    type_code: :isp,
    abbr: ["WD ISP"],
    name: "Working Draft for International Standardized Profile",
    harmonized_stages: %w[20.20 20.60 20.92 20.93 20.98 20.99],
  ),
  ::Pubid::Components::TypedStage.new(
    code: :cdisp,
    stage_code: :cd,
    type_code: :isp,
    abbr: ["CD ISP"],
    name: "Committee Draft for International Standardized Profile",
    harmonized_stages: %w[30.00 30.20 30.60 30.92 30.93 30.98 30.99],
  ),
  ::Pubid::Components::TypedStage.new(
    code: :disp,
    stage_code: :disp,
    type_code: :isp,
    abbr: ["DISP", "DIS ISP"],
    name: "Draft International Standardized Profile",
    harmonized_stages: %w[40.00 40.20 40.60 40.92 40.93 40.98 40.99],
  ),

  ::Pubid::Components::TypedStage.new(
    code: :fdisp,
    stage_code: :fdis,
    type_code: :isp,
    abbr: ["FDISP", "FDIS ISP"],
    name: "Final Draft International Standardized Profile",
    harmonized_stages: %w[50.00 50.20 50.60 50.92],
  ),

  ::Pubid::Components::TypedStage.new(
    code: :prfisp,
    stage_code: :prf,
    type_code: :isp,
    abbr: ["PRF ISP"],
    name: "Proof International Standardized Profile",
    harmonized_stages: %w[60.00],
  ),
  ::Pubid::Components::TypedStage.new(
    code: :isp,
    stage_code: :published,
    type_code: :isp,
    abbr: ["ISP"],
    name: "International Standardized Profile",
    harmonized_stages: %w[60.00 60.60],
  ),
].freeze

Constants inherited from Pubid::Iso::Identifier

Pubid::Iso::Identifier::ISO_TYPE_MAP

Class Method Summary collapse

Methods inherited from SingleIdentifier

#to_s

Methods inherited from Pubid::Iso::Identifier

#all_parts_from_kv, #all_parts_to_kv, #build_code, build_type_map, #copublishers_from_kv, #copublishers_to_kv, #date_for, #day_from_kv, #day_to_kv, default_publisher, #emit_code, #emit_date_part, from_hash, #month_from_kv, #month_to_kv, #number_from_kv, #number_to_kv, parse, #part_from_kv, #part_to_kv, published_typed_stage, #publisher_for, #publisher_from_kv, #publisher_to_kv, #stage, #stage_from_kv, #stage_iteration_from_kv, #stage_iteration_to_kv, #stage_to_kv, #subpart_from_kv, #subpart_to_kv, #type, #with_harmonized_stage, #year_from_kv, #year_to_kv

Methods inherited from Pubid::Identifier

#base_identifier, #eql?, #exclude, #hash, #initialize, #mr_number, #mr_number_with_part, #mr_part, #mr_publisher, #mr_type, #mr_year, #new_edition_of?, polymorphic_name, #render, #resolve_urn_generator, #root, #to_mr_string, #to_s, #to_supplement_s, #to_urn, #urn_supplement_type, #urn_type_code, #year

Constructor Details

This class inherits a constructor from Pubid::Identifier

Class Method Details

.typeObject



86
87
88
89
90
# File 'lib/pubid/iso/identifiers/international_standardized_profile.rb', line 86

def self.type
  { key: :isp,
    web: :international_standardized_profile, title: "International Standardized Profile",
    short: "ISP" }
end