pubid 1.15.19 → 2.0.0.pre.alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.adoc +2041 -53
- data/archived-gems/pubid-ccsds/update_codes.yaml +1 -0
- data/archived-gems/pubid-iec/stages.yaml +129 -0
- data/archived-gems/pubid-iec/update_codes.yaml +67 -0
- data/archived-gems/pubid-ieee/update_codes.yaml +104 -0
- data/archived-gems/pubid-iso/stages.yaml +106 -0
- data/archived-gems/pubid-iso/update_codes.yaml +4 -0
- data/archived-gems/pubid-itu/i18n.yaml +13 -0
- data/archived-gems/pubid-itu/series.yaml +42 -0
- data/archived-gems/pubid-nist/publishers.yaml +6 -0
- data/archived-gems/pubid-nist/series.yaml +121 -0
- data/archived-gems/pubid-nist/stages.yaml +16 -0
- data/archived-gems/pubid-nist/update_codes.yaml +93 -0
- data/archived-gems/pubid-plateau/update_codes.yaml +6 -0
- data/data/ccsds/update_codes.yaml +1 -0
- data/data/iec/update_codes.yaml +67 -0
- data/data/ieee/update_codes.yaml +104 -0
- data/data/iso/update_codes.yaml +21 -0
- data/data/nist/update_codes.yaml +89 -0
- data/data/plateau/update_codes.yaml +6 -0
- data/lib/pubid/amca/builder.rb +176 -0
- data/lib/pubid/amca/identifier.rb +57 -0
- data/lib/pubid/amca/identifiers/base.rb +64 -0
- data/lib/pubid/amca/identifiers/interpretation.rb +51 -0
- data/lib/pubid/amca/identifiers/publication.rb +47 -0
- data/lib/pubid/amca/identifiers/standard.rb +22 -0
- data/lib/pubid/amca/identifiers.rb +12 -0
- data/lib/pubid/amca/parser.rb +153 -0
- data/lib/pubid/amca/scheme.rb +16 -0
- data/lib/pubid/amca/single_identifier.rb +33 -0
- data/lib/pubid/amca/urn_generator.rb +50 -0
- data/lib/pubid/amca.rb +26 -0
- data/lib/pubid/ansi/builder.rb +52 -0
- data/lib/pubid/ansi/identifier.rb +55 -0
- data/lib/pubid/ansi/identifiers/american_national_standard.rb +12 -0
- data/lib/pubid/ansi/identifiers/standard.rb +16 -0
- data/lib/pubid/ansi/identifiers.rb +11 -0
- data/lib/pubid/ansi/parser.rb +91 -0
- data/lib/pubid/ansi/scheme.rb +15 -0
- data/lib/pubid/ansi/single_identifier.rb +45 -0
- data/lib/pubid/ansi/urn_generator.rb +76 -0
- data/lib/pubid/ansi.rb +27 -0
- data/lib/pubid/api/builder.rb +85 -0
- data/lib/pubid/api/components/code.rb +9 -0
- data/lib/pubid/api/identifier.rb +68 -0
- data/lib/pubid/api/identifiers/base.rb +24 -0
- data/lib/pubid/api/identifiers/bulletin.rb +15 -0
- data/lib/pubid/api/identifiers/continuous_operations_standard.rb +15 -0
- data/lib/pubid/api/identifiers/mpms.rb +44 -0
- data/lib/pubid/api/identifiers/publication.rb +15 -0
- data/lib/pubid/api/identifiers/recommended_practice.rb +15 -0
- data/lib/pubid/api/identifiers/specification.rb +15 -0
- data/lib/pubid/api/identifiers/standard.rb +15 -0
- data/lib/pubid/api/identifiers/technical_report.rb +15 -0
- data/lib/pubid/api/identifiers/typeless_standard.rb +27 -0
- data/lib/pubid/api/parser.rb +140 -0
- data/lib/pubid/api/scheme.rb +66 -0
- data/lib/pubid/api/single_identifier.rb +46 -0
- data/lib/pubid/api/urn_generator.rb +41 -0
- data/lib/pubid/api.rb +17 -0
- data/lib/pubid/ashrae/builder.rb +498 -0
- data/lib/pubid/ashrae/identifier.rb +57 -0
- data/lib/pubid/ashrae/identifiers/addenda_package.rb +46 -0
- data/lib/pubid/ashrae/identifiers/addendum.rb +55 -0
- data/lib/pubid/ashrae/identifiers/base.rb +23 -0
- data/lib/pubid/ashrae/identifiers/combined_addenda.rb +51 -0
- data/lib/pubid/ashrae/identifiers/errata.rb +40 -0
- data/lib/pubid/ashrae/identifiers/guideline.rb +38 -0
- data/lib/pubid/ashrae/identifiers/interpretation.rb +39 -0
- data/lib/pubid/ashrae/identifiers/standard.rb +38 -0
- data/lib/pubid/ashrae/identifiers.rb +16 -0
- data/lib/pubid/ashrae/parser.rb +724 -0
- data/lib/pubid/ashrae/scheme.rb +53 -0
- data/lib/pubid/ashrae/single_identifier.rb +23 -0
- data/lib/pubid/ashrae/supplement_identifier.rb +23 -0
- data/lib/pubid/ashrae/urn_generator.rb +59 -0
- data/lib/pubid/ashrae.rb +21 -0
- data/lib/pubid/asme/builder.rb +153 -0
- data/lib/pubid/asme/components/code.rb +18 -0
- data/lib/pubid/asme/identifier.rb +61 -0
- data/lib/pubid/asme/identifiers/base.rb +70 -0
- data/lib/pubid/asme/identifiers/standard.rb +12 -0
- data/lib/pubid/asme/identifiers.rb +10 -0
- data/lib/pubid/asme/parser.rb +308 -0
- data/lib/pubid/asme/scheme.rb +37 -0
- data/lib/pubid/asme/single_identifier.rb +29 -0
- data/lib/pubid/asme/urn_generator.rb +133 -0
- data/lib/pubid/asme.rb +21 -0
- data/lib/pubid/astm/builder.rb +159 -0
- data/lib/pubid/astm/components/code.rb +33 -0
- data/lib/pubid/astm/identifier.rb +92 -0
- data/lib/pubid/astm/identifiers/adjunct.rb +21 -0
- data/lib/pubid/astm/identifiers/base.rb +13 -0
- data/lib/pubid/astm/identifiers/data_series.rb +25 -0
- data/lib/pubid/astm/identifiers/iso_dual_published.rb +74 -0
- data/lib/pubid/astm/identifiers/manual.rb +40 -0
- data/lib/pubid/astm/identifiers/monograph.rb +25 -0
- data/lib/pubid/astm/identifiers/research_report.rb +18 -0
- data/lib/pubid/astm/identifiers/standard.rb +52 -0
- data/lib/pubid/astm/identifiers/technical_report.rb +23 -0
- data/lib/pubid/astm/identifiers/work_in_progress.rb +21 -0
- data/lib/pubid/astm/parser.rb +244 -0
- data/lib/pubid/astm/scheme.rb +55 -0
- data/lib/pubid/astm/single_identifier.rb +25 -0
- data/lib/pubid/astm/urn_generator.rb +99 -0
- data/lib/pubid/astm.rb +38 -0
- data/lib/pubid/bsi/builder.rb +1483 -0
- data/lib/pubid/bsi/components/code.rb +11 -0
- data/lib/pubid/bsi/components/date.rb +11 -0
- data/lib/pubid/bsi/components/publisher.rb +11 -0
- data/lib/pubid/bsi/components/type.rb +11 -0
- data/lib/pubid/bsi/identifier.rb +87 -0
- data/lib/pubid/bsi/identifiers/addendum_document.rb +64 -0
- data/lib/pubid/bsi/identifiers/adopted_european_norm.rb +95 -0
- data/lib/pubid/bsi/identifiers/adopted_international_standard.rb +82 -0
- data/lib/pubid/bsi/identifiers/aerospace_standard.rb +118 -0
- data/lib/pubid/bsi/identifiers/amendment.rb +40 -0
- data/lib/pubid/bsi/identifiers/base.rb +11 -0
- data/lib/pubid/bsi/identifiers/british_industrial_practice.rb +27 -0
- data/lib/pubid/bsi/identifiers/british_standard.rb +33 -0
- data/lib/pubid/bsi/identifiers/bundled_identifier.rb +114 -0
- data/lib/pubid/bsi/identifiers/committee_document.rb +51 -0
- data/lib/pubid/bsi/identifiers/consolidated_identifier.rb +152 -0
- data/lib/pubid/bsi/identifiers/corrigendum.rb +28 -0
- data/lib/pubid/bsi/identifiers/detailed_specification.rb +69 -0
- data/lib/pubid/bsi/identifiers/disc.rb +56 -0
- data/lib/pubid/bsi/identifiers/draft_document.rb +71 -0
- data/lib/pubid/bsi/identifiers/electronic_book.rb +52 -0
- data/lib/pubid/bsi/identifiers/expert_commentary.rb +47 -0
- data/lib/pubid/bsi/identifiers/explanatory_supplement.rb +82 -0
- data/lib/pubid/bsi/identifiers/flex.rb +61 -0
- data/lib/pubid/bsi/identifiers/handbook.rb +39 -0
- data/lib/pubid/bsi/identifiers/index.rb +62 -0
- data/lib/pubid/bsi/identifiers/method.rb +76 -0
- data/lib/pubid/bsi/identifiers/national_annex.rb +73 -0
- data/lib/pubid/bsi/identifiers/practice_guide.rb +27 -0
- data/lib/pubid/bsi/identifiers/publicly_available_specification.rb +79 -0
- data/lib/pubid/bsi/identifiers/published_document.rb +79 -0
- data/lib/pubid/bsi/identifiers/section.rb +62 -0
- data/lib/pubid/bsi/identifiers/set.rb +46 -0
- data/lib/pubid/bsi/identifiers/standalone_amendment.rb +40 -0
- data/lib/pubid/bsi/identifiers/supplement_document.rb +51 -0
- data/lib/pubid/bsi/identifiers/supplementary_index.rb +81 -0
- data/lib/pubid/bsi/identifiers/technical_specification.rb +79 -0
- data/lib/pubid/bsi/identifiers/test_method.rb +67 -0
- data/lib/pubid/bsi/identifiers/value_added_publication.rb +52 -0
- data/lib/pubid/bsi/identifiers.rb +52 -0
- data/lib/pubid/bsi/model.rb +196 -0
- data/lib/pubid/bsi/parser.rb +659 -0
- data/lib/pubid/bsi/scheme.rb +243 -0
- data/lib/pubid/bsi/single_identifier.rb +129 -0
- data/lib/pubid/bsi/urn_generator.rb +84 -0
- data/lib/pubid/bsi.rb +32 -0
- data/lib/pubid/builder/base.rb +138 -0
- data/lib/pubid/bundled_identifier.rb +126 -0
- data/lib/pubid/ccsds/builder.rb +56 -0
- data/lib/pubid/ccsds/identifier.rb +84 -0
- data/lib/pubid/ccsds/identifiers/base.rb +89 -0
- data/lib/pubid/ccsds/identifiers/base_BASE_88929.rb +70 -0
- data/lib/pubid/ccsds/identifiers/corrigendum.rb +39 -0
- data/lib/pubid/ccsds/identifiers.rb +10 -0
- data/lib/pubid/ccsds/parser.rb +71 -0
- data/lib/pubid/ccsds/scheme.rb +57 -0
- data/lib/pubid/ccsds/single_identifier.rb +77 -0
- data/lib/pubid/ccsds/supplement_identifier.rb +33 -0
- data/lib/pubid/ccsds/urn_generator.rb +115 -0
- data/lib/pubid/ccsds.rb +21 -0
- data/lib/pubid/cen_cenelec/builder.rb +330 -0
- data/lib/pubid/cen_cenelec/identifier.rb +52 -0
- data/lib/pubid/cen_cenelec/identifiers/adopted_european_norm.rb +40 -0
- data/lib/pubid/cen_cenelec/identifiers/amendment.rb +29 -0
- data/lib/pubid/cen_cenelec/identifiers/base.rb +75 -0
- data/lib/pubid/cen_cenelec/identifiers/cen_report.rb +28 -0
- data/lib/pubid/cen_cenelec/identifiers/cen_workshop_agreement.rb +27 -0
- data/lib/pubid/cen_cenelec/identifiers/cenelec_harmonization_document.rb +28 -0
- data/lib/pubid/cen_cenelec/identifiers/consolidated_identifier.rb +61 -0
- data/lib/pubid/cen_cenelec/identifiers/corrigendum.rb +35 -0
- data/lib/pubid/cen_cenelec/identifiers/european_norm.rb +41 -0
- data/lib/pubid/cen_cenelec/identifiers/european_prestandard.rb +37 -0
- data/lib/pubid/cen_cenelec/identifiers/european_specification.rb +28 -0
- data/lib/pubid/cen_cenelec/identifiers/fragment.rb +22 -0
- data/lib/pubid/cen_cenelec/identifiers/guide.rb +27 -0
- data/lib/pubid/cen_cenelec/identifiers/harmonization_document.rb +27 -0
- data/lib/pubid/cen_cenelec/identifiers/technical_report.rb +27 -0
- data/lib/pubid/cen_cenelec/identifiers/technical_specification.rb +35 -0
- data/lib/pubid/cen_cenelec/identifiers.rb +32 -0
- data/lib/pubid/cen_cenelec/parser.rb +144 -0
- data/lib/pubid/cen_cenelec/scheme.rb +164 -0
- data/lib/pubid/cen_cenelec/single_identifier.rb +130 -0
- data/lib/pubid/cen_cenelec/supplement_identifier.rb +48 -0
- data/lib/pubid/cen_cenelec/urn_generator.rb +129 -0
- data/lib/pubid/cen_cenelec.rb +21 -0
- data/lib/pubid/cie/builder.rb +399 -0
- data/lib/pubid/cie/components/code.rb +72 -0
- data/lib/pubid/cie/components/language.rb +58 -0
- data/lib/pubid/cie/identifier.rb +71 -0
- data/lib/pubid/cie/identifiers/bundle.rb +20 -0
- data/lib/pubid/cie/identifiers/conference.rb +32 -0
- data/lib/pubid/cie/identifiers/corrigendum.rb +40 -0
- data/lib/pubid/cie/identifiers/dual_published.rb +41 -0
- data/lib/pubid/cie/identifiers/identical.rb +64 -0
- data/lib/pubid/cie/identifiers/joint_published.rb +52 -0
- data/lib/pubid/cie/identifiers/standard.rb +58 -0
- data/lib/pubid/cie/identifiers/supplement.rb +45 -0
- data/lib/pubid/cie/identifiers/tutorial_bundle.rb +20 -0
- data/lib/pubid/cie/identifiers.rb +17 -0
- data/lib/pubid/cie/parser.rb +347 -0
- data/lib/pubid/cie/scheme.rb +64 -0
- data/lib/pubid/cie/single_identifier.rb +30 -0
- data/lib/pubid/cie/supplement_identifier.rb +26 -0
- data/lib/pubid/cie/urn_generator.rb +123 -0
- data/lib/pubid/cie.rb +28 -0
- data/lib/pubid/components/code.rb +33 -0
- data/lib/pubid/components/date.rb +49 -0
- data/lib/pubid/components/edition.rb +32 -0
- data/lib/pubid/components/factory.rb +50 -0
- data/lib/pubid/components/language.rb +37 -0
- data/lib/pubid/components/locality.rb +10 -0
- data/lib/pubid/components/publisher.rb +36 -0
- data/lib/pubid/components/stage.rb +54 -0
- data/lib/pubid/components/type.rb +58 -0
- data/lib/pubid/components/typed_stage.rb +59 -0
- data/lib/pubid/components.rb +16 -0
- data/lib/pubid/core/pattern_doc_generator.rb +272 -0
- data/lib/pubid/core/update_codes.rb +77 -0
- data/lib/pubid/core.rb +8 -0
- data/lib/pubid/csa/builder.rb +671 -0
- data/lib/pubid/csa/components/code.rb +9 -0
- data/lib/pubid/csa/components.rb +9 -0
- data/lib/pubid/csa/composite_identifier.rb +27 -0
- data/lib/pubid/csa/identifier.rb +513 -0
- data/lib/pubid/csa/identifiers/base.rb +133 -0
- data/lib/pubid/csa/identifiers/bundled.rb +125 -0
- data/lib/pubid/csa/identifiers/canadian_adopted.rb +82 -0
- data/lib/pubid/csa/identifiers/cec.rb +129 -0
- data/lib/pubid/csa/identifiers/combined.rb +130 -0
- data/lib/pubid/csa/identifiers/csa_adopted.rb +78 -0
- data/lib/pubid/csa/identifiers/package.rb +65 -0
- data/lib/pubid/csa/identifiers/series.rb +127 -0
- data/lib/pubid/csa/identifiers/standard.rb +10 -0
- data/lib/pubid/csa/identifiers.rb +17 -0
- data/lib/pubid/csa/parser.rb +445 -0
- data/lib/pubid/csa/scheme.rb +44 -0
- data/lib/pubid/csa/single_identifier.rb +30 -0
- data/lib/pubid/csa/urn_generator.rb +80 -0
- data/lib/pubid/csa/wrapper_identifier.rb +31 -0
- data/lib/pubid/csa.rb +25 -0
- data/lib/pubid/etsi/builder.rb +133 -0
- data/lib/pubid/etsi/components/code.rb +42 -0
- data/lib/pubid/etsi/components/version.rb +37 -0
- data/lib/pubid/etsi/components.rb +10 -0
- data/lib/pubid/etsi/identifier.rb +57 -0
- data/lib/pubid/etsi/identifiers/amendment.rb +15 -0
- data/lib/pubid/etsi/identifiers/base.rb +38 -0
- data/lib/pubid/etsi/identifiers/corrigendum.rb +15 -0
- data/lib/pubid/etsi/identifiers/etsi_standard.rb +19 -0
- data/lib/pubid/etsi/identifiers/supplement_identifier.rb +91 -0
- data/lib/pubid/etsi/identifiers.rb +14 -0
- data/lib/pubid/etsi/parser.rb +133 -0
- data/lib/pubid/etsi/scheme.rb +42 -0
- data/lib/pubid/etsi/urn_generator.rb +76 -0
- data/lib/pubid/etsi.rb +21 -0
- data/lib/pubid/export/auditor.rb +89 -0
- data/lib/pubid/export/data_class_exporter.rb +59 -0
- data/lib/pubid/export/exporter.rb +74 -0
- data/lib/pubid/export/flavor_exporter.rb +402 -0
- data/lib/pubid/export/ieee_exporter.rb +78 -0
- data/lib/pubid/export/itu_exporter.rb +66 -0
- data/lib/pubid/export/nist_exporter.rb +64 -0
- data/lib/pubid/export/registry_exporter.rb +90 -0
- data/lib/pubid/export/result.rb +97 -0
- data/lib/pubid/export/scheme_exporter.rb +70 -0
- data/lib/pubid/export.rb +18 -0
- data/lib/pubid/format_detector.rb +16 -0
- data/lib/pubid/format_registry.rb +42 -0
- data/lib/pubid/identifier.rb +242 -0
- data/lib/pubid/identifier_metadata.rb +148 -0
- data/lib/pubid/identifier_registry.rb +198 -0
- data/lib/pubid/idf/builder.rb +82 -0
- data/lib/pubid/idf/identifier.rb +129 -0
- data/lib/pubid/idf/identifiers/amendment.rb +27 -0
- data/lib/pubid/idf/identifiers/corrigendum.rb +27 -0
- data/lib/pubid/idf/identifiers/international_standard.rb +123 -0
- data/lib/pubid/idf/identifiers/reviewed_method.rb +100 -0
- data/lib/pubid/idf/identifiers.rb +13 -0
- data/lib/pubid/idf/parser.rb +143 -0
- data/lib/pubid/idf/scheme.rb +61 -0
- data/lib/pubid/idf/single_identifier.rb +19 -0
- data/lib/pubid/idf/supplement_identifier.rb +43 -0
- data/lib/pubid/idf/urn_generator.rb +84 -0
- data/lib/pubid/idf.rb +25 -0
- data/lib/pubid/iec/builder.rb +458 -0
- data/lib/pubid/iec/components/code.rb +60 -0
- data/lib/pubid/iec/components/consolidated_amendment.rb +59 -0
- data/lib/pubid/iec/components/publisher.rb +36 -0
- data/lib/pubid/iec/components/sheet.rb +32 -0
- data/lib/pubid/iec/components/trf_info.rb +38 -0
- data/lib/pubid/iec/components/vap_suffix.rb +41 -0
- data/lib/pubid/iec/identifier.rb +256 -0
- data/lib/pubid/iec/identifiers/amendment.rb +94 -0
- data/lib/pubid/iec/identifiers/base.rb +82 -0
- data/lib/pubid/iec/identifiers/component_specification.rb +39 -0
- data/lib/pubid/iec/identifiers/conformity_assessment.rb +39 -0
- data/lib/pubid/iec/identifiers/consolidated_identifier.rb +82 -0
- data/lib/pubid/iec/identifiers/corrigendum.rb +94 -0
- data/lib/pubid/iec/identifiers/fragment_identifier.rb +137 -0
- data/lib/pubid/iec/identifiers/guide.rb +104 -0
- data/lib/pubid/iec/identifiers/international_standard.rb +147 -0
- data/lib/pubid/iec/identifiers/interpretation_sheet.rb +104 -0
- data/lib/pubid/iec/identifiers/operational_document.rb +39 -0
- data/lib/pubid/iec/identifiers/publicly_available_specification.rb +101 -0
- data/lib/pubid/iec/identifiers/sheet_identifier.rb +62 -0
- data/lib/pubid/iec/identifiers/societal_technology_trend_report.rb +40 -0
- data/lib/pubid/iec/identifiers/systems_reference_document.rb +40 -0
- data/lib/pubid/iec/identifiers/technical_report.rb +132 -0
- data/lib/pubid/iec/identifiers/technical_specification.rb +132 -0
- data/lib/pubid/iec/identifiers/technology_report.rb +39 -0
- data/lib/pubid/iec/identifiers/test_report_form.rb +78 -0
- data/lib/pubid/iec/identifiers/vap_identifier.rb +73 -0
- data/lib/pubid/iec/identifiers/white_paper.rb +39 -0
- data/lib/pubid/iec/identifiers/working_document.rb +96 -0
- data/lib/pubid/iec/parser.rb +417 -0
- data/lib/pubid/iec/rendering_style.rb +113 -0
- data/lib/pubid/iec/scheme.rb +71 -0
- data/lib/pubid/iec/single_identifier.rb +80 -0
- data/lib/pubid/iec/supplement_identifier.rb +161 -0
- data/lib/pubid/iec/urn_generator.rb +79 -0
- data/lib/pubid/iec/urn_parser.rb +90 -0
- data/lib/pubid/iec.rb +85 -0
- data/lib/pubid/ieee/aiee/builder.rb +71 -0
- data/lib/pubid/ieee/aiee/identifier.rb +105 -0
- data/lib/pubid/ieee/aiee/parser.rb +130 -0
- data/lib/pubid/ieee/aiee.rb +11 -0
- data/lib/pubid/ieee/builder.rb +1237 -0
- data/lib/pubid/ieee/components/code.rb +102 -0
- data/lib/pubid/ieee/components/draft.rb +93 -0
- data/lib/pubid/ieee/components/relationship.rb +157 -0
- data/lib/pubid/ieee/components/typed_stage.rb +100 -0
- data/lib/pubid/ieee/identifier.rb +54 -0
- data/lib/pubid/ieee/identifiers/adopted_standard.rb +33 -0
- data/lib/pubid/ieee/identifiers/base.rb +591 -0
- data/lib/pubid/ieee/identifiers/conformance_identifier.rb +35 -0
- data/lib/pubid/ieee/identifiers/corrigendum.rb +37 -0
- data/lib/pubid/ieee/identifiers/csa_dual_published.rb +51 -0
- data/lib/pubid/ieee/identifiers/dual_identifier.rb +18 -0
- data/lib/pubid/ieee/identifiers/dual_published.rb +28 -0
- data/lib/pubid/ieee/identifiers/iec_ieee_copublished.rb +27 -0
- data/lib/pubid/ieee/identifiers/interpretation_identifier.rb +34 -0
- data/lib/pubid/ieee/identifiers/joint_development.rb +172 -0
- data/lib/pubid/ieee/identifiers/multi_numbered_identifier.rb +51 -0
- data/lib/pubid/ieee/identifiers/nesc/base.rb +56 -0
- data/lib/pubid/ieee/identifiers/nesc/draft.rb +28 -0
- data/lib/pubid/ieee/identifiers/nesc/handbook.rb +32 -0
- data/lib/pubid/ieee/identifiers/nesc/redline.rb +26 -0
- data/lib/pubid/ieee/identifiers/nesc/standard.rb +26 -0
- data/lib/pubid/ieee/identifiers/nesc.rb +15 -0
- data/lib/pubid/ieee/identifiers/parenthetical_identifier.rb +20 -0
- data/lib/pubid/ieee/identifiers/project_draft_identifier.rb +26 -0
- data/lib/pubid/ieee/identifiers/redlined_standard.rb +33 -0
- data/lib/pubid/ieee/identifiers/si_standard.rb +73 -0
- data/lib/pubid/ieee/identifiers/standard.rb +41 -0
- data/lib/pubid/ieee/identifiers/supplement_identifier.rb +23 -0
- data/lib/pubid/ieee/identifiers.rb +33 -0
- data/lib/pubid/ieee/ire/builder.rb +61 -0
- data/lib/pubid/ieee/ire/identifier.rb +58 -0
- data/lib/pubid/ieee/ire/parser.rb +91 -0
- data/lib/pubid/ieee/ire.rb +11 -0
- data/lib/pubid/ieee/nesc/builder.rb +101 -0
- data/lib/pubid/ieee/nesc/parser.rb +154 -0
- data/lib/pubid/ieee/nesc.rb +10 -0
- data/lib/pubid/ieee/parser.rb +1226 -0
- data/lib/pubid/ieee/scheme.rb +90 -0
- data/lib/pubid/ieee/typed_stages.rb +172 -0
- data/lib/pubid/ieee/urn_generator.rb +188 -0
- data/lib/pubid/ieee.rb +32 -0
- data/lib/pubid/ieee_debug.rb +31 -0
- data/lib/pubid/iho/builder.rb +37 -0
- data/lib/pubid/iho/identifier.rb +61 -0
- data/lib/pubid/iho/identifiers/base.rb +41 -0
- data/lib/pubid/iho/identifiers/bibliographic.rb +16 -0
- data/lib/pubid/iho/identifiers/circular_letter.rb +15 -0
- data/lib/pubid/iho/identifiers/miscellaneous.rb +16 -0
- data/lib/pubid/iho/identifiers/publication.rb +15 -0
- data/lib/pubid/iho/identifiers/standard.rb +15 -0
- data/lib/pubid/iho/identifiers.rb +14 -0
- data/lib/pubid/iho/parser.rb +68 -0
- data/lib/pubid/iho/scheme.rb +29 -0
- data/lib/pubid/iho/urn_generator.rb +29 -0
- data/lib/pubid/iho.rb +21 -0
- data/lib/pubid/iso/builder.rb +309 -0
- data/lib/pubid/iso/bundled_identifier.rb +85 -0
- data/lib/pubid/iso/combined_identifier.rb +22 -0
- data/lib/pubid/iso/components/code.rb +36 -0
- data/lib/pubid/iso/components/publisher.rb +60 -0
- data/lib/pubid/iso/components.rb +12 -0
- data/lib/pubid/iso/format_resolver.rb +45 -0
- data/lib/pubid/iso/identifier.rb +330 -0
- data/lib/pubid/iso/identifiers/addendum.rb +104 -0
- data/lib/pubid/iso/identifiers/amendment.rb +128 -0
- data/lib/pubid/iso/identifiers/base.rb +115 -0
- data/lib/pubid/iso/identifiers/corrigendum.rb +108 -0
- data/lib/pubid/iso/identifiers/data.rb +76 -0
- data/lib/pubid/iso/identifiers/directives.rb +59 -0
- data/lib/pubid/iso/identifiers/directives_supplement.rb +119 -0
- data/lib/pubid/iso/identifiers/extract.rb +30 -0
- data/lib/pubid/iso/identifiers/guide.rb +100 -0
- data/lib/pubid/iso/identifiers/international_standard.rb +168 -0
- data/lib/pubid/iso/identifiers/international_standardized_profile.rb +94 -0
- data/lib/pubid/iso/identifiers/international_workshop_agreement.rb +89 -0
- data/lib/pubid/iso/identifiers/pas.rb +93 -0
- data/lib/pubid/iso/identifiers/recommendation.rb +45 -0
- data/lib/pubid/iso/identifiers/supplement.rb +87 -0
- data/lib/pubid/iso/identifiers/tc_document.rb +108 -0
- data/lib/pubid/iso/identifiers/technical_report.rb +103 -0
- data/lib/pubid/iso/identifiers/technical_specification.rb +102 -0
- data/lib/pubid/iso/identifiers/technology_trends_assessments.rb +95 -0
- data/lib/pubid/iso/identifiers.rb +33 -0
- data/lib/pubid/iso/parser.rb +512 -0
- data/lib/pubid/iso/rendering_style.rb +120 -0
- data/lib/pubid/iso/scheme.rb +193 -0
- data/lib/pubid/iso/single_identifier.rb +64 -0
- data/lib/pubid/iso/supplement_identifier.rb +27 -0
- data/lib/pubid/iso/urn_generator.rb +426 -0
- data/lib/pubid/iso/urn_parser.rb +437 -0
- data/lib/pubid/iso/utilities.rb +86 -0
- data/lib/pubid/iso.rb +50 -0
- data/lib/pubid/itu/builder.rb +171 -0
- data/lib/pubid/itu/components/code.rb +39 -0
- data/lib/pubid/itu/components/sector.rb +35 -0
- data/lib/pubid/itu/components/series.rb +29 -0
- data/lib/pubid/itu/i18n.rb +9 -0
- data/lib/pubid/itu/i18n.yaml +30 -0
- data/lib/pubid/itu/identifier.rb +118 -0
- data/lib/pubid/itu/identifiers/amendment.rb +43 -0
- data/lib/pubid/itu/identifiers/annex.rb +74 -0
- data/lib/pubid/itu/identifiers/base.rb +154 -0
- data/lib/pubid/itu/identifiers/combined_identifier.rb +47 -0
- data/lib/pubid/itu/identifiers/corrigendum.rb +44 -0
- data/lib/pubid/itu/identifiers/recommendation.rb +16 -0
- data/lib/pubid/itu/identifiers/special_publication.rb +31 -0
- data/lib/pubid/itu/identifiers/supplement.rb +46 -0
- data/lib/pubid/itu/identifiers.rb +16 -0
- data/lib/pubid/itu/model.rb +111 -0
- data/lib/pubid/itu/parser.rb +225 -0
- data/lib/pubid/itu/scheme.rb +174 -0
- data/lib/pubid/itu/urn_generator.rb +105 -0
- data/lib/pubid/itu.rb +22 -0
- data/lib/pubid/jcgm/builder.rb +88 -0
- data/lib/pubid/jcgm/components/publisher.rb +20 -0
- data/lib/pubid/jcgm/components.rb +9 -0
- data/lib/pubid/jcgm/identifier.rb +54 -0
- data/lib/pubid/jcgm/identifiers/amendment.rb +35 -0
- data/lib/pubid/jcgm/identifiers/guide.rb +21 -0
- data/lib/pubid/jcgm/identifiers/gum_guide.rb +51 -0
- data/lib/pubid/jcgm/identifiers.rb +11 -0
- data/lib/pubid/jcgm/parser.rb +84 -0
- data/lib/pubid/jcgm/scheme.rb +60 -0
- data/lib/pubid/jcgm/single_identifier.rb +48 -0
- data/lib/pubid/jcgm/supplement_identifier.rb +16 -0
- data/lib/pubid/jcgm/urn_generator.rb +110 -0
- data/lib/pubid/jcgm.rb +31 -0
- data/lib/pubid/jis/builder.rb +124 -0
- data/lib/pubid/jis/components/code.rb +59 -0
- data/lib/pubid/jis/components.rb +9 -0
- data/lib/pubid/jis/identifier.rb +61 -0
- data/lib/pubid/jis/identifiers/amendment.rb +16 -0
- data/lib/pubid/jis/identifiers/base.rb +72 -0
- data/lib/pubid/jis/identifiers/explanation.rb +22 -0
- data/lib/pubid/jis/identifiers/japanese_industrial_standard.rb +16 -0
- data/lib/pubid/jis/identifiers/standard.rb +27 -0
- data/lib/pubid/jis/identifiers/technical_report.rb +31 -0
- data/lib/pubid/jis/identifiers/technical_specification.rb +31 -0
- data/lib/pubid/jis/identifiers.rb +17 -0
- data/lib/pubid/jis/parser.rb +109 -0
- data/lib/pubid/jis/scheme.rb +49 -0
- data/lib/pubid/jis/single_identifier.rb +37 -0
- data/lib/pubid/jis/supplement_identifier.rb +47 -0
- data/lib/pubid/jis/urn_generator.rb +25 -0
- data/lib/pubid/jis.rb +23 -0
- data/lib/pubid/lutaml/no_store_registration.rb +30 -0
- data/lib/pubid/nist/builder.rb +2269 -0
- data/lib/pubid/nist/components/code.rb +38 -0
- data/lib/pubid/nist/components/edition.rb +134 -0
- data/lib/pubid/nist/components/issue_number.rb +28 -0
- data/lib/pubid/nist/components/part.rb +77 -0
- data/lib/pubid/nist/components/publisher.rb +24 -0
- data/lib/pubid/nist/components/stage.rb +53 -0
- data/lib/pubid/nist/components/supplement.rb +188 -0
- data/lib/pubid/nist/components/translation.rb +42 -0
- data/lib/pubid/nist/components/update.rb +103 -0
- data/lib/pubid/nist/components/version.rb +35 -0
- data/lib/pubid/nist/components/volume.rb +32 -0
- data/lib/pubid/nist/components.rb +19 -0
- data/lib/pubid/nist/configuration.rb +77 -0
- data/lib/pubid/nist/identifier.rb +62 -0
- data/lib/pubid/nist/identifiers/base.rb +578 -0
- data/lib/pubid/nist/identifiers/circular.rb +68 -0
- data/lib/pubid/nist/identifiers/circular_supplement.rb +50 -0
- data/lib/pubid/nist/identifiers/commercial_standard.rb +41 -0
- data/lib/pubid/nist/identifiers/commercial_standard_emergency.rb +56 -0
- data/lib/pubid/nist/identifiers/commercial_standards_monthly.rb +56 -0
- data/lib/pubid/nist/identifiers/crpl_report.rb +132 -0
- data/lib/pubid/nist/identifiers/federal_information_processing_standards.rb +104 -0
- data/lib/pubid/nist/identifiers/grant_contractor_report.rb +35 -0
- data/lib/pubid/nist/identifiers/handbook.rb +50 -0
- data/lib/pubid/nist/identifiers/internal_report.rb +56 -0
- data/lib/pubid/nist/identifiers/letter_circular.rb +45 -0
- data/lib/pubid/nist/identifiers/miscellaneous_publication.rb +65 -0
- data/lib/pubid/nist/identifiers/monograph.rb +69 -0
- data/lib/pubid/nist/identifiers/ncstar.rb +41 -0
- data/lib/pubid/nist/identifiers/nsrds.rb +41 -0
- data/lib/pubid/nist/identifiers/owmwp.rb +35 -0
- data/lib/pubid/nist/identifiers/report.rb +67 -0
- data/lib/pubid/nist/identifiers/special_publication.rb +36 -0
- data/lib/pubid/nist/identifiers/technical_note.rb +90 -0
- data/lib/pubid/nist/identifiers.rb +33 -0
- data/lib/pubid/nist/parser.rb +1117 -0
- data/lib/pubid/nist/scheme.rb +199 -0
- data/lib/pubid/nist/supplement_identifier.rb +67 -0
- data/lib/pubid/nist/urn_generator.rb +133 -0
- data/lib/pubid/nist.rb +37 -0
- data/lib/pubid/oiml/builder.rb +189 -0
- data/lib/pubid/oiml/components/code.rb +20 -0
- data/lib/pubid/oiml/components.rb +9 -0
- data/lib/pubid/oiml/identifier.rb +61 -0
- data/lib/pubid/oiml/identifiers/amendment.rb +13 -0
- data/lib/pubid/oiml/identifiers/annex.rb +62 -0
- data/lib/pubid/oiml/identifiers/base.rb +36 -0
- data/lib/pubid/oiml/identifiers/basic_publication.rb +13 -0
- data/lib/pubid/oiml/identifiers/document.rb +13 -0
- data/lib/pubid/oiml/identifiers/expert_report.rb +13 -0
- data/lib/pubid/oiml/identifiers/guide.rb +13 -0
- data/lib/pubid/oiml/identifiers/recommendation.rb +13 -0
- data/lib/pubid/oiml/identifiers/seminar_report.rb +13 -0
- data/lib/pubid/oiml/identifiers/vocabulary.rb +13 -0
- data/lib/pubid/oiml/identifiers.rb +18 -0
- data/lib/pubid/oiml/parser.rb +173 -0
- data/lib/pubid/oiml/scheme.rb +46 -0
- data/lib/pubid/oiml/single_identifier.rb +90 -0
- data/lib/pubid/oiml/supplement_identifier.rb +43 -0
- data/lib/pubid/oiml/urn_generator.rb +64 -0
- data/lib/pubid/oiml.rb +26 -0
- data/lib/pubid/parser/common_parse_methods.rb +13 -0
- data/lib/pubid/parser/common_parse_rules.rb +56 -0
- data/lib/pubid/parser.rb +8 -0
- data/lib/pubid/parsers/base.rb +11 -0
- data/lib/pubid/parsers/mr_string.rb +93 -0
- data/lib/pubid/plateau/builder.rb +50 -0
- data/lib/pubid/plateau/identifier.rb +57 -0
- data/lib/pubid/plateau/identifiers/annex.rb +16 -0
- data/lib/pubid/plateau/identifiers/base.rb +51 -0
- data/lib/pubid/plateau/identifiers/handbook.rb +34 -0
- data/lib/pubid/plateau/identifiers/technical_report.rb +20 -0
- data/lib/pubid/plateau/identifiers.rb +12 -0
- data/lib/pubid/plateau/parser.rb +63 -0
- data/lib/pubid/plateau/scheme.rb +45 -0
- data/lib/pubid/plateau/supplement_identifier.rb +72 -0
- data/lib/pubid/plateau/urn_generator.rb +29 -0
- data/lib/pubid/plateau.rb +26 -0
- data/lib/pubid/renderers/base.rb +53 -0
- data/lib/pubid/renderers/directives_renderer.rb +61 -0
- data/lib/pubid/renderers/guide_renderer.rb +24 -0
- data/lib/pubid/renderers/human_readable.rb +70 -0
- data/lib/pubid/renderers/iwa_renderer.rb +20 -0
- data/lib/pubid/renderers/mr_string.rb +16 -0
- data/lib/pubid/renderers/supplement_renderer.rb +36 -0
- data/lib/pubid/renderers/urn.rb +11 -0
- data/lib/pubid/renderers.rb +14 -0
- data/lib/pubid/rendering/base.rb +73 -0
- data/lib/pubid/rendering/common.rb +211 -0
- data/lib/pubid/rendering/context.rb +159 -0
- data/lib/pubid/rendering/date.rb +27 -0
- data/lib/pubid/rendering/format.rb +25 -0
- data/lib/pubid/rendering/language.rb +21 -0
- data/lib/pubid/rendering/numbering.rb +24 -0
- data/lib/pubid/rendering/publisher.rb +25 -0
- data/lib/pubid/rendering/stage.rb +38 -0
- data/lib/pubid/rendering/supplement.rb +46 -0
- data/lib/pubid/rendering.rb +16 -0
- data/lib/pubid/sae/builder.rb +32 -0
- data/lib/pubid/sae/components/code.rb +9 -0
- data/lib/pubid/sae/components/date.rb +19 -0
- data/lib/pubid/sae/components/type.rb +19 -0
- data/lib/pubid/sae/components.rb +11 -0
- data/lib/pubid/sae/identifier.rb +37 -0
- data/lib/pubid/sae/identifiers/base.rb +42 -0
- data/lib/pubid/sae/identifiers.rb +9 -0
- data/lib/pubid/sae/parser.rb +55 -0
- data/lib/pubid/sae/scheme.rb +47 -0
- data/lib/pubid/sae/urn_generator.rb +38 -0
- data/lib/pubid/sae.rb +19 -0
- data/lib/pubid/scheme.rb +219 -0
- data/lib/pubid/urn_generator/base.rb +110 -0
- data/lib/pubid/utils/string_normalizer.rb +196 -0
- data/lib/pubid/utils.rb +7 -0
- data/lib/pubid/version.rb +3 -1
- data/lib/pubid.rb +137 -13
- data/lib/tasks/docs.rake +37 -0
- data/lib/tasks/export.rake +38 -0
- data/lib/tasks/website-data.json +7488 -0
- metadata +616 -171
- data/lib/pubid/registry.rb +0 -30
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "lutaml/model"
|
|
4
|
+
|
|
5
|
+
module Pubid
|
|
6
|
+
module Iso
|
|
7
|
+
module Identifiers
|
|
8
|
+
# Base class for ISO identifiers
|
|
9
|
+
class Base < ::Pubid::Identifier
|
|
10
|
+
# Inherit most attributes from parent
|
|
11
|
+
# ISO-specific attributes
|
|
12
|
+
attribute :stage_iteration, ::Pubid::Iso::Components::Code
|
|
13
|
+
|
|
14
|
+
# ISO rendering context singleton
|
|
15
|
+
def self.rendering_context
|
|
16
|
+
@rendering_context ||= Pubid::Rendering::RenderingContext.iso
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
# Render identifier using OOP approach - each component renders itself
|
|
20
|
+
#
|
|
21
|
+
# @param lang [Symbol] language for rendering (:en or :fr)
|
|
22
|
+
# @param lang_single [Boolean] use single char language format
|
|
23
|
+
# @param with_edition [Boolean] include edition in output
|
|
24
|
+
# @return [String] formatted identifier string
|
|
25
|
+
def to_s(lang: :en, lang_single: false, with_edition: false)
|
|
26
|
+
# Create rendering context with language settings
|
|
27
|
+
context = Pubid::Rendering::RenderingContext.new(
|
|
28
|
+
stage_separator: "/",
|
|
29
|
+
stage_separator_with_copublisher: " ",
|
|
30
|
+
type_separator: "/",
|
|
31
|
+
type_separator_with_prefix: " ",
|
|
32
|
+
default_type_abbr: "IS",
|
|
33
|
+
lang: lang,
|
|
34
|
+
lang_single: lang_single,
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
# Compose the identifier from component renderings
|
|
38
|
+
render_from_components(context: context, with_edition: with_edition)
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
private
|
|
42
|
+
|
|
43
|
+
# Compose identifier string by having each component render itself
|
|
44
|
+
#
|
|
45
|
+
# @param context [RenderingContext] rendering context for flavor rules
|
|
46
|
+
# @param with_edition [Boolean] include edition in output
|
|
47
|
+
# @return [String] composed identifier string
|
|
48
|
+
def render_from_components(context:, with_edition: false)
|
|
49
|
+
parts = []
|
|
50
|
+
parts << publisher.to_s
|
|
51
|
+
|
|
52
|
+
# Stage renders itself with context-aware separators
|
|
53
|
+
if stage
|
|
54
|
+
has_copub = publisher&.has_copublisher?
|
|
55
|
+
parts << stage.to_s(context: context, has_copublisher: has_copub)
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# Type renders itself with context-aware separators and default handling
|
|
59
|
+
if type
|
|
60
|
+
has_prefix = stage || publisher&.has_copublisher?
|
|
61
|
+
type_render = type.to_s(context: context, has_prefix: has_prefix)
|
|
62
|
+
parts << type_render if type_render != ""
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# Number renders itself
|
|
66
|
+
parts << " #{number.value}" if number&.value
|
|
67
|
+
|
|
68
|
+
# Parts render themselves
|
|
69
|
+
parts << "-#{part.value}" if part&.value
|
|
70
|
+
parts << "-#{subpart.value}" if subpart&.value
|
|
71
|
+
|
|
72
|
+
# Stage iteration renders itself
|
|
73
|
+
parts << ".#{stage_iteration.value}" if stage_iteration&.value
|
|
74
|
+
|
|
75
|
+
# Date renders itself with context
|
|
76
|
+
parts << date.to_s(context: context) if date&.year
|
|
77
|
+
|
|
78
|
+
# Edition renders itself
|
|
79
|
+
parts << " #{edition}" if with_edition && edition&.number
|
|
80
|
+
|
|
81
|
+
# Languages render themselves
|
|
82
|
+
if languages&.any?
|
|
83
|
+
parts << "(#{languages.map do |l|
|
|
84
|
+
l.to_s(lang_single: context.lang_single)
|
|
85
|
+
end.join('/')})"
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
parts.join
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
public
|
|
92
|
+
|
|
93
|
+
# V1 API compatibility - tests expect .copublishers returning array of Publisher objects
|
|
94
|
+
def copublishers
|
|
95
|
+
return [] unless publisher.copublisher&.any?
|
|
96
|
+
|
|
97
|
+
publisher.copublisher.map do |cp|
|
|
98
|
+
::Pubid::Components::Publisher.new(body: cp)
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
def ==(other)
|
|
103
|
+
return false unless other.is_a?(Base)
|
|
104
|
+
|
|
105
|
+
publisher == other.publisher &&
|
|
106
|
+
type == other.type &&
|
|
107
|
+
number == other.number &&
|
|
108
|
+
part == other.part &&
|
|
109
|
+
date == other.date &&
|
|
110
|
+
stage == other.stage
|
|
111
|
+
end
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
end
|
|
115
|
+
end
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Pubid
|
|
4
|
+
module Iso
|
|
5
|
+
module Identifiers
|
|
6
|
+
class Corrigendum < SupplementIdentifier
|
|
7
|
+
attribute :type, ::Pubid::Components::Type, default: -> { self.class.type[:key] }
|
|
8
|
+
|
|
9
|
+
TYPED_STAGES = [
|
|
10
|
+
::Pubid::Components::TypedStage.new(
|
|
11
|
+
code: :pwi_cor,
|
|
12
|
+
abbr: ["PWI Cor"],
|
|
13
|
+
short_abbr: nil,
|
|
14
|
+
long_abbr: nil,
|
|
15
|
+
type_code: :cor,
|
|
16
|
+
stage_code: :proposal,
|
|
17
|
+
name: "Proposed Work Item for Corrigendum",
|
|
18
|
+
harmonized_stages: %w[00.00 00.20 00.60 00.92 00.93 00.98 00.99],
|
|
19
|
+
),
|
|
20
|
+
::Pubid::Components::TypedStage.new(
|
|
21
|
+
code: :npcor,
|
|
22
|
+
abbr: ["NP Cor"],
|
|
23
|
+
short_abbr: nil,
|
|
24
|
+
long_abbr: nil,
|
|
25
|
+
type_code: :cor,
|
|
26
|
+
stage_code: :proposal,
|
|
27
|
+
name: "New Work Item Proposal for Corrigendum",
|
|
28
|
+
harmonized_stages: %w[10.00 10.20 10.60 10.92 10.93 10.98],
|
|
29
|
+
),
|
|
30
|
+
::Pubid::Components::TypedStage.new(
|
|
31
|
+
code: :awicor,
|
|
32
|
+
abbr: ["AWI Cor"],
|
|
33
|
+
short_abbr: nil,
|
|
34
|
+
long_abbr: nil,
|
|
35
|
+
type_code: :cor,
|
|
36
|
+
stage_code: :preliminary,
|
|
37
|
+
name: "Approved Work Item for Corrigendum",
|
|
38
|
+
harmonized_stages: %w[10.99 20.00],
|
|
39
|
+
),
|
|
40
|
+
::Pubid::Components::TypedStage.new(
|
|
41
|
+
code: :wdcor,
|
|
42
|
+
abbr: ["WD Cor"],
|
|
43
|
+
short_abbr: nil,
|
|
44
|
+
long_abbr: nil,
|
|
45
|
+
type_code: :cor,
|
|
46
|
+
stage_code: :working_draft,
|
|
47
|
+
name: "Working Draft for Corrigendum",
|
|
48
|
+
harmonized_stages: %w[20.20 20.60 20.92 20.93 20.98 20.99],
|
|
49
|
+
),
|
|
50
|
+
::Pubid::Components::TypedStage.new(
|
|
51
|
+
code: :cdcor,
|
|
52
|
+
abbr: ["CD Cor", "pDCOR"],
|
|
53
|
+
short_abbr: nil,
|
|
54
|
+
long_abbr: nil,
|
|
55
|
+
type_code: :cor,
|
|
56
|
+
stage_code: :cd,
|
|
57
|
+
name: "Committee Draft for Corrigendum",
|
|
58
|
+
harmonized_stages: %w[30.00 30.20 30.60 30.92 30.93 30.98 30.99],
|
|
59
|
+
),
|
|
60
|
+
::Pubid::Components::TypedStage.new(
|
|
61
|
+
code: :dcor,
|
|
62
|
+
abbr: ["DCor", "DCOR"],
|
|
63
|
+
short_abbr: "DCOR",
|
|
64
|
+
long_abbr: "DCor",
|
|
65
|
+
type_code: :cor,
|
|
66
|
+
stage_code: :dcor,
|
|
67
|
+
name: "Draft Corrigendum",
|
|
68
|
+
harmonized_stages: %w[40.00 40.20 40.60 40.92 40.93 40.98 40.99],
|
|
69
|
+
),
|
|
70
|
+
::Pubid::Components::TypedStage.new(
|
|
71
|
+
code: :fdcor,
|
|
72
|
+
abbr: ["FDCor", "FDCOR", "FCOR"],
|
|
73
|
+
short_abbr: "FDCOR",
|
|
74
|
+
long_abbr: "FDCor",
|
|
75
|
+
type_code: :cor,
|
|
76
|
+
stage_code: :fdcor,
|
|
77
|
+
name: "Final Draft Corrigendum",
|
|
78
|
+
harmonized_stages: %w[50.00 50.20 50.60 50.92 50.98 50.99],
|
|
79
|
+
),
|
|
80
|
+
::Pubid::Components::TypedStage.new(
|
|
81
|
+
code: :prfcor,
|
|
82
|
+
abbr: ["PRF Cor"],
|
|
83
|
+
short_abbr: nil,
|
|
84
|
+
long_abbr: nil,
|
|
85
|
+
type_code: :cor,
|
|
86
|
+
stage_code: :prf,
|
|
87
|
+
name: "Proof Corrigendum",
|
|
88
|
+
harmonized_stages: %w[50.00],
|
|
89
|
+
),
|
|
90
|
+
::Pubid::Components::TypedStage.new(
|
|
91
|
+
code: :pubcor,
|
|
92
|
+
abbr: ["Cor", "COR", "Cor."],
|
|
93
|
+
short_abbr: "COR",
|
|
94
|
+
long_abbr: "Cor",
|
|
95
|
+
type_code: :cor,
|
|
96
|
+
stage_code: :published,
|
|
97
|
+
name: "Corrigendum",
|
|
98
|
+
harmonized_stages: %w[60.00 60.60],
|
|
99
|
+
),
|
|
100
|
+
].freeze
|
|
101
|
+
|
|
102
|
+
def self.type
|
|
103
|
+
{ key: :cor, title: "Corrigendum", short: "COR" }
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
end
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Pubid
|
|
4
|
+
module Iso
|
|
5
|
+
module Identifiers
|
|
6
|
+
# Data Identifier
|
|
7
|
+
class Data < SingleIdentifier
|
|
8
|
+
attribute :type, ::Pubid::Components::Type, default: -> { self.class.type[:key] }
|
|
9
|
+
|
|
10
|
+
TYPED_STAGES = [
|
|
11
|
+
::Pubid::Components::TypedStage.new(
|
|
12
|
+
code: :npdata,
|
|
13
|
+
stage_code: :np,
|
|
14
|
+
type_code: :data,
|
|
15
|
+
abbr: ["NP DATA"],
|
|
16
|
+
name: "New Work Item Proposal for Data",
|
|
17
|
+
harmonized_stages: %w[00.00 00.20 00.60 00.92 00.93 00.98 00.99],
|
|
18
|
+
),
|
|
19
|
+
::Pubid::Components::TypedStage.new(
|
|
20
|
+
code: :awidata,
|
|
21
|
+
stage_code: :awi,
|
|
22
|
+
type_code: :data,
|
|
23
|
+
abbr: ["AWI DATA"],
|
|
24
|
+
name: "Approved Work Item for Data",
|
|
25
|
+
harmonized_stages: %w[10.99 20.00],
|
|
26
|
+
),
|
|
27
|
+
::Pubid::Components::TypedStage.new(
|
|
28
|
+
code: :wddata,
|
|
29
|
+
stage_code: :wd,
|
|
30
|
+
type_code: :data,
|
|
31
|
+
abbr: ["WD DATA"],
|
|
32
|
+
name: "Working Draft for Data",
|
|
33
|
+
harmonized_stages: %w[20.20 20.60 20.92 20.93 20.98 20.99],
|
|
34
|
+
),
|
|
35
|
+
::Pubid::Components::TypedStage.new(
|
|
36
|
+
code: :cddata,
|
|
37
|
+
stage_code: :cd,
|
|
38
|
+
type_code: :data,
|
|
39
|
+
abbr: ["CD DATA"],
|
|
40
|
+
name: "Committee Draft for Data",
|
|
41
|
+
harmonized_stages: %w[30.00 30.20 30.60 30.92 30.93 30.98 30.99],
|
|
42
|
+
),
|
|
43
|
+
::Pubid::Components::TypedStage.new(
|
|
44
|
+
code: :ddata,
|
|
45
|
+
stage_code: :ddata,
|
|
46
|
+
type_code: :data,
|
|
47
|
+
abbr: ["D DATA"],
|
|
48
|
+
name: "Draft Data",
|
|
49
|
+
harmonized_stages: %w[40.00 40.20 40.60 40.92 40.93 40.98 40.99],
|
|
50
|
+
),
|
|
51
|
+
|
|
52
|
+
::Pubid::Components::TypedStage.new(
|
|
53
|
+
code: :prfdata,
|
|
54
|
+
stage_code: :prf,
|
|
55
|
+
type_code: :data,
|
|
56
|
+
abbr: ["PRF DATA"],
|
|
57
|
+
name: "Proof Data",
|
|
58
|
+
harmonized_stages: %w[60.00],
|
|
59
|
+
),
|
|
60
|
+
::Pubid::Components::TypedStage.new(
|
|
61
|
+
code: :pubdata,
|
|
62
|
+
stage_code: :published,
|
|
63
|
+
type_code: :data,
|
|
64
|
+
abbr: ["DATA"],
|
|
65
|
+
name: "Data",
|
|
66
|
+
harmonized_stages: %w[60.00 60.60],
|
|
67
|
+
),
|
|
68
|
+
].freeze
|
|
69
|
+
|
|
70
|
+
def self.type
|
|
71
|
+
{ key: :data, title: "Data", short: "PAS" }
|
|
72
|
+
end
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
end
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Pubid
|
|
4
|
+
module Iso
|
|
5
|
+
module Identifiers
|
|
6
|
+
class Directives < SingleIdentifier
|
|
7
|
+
attribute :type, ::Pubid::Components::Type, default: -> { self.class.type[:key] }
|
|
8
|
+
attribute :subgroup, ::Pubid::Components::Code
|
|
9
|
+
|
|
10
|
+
TYPED_STAGES = [
|
|
11
|
+
::Pubid::Components::TypedStage.new(
|
|
12
|
+
code: :pubguide,
|
|
13
|
+
stage_code: :published,
|
|
14
|
+
type_code: :dir,
|
|
15
|
+
abbr: ["DIR", "Directives Part", "Directives, Part", "Directives,",
|
|
16
|
+
"Directives"],
|
|
17
|
+
short_abbr: "DIR",
|
|
18
|
+
long_abbr: "Directives, Part",
|
|
19
|
+
name: "Directives",
|
|
20
|
+
harmonized_stages: %w[60.00 60.60],
|
|
21
|
+
),
|
|
22
|
+
].freeze
|
|
23
|
+
|
|
24
|
+
def self.type
|
|
25
|
+
{ key: :dir, title: "Directives", short: "DIR" }
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def to_s(**opts)
|
|
29
|
+
context = build_rendering_context(nil, format: :human, **opts)
|
|
30
|
+
Pubid::Renderers::DirectivesRenderer.new(self).render(context:,
|
|
31
|
+
**opts.slice(:with_edition))
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# Directives use a different URN scheme: urn:iso:doc instead of urn:iso:std
|
|
35
|
+
# Format: urn:iso:doc:{publisher}[:{subgroup}][:{subgroup_number}]:dir[:{number}][:{part}][:{year}]
|
|
36
|
+
def to_urn
|
|
37
|
+
parts = ["urn", "iso", "doc"]
|
|
38
|
+
|
|
39
|
+
copubs = copublishers || []
|
|
40
|
+
parts << ([publisher] + copubs).map(&:body).map(&:downcase).join("-")
|
|
41
|
+
|
|
42
|
+
if subgroup
|
|
43
|
+
subgroup_parts = subgroup.value.split
|
|
44
|
+
parts << subgroup_parts[0].downcase if subgroup_parts[0]
|
|
45
|
+
parts << subgroup_parts[1] if subgroup_parts[1]
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
parts << "dir"
|
|
49
|
+
|
|
50
|
+
parts << number.value if number
|
|
51
|
+
parts << part.value.downcase if part
|
|
52
|
+
parts << date.year if date
|
|
53
|
+
|
|
54
|
+
parts.join(":")
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
end
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Pubid
|
|
4
|
+
module Iso
|
|
5
|
+
module Identifiers
|
|
6
|
+
class DirectivesSupplement < SupplementIdentifier
|
|
7
|
+
attribute :type, ::Pubid::Components::Type, default: -> { self.class.type[:key] }
|
|
8
|
+
attribute :supplement_publisher, ::Pubid::Components::Publisher
|
|
9
|
+
|
|
10
|
+
# Delegate base identifier attributes for easier access
|
|
11
|
+
def copublishers
|
|
12
|
+
base_identifier&.copublishers
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def publisher
|
|
16
|
+
base_identifier&.publisher
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
TYPED_STAGES = [
|
|
20
|
+
::Pubid::Components::TypedStage.new(
|
|
21
|
+
code: :pubdirsup,
|
|
22
|
+
stage_code: :published,
|
|
23
|
+
type_code: :"dir-sup",
|
|
24
|
+
abbr: ["DIR SUP", "SUP", "Supplement"],
|
|
25
|
+
name: "Directives Supplement",
|
|
26
|
+
harmonized_stages: %w[60.00 60.60],
|
|
27
|
+
),
|
|
28
|
+
].freeze
|
|
29
|
+
|
|
30
|
+
def self.type
|
|
31
|
+
{ key: :"dir-sup", title: "Directives Supplement", short: "SUP" }
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# def render_directives_supplement_identifier(identifier)
|
|
35
|
+
# raise "Not a directives supplement identifier" unless identifier.is_a?(Identifiers::DirectivesSupplement)
|
|
36
|
+
|
|
37
|
+
# render(identifier.base_identifier) +
|
|
38
|
+
# " #{identifier.publisher.body}" +
|
|
39
|
+
# " #{identifier.stage.abbr}" +
|
|
40
|
+
# (identifier.date ? ":#{identifier.date.year}" : "")
|
|
41
|
+
# end
|
|
42
|
+
|
|
43
|
+
def to_s(lang: :en, lang_single: false, with_edition: false,
|
|
44
|
+
format: nil, stage_format_long: nil, with_date: nil)
|
|
45
|
+
if base_identifier
|
|
46
|
+
# Full rendering with base identifier
|
|
47
|
+
[
|
|
48
|
+
base_identifier.to_s(lang: lang, lang_single: lang_single,
|
|
49
|
+
with_edition: with_edition, format: format, stage_format_long: stage_format_long, with_date: with_date),
|
|
50
|
+
" #{supplement_publisher.body}",
|
|
51
|
+
" SUP", # Always render as "SUP" even though typed_stage.abbreviation is "DIR SUP"
|
|
52
|
+
(date ? ":#{date.year}" : ""),
|
|
53
|
+
(edition ? " Edition #{edition.number.value}" : ""),
|
|
54
|
+
].join
|
|
55
|
+
else
|
|
56
|
+
# Simplified rendering for bundled identifiers (just the supplement part)
|
|
57
|
+
to_supplement_s(lang: lang, lang_single: lang_single)
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Render just the supplement part (for use in bundled identifiers)
|
|
62
|
+
def to_supplement_s(lang: :en, lang_single: false, with_edition: false,
|
|
63
|
+
format: nil, stage_format_long: nil, with_date: nil)
|
|
64
|
+
date_str = if date
|
|
65
|
+
month_part = date.month ? "-#{date.month}" : ""
|
|
66
|
+
":#{date.year}#{month_part}"
|
|
67
|
+
else
|
|
68
|
+
""
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
[
|
|
72
|
+
supplement_publisher.body,
|
|
73
|
+
" SUP",
|
|
74
|
+
date_str,
|
|
75
|
+
].join
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
# DirectivesSupplement use urn:iso:doc scheme (not urn:iso:std)
|
|
79
|
+
# Format: urn:iso:doc:{base_urn_parts}:jtc:X:sup[:{year}][:{edition}]
|
|
80
|
+
def to_urn
|
|
81
|
+
# If this is a standalone supplement (no base_identifier), build URN directly
|
|
82
|
+
unless base_identifier
|
|
83
|
+
parts = ["urn", "iso", "doc"]
|
|
84
|
+
parts << supplement_publisher.body.downcase if supplement_publisher
|
|
85
|
+
parts << "sup"
|
|
86
|
+
parts << date.year.to_s if date
|
|
87
|
+
parts << "ed-#{edition.number}" if edition&.number
|
|
88
|
+
return parts.join(":")
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
# Start with base identifier's URN parts (it will use urn:iso:doc scheme)
|
|
92
|
+
base_urn = base_identifier.to_urn
|
|
93
|
+
|
|
94
|
+
# Handle JTC pattern specially
|
|
95
|
+
if supplement_publisher&.body&.match?(/^JTC\s+(\d+)$/i)
|
|
96
|
+
# Extract JTC number: "JTC 1" -> ["jtc", "1"]
|
|
97
|
+
jtc_parts = supplement_publisher.body.downcase.split
|
|
98
|
+
# Insert JTC parts before "sup"
|
|
99
|
+
parts = base_urn.split(":")
|
|
100
|
+
parts.concat(jtc_parts) # Add "jtc" and "1"
|
|
101
|
+
parts << "sup"
|
|
102
|
+
else
|
|
103
|
+
# Normal supplement
|
|
104
|
+
parts = [base_urn, "sup"]
|
|
105
|
+
parts << supplement_publisher.body.downcase if supplement_publisher
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
# Year (if present)
|
|
109
|
+
parts << date.year.to_s if date
|
|
110
|
+
|
|
111
|
+
# Edition (if present)
|
|
112
|
+
parts << "ed-#{edition.number}" if edition&.number
|
|
113
|
+
|
|
114
|
+
parts.join(":")
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
end
|
|
119
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Pubid
|
|
4
|
+
module Iso
|
|
5
|
+
module Identifiers
|
|
6
|
+
class Extract < SupplementIdentifier
|
|
7
|
+
attribute :type, ::Pubid::Components::Type, default: -> { self.class.type[:key] }
|
|
8
|
+
|
|
9
|
+
TYPED_STAGES = [
|
|
10
|
+
::Pubid::Components::TypedStage.new(
|
|
11
|
+
code: :pubext,
|
|
12
|
+
stage_code: :published,
|
|
13
|
+
type_code: :ext,
|
|
14
|
+
abbr: ["Ext"],
|
|
15
|
+
name: "Extract",
|
|
16
|
+
harmonized_stages: %w[60.00 60.60],
|
|
17
|
+
),
|
|
18
|
+
].freeze
|
|
19
|
+
|
|
20
|
+
def self.type
|
|
21
|
+
{ key: :ext, title: "Extract", short: "Ext" }
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
# def self.get_renderer_class
|
|
25
|
+
# Renderer::TechnologyTrendsAssessments
|
|
26
|
+
# end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Pubid
|
|
4
|
+
module Iso
|
|
5
|
+
module Identifiers
|
|
6
|
+
class Guide < SingleIdentifier
|
|
7
|
+
attribute :type, ::Pubid::Components::Type, default: -> { self.class.type[:key] }
|
|
8
|
+
|
|
9
|
+
TYPED_STAGES = [
|
|
10
|
+
::Pubid::Components::TypedStage.new(
|
|
11
|
+
code: :pwiis,
|
|
12
|
+
stage_code: :pwi,
|
|
13
|
+
type_code: :guide,
|
|
14
|
+
abbr: ["PWI Guide"],
|
|
15
|
+
name: "Proposed Work Item for International Standard",
|
|
16
|
+
harmonized_stages: %w[00.00 00.20 00.60 00.92 00.93 00.98 00.99],
|
|
17
|
+
),
|
|
18
|
+
::Pubid::Components::TypedStage.new(
|
|
19
|
+
code: :npguide,
|
|
20
|
+
stage_code: :np,
|
|
21
|
+
type_code: :guide,
|
|
22
|
+
abbr: ["NP Guide", "NP GUIDE"],
|
|
23
|
+
name: "New Work Item Proposal for Guide",
|
|
24
|
+
harmonized_stages: %w[10.00 10.20 10.60 10.92 10.93 10.98 10.99],
|
|
25
|
+
),
|
|
26
|
+
|
|
27
|
+
::Pubid::Components::TypedStage.new(
|
|
28
|
+
code: :awiguide,
|
|
29
|
+
stage_code: :awi,
|
|
30
|
+
type_code: :guide,
|
|
31
|
+
abbr: ["AWI Guide", "AWI GUIDE"],
|
|
32
|
+
name: "Approved Work Item for Guide",
|
|
33
|
+
harmonized_stages: %w[10.99 20.00],
|
|
34
|
+
),
|
|
35
|
+
|
|
36
|
+
::Pubid::Components::TypedStage.new(
|
|
37
|
+
code: :wdguide,
|
|
38
|
+
stage_code: :wd,
|
|
39
|
+
type_code: :guide,
|
|
40
|
+
abbr: ["WD Guide", "WD GUIDE"],
|
|
41
|
+
name: "Working Draft for Guide",
|
|
42
|
+
harmonized_stages: %w[20.20 20.60 20.92 20.93 20.98 20.99],
|
|
43
|
+
),
|
|
44
|
+
|
|
45
|
+
::Pubid::Components::TypedStage.new(
|
|
46
|
+
code: :cdguide,
|
|
47
|
+
stage_code: :cd,
|
|
48
|
+
type_code: :guide,
|
|
49
|
+
abbr: ["CD Guide", "CD GUIDE"],
|
|
50
|
+
name: "Committee Draft for Guide",
|
|
51
|
+
harmonized_stages: %w[30.00 30.20 30.60 30.92 30.93 30.98 30.99],
|
|
52
|
+
),
|
|
53
|
+
|
|
54
|
+
::Pubid::Components::TypedStage.new(
|
|
55
|
+
code: :dguide,
|
|
56
|
+
stage_code: :dguide,
|
|
57
|
+
type_code: :guide,
|
|
58
|
+
abbr: ["DGuide", "DGUIDE"],
|
|
59
|
+
name: "Draft Guide",
|
|
60
|
+
harmonized_stages: %w[40.00 40.20 40.60 40.92 40.93 40.98 40.99],
|
|
61
|
+
),
|
|
62
|
+
::Pubid::Components::TypedStage.new(
|
|
63
|
+
code: :fdguide,
|
|
64
|
+
stage_code: :fdguide,
|
|
65
|
+
type_code: :guide,
|
|
66
|
+
abbr: ["FDGuide", "FD Guide", "FD GUIDE"],
|
|
67
|
+
name: "Final Draft Guide",
|
|
68
|
+
harmonized_stages: %w[50.00 50.20 50.60 50.92 50.98 50.99],
|
|
69
|
+
),
|
|
70
|
+
::Pubid::Components::TypedStage.new(
|
|
71
|
+
code: :prfguide,
|
|
72
|
+
stage_code: :prf,
|
|
73
|
+
type_code: :guide,
|
|
74
|
+
abbr: ["PRF Guide", "PRF GUIDE"],
|
|
75
|
+
name: "Proof Guide",
|
|
76
|
+
harmonized_stages: %w[50.00 50.20 50.60 50.92 50.98 50.99],
|
|
77
|
+
),
|
|
78
|
+
::Pubid::Components::TypedStage.new(
|
|
79
|
+
code: :pubguide,
|
|
80
|
+
stage_code: :published,
|
|
81
|
+
type_code: :guide,
|
|
82
|
+
abbr: ["Guide", "GUIDE"],
|
|
83
|
+
name: "Published Guide",
|
|
84
|
+
harmonized_stages: %w[60.00 60.60],
|
|
85
|
+
),
|
|
86
|
+
].freeze
|
|
87
|
+
|
|
88
|
+
def self.type
|
|
89
|
+
{ key: :guide, title: "Guide", short: "GUIDE" }
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
def to_s(**opts)
|
|
93
|
+
context = build_rendering_context(nil, format: :human, **opts)
|
|
94
|
+
Pubid::Renderers::GuideRenderer.new(self).render(context:,
|
|
95
|
+
**opts.slice(:with_edition))
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
end
|