metanorma-iso 1.10.1 → 1.10.5

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.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ubuntu.yml +1 -1
  3. data/Gemfile +1 -1
  4. data/lib/asciidoctor/iso/base.rb +1 -1
  5. data/lib/asciidoctor/iso/basicdoc.rng +1 -11
  6. data/lib/asciidoctor/iso/biblio.rng +0 -2
  7. data/lib/asciidoctor/iso/front.rb +17 -4
  8. data/lib/asciidoctor/iso/front_id.rb +20 -17
  9. data/lib/asciidoctor/iso/isodoc.rng +61 -19
  10. data/lib/asciidoctor/iso/isostandard-amd.rng +1 -1
  11. data/lib/asciidoctor/iso/isostandard.rng +15 -3
  12. data/lib/asciidoctor/iso/reqt.rng +1 -1
  13. data/lib/asciidoctor/iso/section.rb +1 -1
  14. data/lib/asciidoctor/iso/validate.rb +1 -1
  15. data/lib/asciidoctor/iso/validate_image.rb +1 -1
  16. data/lib/asciidoctor/iso/validate_section.rb +1 -1
  17. data/lib/isodoc/iso/base_convert.rb +14 -31
  18. data/lib/isodoc/iso/html/isodoc.css +0 -1
  19. data/lib/isodoc/iso/html/isodoc.scss +0 -1
  20. data/lib/isodoc/iso/html/style-human.css +40 -9
  21. data/lib/isodoc/iso/html/style-human.scss +36 -9
  22. data/lib/isodoc/iso/html/style-iso.css +35 -6
  23. data/lib/isodoc/iso/html/style-iso.scss +31 -6
  24. data/lib/isodoc/iso/html/wordstyle.css +10 -8
  25. data/lib/isodoc/iso/html/wordstyle.scss +10 -8
  26. data/lib/isodoc/iso/html_convert.rb +81 -22
  27. data/lib/isodoc/iso/index.rb +53 -45
  28. data/lib/isodoc/iso/iso.amendment.xsl +333 -113
  29. data/lib/isodoc/iso/iso.international-standard.xsl +333 -113
  30. data/lib/isodoc/iso/isosts_convert.rb +6 -2
  31. data/lib/isodoc/iso/metadata.rb +27 -22
  32. data/lib/isodoc/iso/presentation_xml_convert.rb +60 -25
  33. data/lib/isodoc/iso/sts_convert.rb +3 -2
  34. data/lib/isodoc/iso/word_convert.rb +0 -2
  35. data/lib/metanorma/iso/processor.rb +2 -2
  36. data/lib/metanorma/iso/version.rb +1 -1
  37. data/metanorma-iso.gemspec +3 -3
  38. data/spec/asciidoctor/base_spec.rb +397 -545
  39. data/spec/asciidoctor/blocks_spec.rb +4 -4
  40. data/spec/asciidoctor/cleanup_spec.rb +15 -12
  41. data/spec/asciidoctor/refs_spec.rb +87 -84
  42. data/spec/isodoc/amd_spec.rb +261 -250
  43. data/spec/isodoc/i18n_spec.rb +7 -7
  44. data/spec/isodoc/inline_spec.rb +242 -216
  45. data/spec/isodoc/iso_spec.rb +3 -1
  46. data/spec/isodoc/postproc_spec.rb +111 -28
  47. data/spec/isodoc/section_spec.rb +3 -3
  48. data/spec/isodoc/terms_spec.rb +34 -41
  49. data/spec/isodoc/xref_spec.rb +3 -3
  50. data/spec/metanorma/processor_spec.rb +110 -14
  51. data/spec/vcr_cassettes/docrels.yml +37 -427
  52. metadata +8 -8
@@ -676,554 +676,406 @@ RSpec.describe Asciidoctor::ISO do
676
676
  :nodoc:
677
677
  :novalid:
678
678
  :amends: ISO 123;ISO 124
679
- :obsoletes: ISO 125;ISO 126
679
+ :obsoletes: ABC 1
680
+ :successor-of: ABC 2
681
+ :manifestation-of: ABC 3
682
+ :annotation-of: ABC 3a
683
+ :related: ABC 4
684
+ :replaces: ABC 5
685
+ :supersedes: ABC 6
686
+ :corrects: ABC 7
687
+ :informatively-cited-in: ABC 8
688
+ :informatively-cites: ABC 9
689
+ :normatively-cited-in: ABC 10
690
+ :normatively-cites: ABC 11
691
+ :identical-adopted-from: ABC 12
692
+ :modified-adopted-from: ABC 13
693
+ :related-directive: ABC 14
694
+ :related-mandate: ABC 15
680
695
  INPUT
681
696
  expect(xmlpp(output.sub(%r{<boilerplate>.*</boilerplate>}m, "")))
682
697
  .to be_equivalent_to xmlpp(<<~"OUTPUT")
683
- <iso-standard xmlns="https://www.metanorma.org/ns/iso" type="semantic" version="#{Metanorma::ISO::VERSION}">
684
- <bibdata type='standard'>
685
- <contributor>
686
- <role type='author'/>
687
- <organization>
688
- <name>International Organization for Standardization</name>
689
- <abbreviation>ISO</abbreviation>
690
- </organization>
691
- </contributor>
692
- <contributor>
693
- <role type='publisher'/>
694
- <organization>
695
- <name>International Organization for Standardization</name>
696
- <abbreviation>ISO</abbreviation>
697
- </organization>
698
- </contributor>
699
- <language>en</language>
700
- <script>Latn</script>
701
- <status>
702
- <stage abbreviation='IS'>60</stage>
703
- <substage>60</substage>
704
- </status>
705
- <copyright>
706
- <from>2021</from>
707
- <owner>
708
- <organization>
709
- <name>International Organization for Standardization</name>
710
- <abbreviation>ISO</abbreviation>
711
- </organization>
712
- </owner>
713
- </copyright>
714
- <relation type='obsoletes'>
715
- <bibitem type='standard'>
716
- <fetched/>
717
- <title type='title-intro' format='text/plain' language='en' script='Latn'>Natural rubber latex concentrate</title>
718
- <title type='title-main' format='text/plain' language='en' script='Latn'>Determination of alkalinity</title>
719
- <title type='main' format='text/plain' language='en' script='Latn'>
720
- Natural rubber latex concentrate&#8201;&#8212;&#8201;Determination of
721
- alkalinity
722
- </title>
723
- <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex concentr&#233; de caoutchouc naturel</title>
724
- <title type='title-main' format='text/plain' language='fr' script='Latn'>D&#233;termination de l&#8217;alcalinit&#233;</title>
725
- <title type='main' format='text/plain' language='fr' script='Latn'>
726
- Latex concentr&#233; de caoutchouc
727
- naturel&#8201;&#8212;&#8201;D&#233;termination de
728
- l&#8217;alcalinit&#233;
729
- </title>
730
- <uri type='src'>https://www.iso.org/standard/72849.html</uri>
731
- <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:72849:en</uri>
732
- <uri type='rss'>https://www.iso.org/contents/data/standard/07/28/72849.detail.rss</uri>
733
- <docidentifier type='ISO'>ISO 125</docidentifier>
734
- <docidentifier type='URN'>urn:iso:std:iso:125:stage-60.60:ed-7:en,fr</docidentifier>
735
- <docnumber>125</docnumber>
736
- <contributor>
737
- <role type='publisher'/>
738
- <organization>
739
- <name>International Organization for Standardization</name>
740
- <abbreviation>ISO</abbreviation>
741
- <uri>www.iso.org</uri>
742
- </organization>
743
- </contributor>
744
- <edition>7</edition>
745
- <language>en</language>
746
- <language>fr</language>
747
- <script>Latn</script>
748
- <status>
749
- <stage>60</stage>
750
- <substage>60</substage>
751
- </status>
752
- <copyright>
753
- <from>2020</from>
754
- <owner>
755
- <organization>
756
- <name>ISO</name>
757
- </organization>
758
- </owner>
759
- </copyright>
760
- <relation type='obsoletes'>
761
- <bibitem type='standard'>
762
- <formattedref format='text/plain'>ISO 125:2011</formattedref>
763
- </bibitem>
764
- </relation>
765
- <relation type='instance'>
766
- <bibitem type='standard'>
767
- <fetched/>
768
- <title type='title-intro' format='text/plain' language='en' script='Latn'>Natural rubber latex concentrate</title>
769
- <title type='title-main' format='text/plain' language='en' script='Latn'>Determination of alkalinity</title>
770
- <title type='main' format='text/plain' language='en' script='Latn'>
771
- Natural rubber latex concentrate&#8201;&#8212;&#8201;Determination
772
- of alkalinity
773
- </title>
774
- <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex concentr&#233; de caoutchouc naturel</title>
775
- <title type='title-main' format='text/plain' language='fr' script='Latn'>D&#233;termination de l&#8217;alcalinit&#233;</title>
776
- <title type='main' format='text/plain' language='fr' script='Latn'>
777
- Latex concentr&#233; de caoutchouc
778
- naturel&#8201;&#8212;&#8201;D&#233;termination de
779
- l&#8217;alcalinit&#233;
780
- </title>
781
- <uri type='src'>https://www.iso.org/standard/72849.html</uri>
782
- <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:72849:en</uri>
783
- <uri type='rss'>https://www.iso.org/contents/data/standard/07/28/72849.detail.rss</uri>
784
- <docidentifier type='ISO'>ISO 125:2020</docidentifier>
785
- <docidentifier type='URN'>urn:iso:std:iso:125:stage-60.60:ed-7:en,fr</docidentifier>
786
- <docnumber>125</docnumber>
787
- <date type='published'>
788
- <on>2020-02</on>
789
- </date>
790
- <contributor>
791
- <role type='publisher'/>
792
- <organization>
793
- <name>International Organization for Standardization</name>
794
- <abbreviation>ISO</abbreviation>
795
- <uri>www.iso.org</uri>
796
- </organization>
797
- </contributor>
798
- <edition>7</edition>
799
- <language>en</language>
800
- <language>fr</language>
801
- <script>Latn</script>
802
- <abstract format='text/plain' language='en' script='Latn'>
803
- This document specifies a method for the determination of the
804
- alkalinity of natural rubber latex concentrate. The method is not
805
- necessarily suitable for latices from natural sources other than
806
- Hevea brasiliensis or for synthetic rubber latices, compounded
807
- latex, vulcanized latex or artificial dispersions of rubber. NOTE
808
- A method for the determination of the alkalinity of
809
- polychloroprene latex is specified in ISO 13773.
810
- </abstract>
811
- <abstract format='text/plain' language='fr' script='Latn'>
812
- Le pr&#233;sent document sp&#233;cifie une m&#233;thode de
813
- d&#233;termination de l&#8217;alcalinit&#233; du latex
814
- concentr&#233; de caoutchouc naturel. La m&#233;thode ne convient
815
- pas n&#233;cessairement aux latex d&#8217;origine naturelle autres
816
- que l&#8217;Hevea brasiliensis ou aux latex de caoutchouc de
817
- synth&#232;se, aux latex formul&#233;s, aux latex vulcanis&#233;s
818
- ou aux dispersions artificielles de caoutchouc. NOTE Une
819
- m&#233;thode de d&#233;termination de l&#8217;alcalinit&#233; du
820
- latex de polychloropr&#232;ne est sp&#233;cifi&#233;e dans
821
- l&#8217;ISO 13773.
822
- </abstract>
823
- <status>
824
- <stage>60</stage>
825
- <substage>60</substage>
826
- </status>
827
- <copyright>
828
- <from>2020</from>
829
- <owner>
830
- <organization>
831
- <name>ISO</name>
832
- </organization>
833
- </owner>
834
- </copyright>
835
- <relation type='obsoletes'>
836
- <bibitem type='standard'>
837
- <formattedref format='text/plain'>ISO 125:2011</formattedref>
838
- </bibitem>
839
- </relation>
840
- <place>Geneva</place>
841
- </bibitem>
842
- </relation>
843
- <place>Geneva</place>
844
- </bibitem>
845
- </relation>
846
- <relation type='obsoletes'>
847
- <bibitem type='standard'>
848
- <fetched/>
849
- <title type='title-intro' format='text/plain' language='en' script='Latn'>Natural rubber latex concentrate</title>
850
- <title type='title-main' format='text/plain' language='en' script='Latn'>Determination of dry rubber content</title>
851
- <title type='main' format='text/plain' language='en' script='Latn'>
852
- Natural rubber latex concentrate&#8201;&#8212;&#8201;Determination of
853
- dry rubber content
854
- </title>
855
- <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc naturel concentr&#233;</title>
856
- <title type='title-main' format='text/plain' language='fr' script='Latn'>D&#233;termination de la teneur en caoutchouc sec</title>
857
- <title type='main' format='text/plain' language='fr' script='Latn'>
858
- Latex de caoutchouc naturel
859
- concentr&#233;&#8201;&#8212;&#8201;D&#233;termination de la teneur en
860
- caoutchouc sec
861
- </title>
862
- <uri type='src'>https://www.iso.org/standard/35176.html</uri>
863
- <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:35176:en</uri>
864
- <uri type='rss'>https://www.iso.org/contents/data/standard/03/51/35176.detail.rss</uri>
865
- <docidentifier type='ISO'>ISO 126</docidentifier>
866
- <docidentifier type='URN'>urn:iso:std:iso:126:stage-90.93:ed-5:en,fr</docidentifier>
867
- <docnumber>126</docnumber>
868
- <contributor>
869
- <role type='publisher'/>
870
- <organization>
871
- <name>International Organization for Standardization</name>
872
- <abbreviation>ISO</abbreviation>
873
- <uri>www.iso.org</uri>
874
- </organization>
875
- </contributor>
876
- <edition>5</edition>
877
- <language>en</language>
878
- <language>fr</language>
879
- <script>Latn</script>
880
- <status>
881
- <stage>90</stage>
882
- <substage>93</substage>
883
- </status>
884
- <copyright>
885
- <from>2005</from>
886
- <owner>
887
- <organization>
888
- <name>ISO</name>
889
- </organization>
890
- </owner>
891
- </copyright>
892
- <relation type='obsoletes'>
893
- <bibitem type='standard'>
894
- <formattedref format='text/plain'>ISO 126:1995</formattedref>
895
- </bibitem>
896
- </relation>
897
- <relation type='instance'>
898
- <bibitem type='standard'>
899
- <fetched/>
900
- <title type='title-intro' format='text/plain' language='en' script='Latn'>Natural rubber latex concentrate</title>
901
- <title type='title-main' format='text/plain' language='en' script='Latn'>Determination of dry rubber content</title>
902
- <title type='main' format='text/plain' language='en' script='Latn'>
903
- Natural rubber latex concentrate&#8201;&#8212;&#8201;Determination
904
- of dry rubber content
905
- </title>
906
- <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc naturel concentr&#233;</title>
907
- <title type='title-main' format='text/plain' language='fr' script='Latn'>D&#233;termination de la teneur en caoutchouc sec</title>
908
- <title type='main' format='text/plain' language='fr' script='Latn'>
909
- Latex de caoutchouc naturel
910
- concentr&#233;&#8201;&#8212;&#8201;D&#233;termination de la teneur
911
- en caoutchouc sec
912
- </title>
913
- <uri type='src'>https://www.iso.org/standard/35176.html</uri>
914
- <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:35176:en</uri>
915
- <uri type='rss'>https://www.iso.org/contents/data/standard/03/51/35176.detail.rss</uri>
916
- <docidentifier type='ISO'>ISO 126:2005</docidentifier>
917
- <docidentifier type='URN'>urn:iso:std:iso:126:stage-90.93:ed-5:en,fr</docidentifier>
918
- <docnumber>126</docnumber>
919
- <date type='published'>
920
- <on>2005-04</on>
921
- </date>
922
- <contributor>
923
- <role type='publisher'/>
924
- <organization>
925
- <name>International Organization for Standardization</name>
926
- <abbreviation>ISO</abbreviation>
927
- <uri>www.iso.org</uri>
928
- </organization>
929
- </contributor>
930
- <edition>5</edition>
931
- <language>en</language>
932
- <language>fr</language>
933
- <script>Latn</script>
934
- <abstract format='text/plain' language='en' script='Latn'>
935
- ISO 126:2005 specifies a method for the determination of the dry
936
- rubber content of natural rubber latex concentrate. The method is
937
- not necessarily suitable for latices preserved with potassium
938
- hydroxide, latices from natural sources other than Hevea
939
- brasiliensis, or for compounded latex, vulcanized latex or
940
- artificial dispersions of rubber and it is not applicable to
941
- synthetic rubber latices.
942
- </abstract>
943
- <abstract format='text/plain' language='fr' script='Latn'>
944
- L&#8217;ISO 126:2005 sp&#233;cifie une m&#233;thode de
945
- d&#233;termination de la teneur en caoutchouc sec du latex de
946
- caoutchouc naturel concentr&#233;. La m&#233;thode ne convient pas
947
- n&#233;cessairement pour les latex conserv&#233;s dans de
948
- l&#8217;hydroxyde de potassium, pour les latex d&#8217;origine
949
- naturelle autres que celui de l&#8217;Hevea brasiliensis ou pour
950
- des m&#233;langes de latex, pour les latex vulcanis&#233;s ou les
951
- dispersions artificielles de caoutchouc, et elle n&#8217;est pas
952
- applicable aux latex d&#8217;&#233;lastom&#232;res.
953
- </abstract>
954
- <status>
955
- <stage>90</stage>
956
- <substage>93</substage>
957
- </status>
958
- <copyright>
959
- <from>2005</from>
960
- <owner>
961
- <organization>
962
- <name>ISO</name>
963
- </organization>
964
- </owner>
965
- </copyright>
966
- <relation type='obsoletes'>
967
- <bibitem type='standard'>
968
- <formattedref format='text/plain'>ISO 126:1995</formattedref>
969
- </bibitem>
970
- </relation>
971
- <place>Geneva</place>
972
- </bibitem>
973
- </relation>
974
- <place>Geneva</place>
975
- </bibitem>
976
- </relation>
977
- <relation type='updates'>
978
- <description>amends</description>
979
- <bibitem type='standard'>
980
- <fetched/>
981
- <title type='title-intro' format='text/plain' language='en' script='Latn'>Rubber latex</title>
982
- <title type='title-main' format='text/plain' language='en' script='Latn'>Sampling</title>
983
- <title type='main' format='text/plain' language='en' script='Latn'>Rubber latex&#8201;&#8212;&#8201;Sampling</title>
984
- <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
985
- <title type='title-main' format='text/plain' language='fr' script='Latn'>&#201;chantillonnage</title>
986
- <title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc&#8201;&#8212;&#8201;&#201;chantillonnage</title>
987
- <uri type='src'>https://www.iso.org/standard/23281.html</uri>
988
- <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:23281:en</uri>
989
- <uri type='rss'>https://www.iso.org/contents/data/standard/02/32/23281.detail.rss</uri>
990
- <docidentifier type='ISO'>ISO 123</docidentifier>
991
- <docidentifier type='URN'>urn:iso:std:iso:123:stage-90.93:ed-3:en,fr</docidentifier>
992
- <docnumber>123</docnumber>
993
- <contributor>
994
- <role type='publisher'/>
995
- <organization>
996
- <name>International Organization for Standardization</name>
997
- <abbreviation>ISO</abbreviation>
998
- <uri>www.iso.org</uri>
999
- </organization>
1000
- </contributor>
1001
- <edition>3</edition>
1002
- <language>en</language>
1003
- <language>fr</language>
1004
- <script>Latn</script>
1005
- <status>
1006
- <stage>90</stage>
1007
- <substage>93</substage>
1008
- </status>
1009
- <copyright>
1010
- <from>2001</from>
1011
- <owner>
1012
- <organization>
1013
- <name>ISO</name>
1014
- </organization>
1015
- </owner>
1016
- </copyright>
1017
- <relation type='obsoletes'>
1018
- <bibitem type='standard'>
1019
- <formattedref format='text/plain'>ISO 123:1985</formattedref>
1020
- </bibitem>
1021
- </relation>
1022
- <relation type='instance'>
1023
- <bibitem type='standard'>
1024
- <fetched/>
1025
- <title type='title-intro' format='text/plain' language='en' script='Latn'>Rubber latex</title>
1026
- <title type='title-main' format='text/plain' language='en' script='Latn'>Sampling</title>
1027
- <title type='main' format='text/plain' language='en' script='Latn'>Rubber latex&#8201;&#8212;&#8201;Sampling</title>
1028
- <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
1029
- <title type='title-main' format='text/plain' language='fr' script='Latn'>&#201;chantillonnage</title>
1030
- <title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc&#8201;&#8212;&#8201;&#201;chantillonnage</title>
1031
- <uri type='src'>https://www.iso.org/standard/23281.html</uri>
1032
- <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:23281:en</uri>
1033
- <uri type='rss'>https://www.iso.org/contents/data/standard/02/32/23281.detail.rss</uri>
1034
- <docidentifier type='ISO'>ISO 123:2001</docidentifier>
1035
- <docidentifier type='URN'>urn:iso:std:iso:123:stage-90.93:ed-3:en,fr</docidentifier>
1036
- <docnumber>123</docnumber>
1037
- <date type='published'>
1038
- <on>2001-05</on>
1039
- </date>
1040
- <contributor>
1041
- <role type='publisher'/>
1042
- <organization>
1043
- <name>International Organization for Standardization</name>
1044
- <abbreviation>ISO</abbreviation>
1045
- <uri>www.iso.org</uri>
1046
- </organization>
1047
- </contributor>
1048
- <edition>3</edition>
1049
- <language>en</language>
1050
- <language>fr</language>
1051
- <script>Latn</script>
1052
- <abstract format='text/plain' language='en' script='Latn'>
1053
- This International Standard specifies procedures for sampling
1054
- natural rubber latex concentrate and for sampling synthetic rubber
1055
- latices and artificial latices. It is also suitable for sampling
1056
- rubber latex contained in drums, tank cars or tanks. The
1057
- procedures may also be used for sampling plastics dispersions.
1058
- </abstract>
1059
- <abstract format='text/plain' language='fr' script='Latn'>
1060
- La pr&#233;sente Norme internationale sp&#233;cifie des
1061
- m&#233;thodes d&#8217;&#233;chantillonnage pour des
1062
- concentr&#233;s de latex de caoutchouc naturel et pour
1063
- &#233;chantillonner des latex de caoutchouc synth&#233;tique et
1064
- des latex artificiels. Elle s&#8217;applique &#233;galement &#224;
1065
- l&#8217;&#233;chantillonnage de latex de caoutchouc contenus dans
1066
- des f&#251;ts, citernes routi&#232;res ou de stockage. Le mode
1067
- op&#233;ratoire peut aussi &#234;tre utilis&#233; pour
1068
- l&#8217;&#233;chantillonnage de dispersions de plastiques.
1069
- </abstract>
1070
- <status>
1071
- <stage>90</stage>
1072
- <substage>93</substage>
1073
- </status>
1074
- <copyright>
1075
- <from>2001</from>
1076
- <owner>
1077
- <organization>
1078
- <name>ISO</name>
1079
- </organization>
1080
- </owner>
1081
- </copyright>
1082
- <relation type='obsoletes'>
1083
- <bibitem type='standard'>
1084
- <formattedref format='text/plain'>ISO 123:1985</formattedref>
1085
- </bibitem>
1086
- </relation>
1087
- <place>Geneva</place>
1088
- </bibitem>
1089
- </relation>
1090
- <place>Geneva</place>
1091
- </bibitem>
1092
- </relation>
1093
- <relation type='updates'>
1094
- <description>amends</description>
1095
- <bibitem type='standard'>
1096
- <fetched/>
1097
- <title type='title-intro' format='text/plain' language='en' script='Latn'>Latex, rubber</title>
1098
- <title type='title-main' format='text/plain' language='en' script='Latn'>Determination of total solids content</title>
1099
- <title type='main' format='text/plain' language='en' script='Latn'>Latex, rubber&#8201;&#8212;&#8201;Determination of total solids content</title>
1100
- <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
1101
- <title type='title-main' format='text/plain' language='fr' script='Latn'>D&#233;termination des mati&#232;res solides totales</title>
1102
- <title type='main' format='text/plain' language='fr' script='Latn'>
1103
- Latex de caoutchouc&#8201;&#8212;&#8201;D&#233;termination des
1104
- mati&#232;res solides totales
1105
- </title>
1106
- <uri type='src'>https://www.iso.org/standard/61884.html</uri>
1107
- <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:61884:en</uri>
1108
- <uri type='rss'>https://www.iso.org/contents/data/standard/06/18/61884.detail.rss</uri>
1109
- <docidentifier type='ISO'>ISO 124</docidentifier>
1110
- <docidentifier type='URN'>urn:iso:std:iso:124:stage-90.93:ed-7:en,fr</docidentifier>
1111
- <docnumber>124</docnumber>
1112
- <contributor>
1113
- <role type='publisher'/>
1114
- <organization>
1115
- <name>International Organization for Standardization</name>
1116
- <abbreviation>ISO</abbreviation>
1117
- <uri>www.iso.org</uri>
1118
- </organization>
1119
- </contributor>
1120
- <edition>7</edition>
1121
- <language>en</language>
1122
- <language>fr</language>
1123
- <script>Latn</script>
1124
- <status>
1125
- <stage>90</stage>
1126
- <substage>93</substage>
1127
- </status>
1128
- <copyright>
1129
- <from>2014</from>
1130
- <owner>
1131
- <organization>
1132
- <name>ISO</name>
1133
- </organization>
1134
- </owner>
1135
- </copyright>
1136
- <relation type='obsoletes'>
1137
- <bibitem type='standard'>
1138
- <formattedref format='text/plain'>ISO 124:2011</formattedref>
1139
- </bibitem>
1140
- </relation>
1141
- <relation type='instance'>
1142
- <bibitem type='standard'>
1143
- <fetched/>
1144
- <title type='title-intro' format='text/plain' language='en' script='Latn'>Latex, rubber</title>
1145
- <title type='title-main' format='text/plain' language='en' script='Latn'>Determination of total solids content</title>
1146
- <title type='main' format='text/plain' language='en' script='Latn'>Latex, rubber&#8201;&#8212;&#8201;Determination of total solids content</title>
1147
- <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
1148
- <title type='title-main' format='text/plain' language='fr' script='Latn'>D&#233;termination des mati&#232;res solides totales</title>
1149
- <title type='main' format='text/plain' language='fr' script='Latn'>
1150
- Latex de caoutchouc&#8201;&#8212;&#8201;D&#233;termination des
1151
- mati&#232;res solides totales
1152
- </title>
1153
- <uri type='src'>https://www.iso.org/standard/61884.html</uri>
1154
- <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:61884:en</uri>
1155
- <uri type='rss'>https://www.iso.org/contents/data/standard/06/18/61884.detail.rss</uri>
1156
- <docidentifier type='ISO'>ISO 124:2014</docidentifier>
1157
- <docidentifier type='URN'>urn:iso:std:iso:124:stage-90.93:ed-7:en,fr</docidentifier>
1158
- <docnumber>124</docnumber>
1159
- <date type='published'>
1160
- <on>2014-03</on>
1161
- </date>
1162
- <contributor>
1163
- <role type='publisher'/>
1164
- <organization>
1165
- <name>International Organization for Standardization</name>
1166
- <abbreviation>ISO</abbreviation>
1167
- <uri>www.iso.org</uri>
1168
- </organization>
1169
- </contributor>
1170
- <edition>7</edition>
1171
- <language>en</language>
1172
- <language>fr</language>
1173
- <script>Latn</script>
1174
- <abstract format='text/plain' language='en' script='Latn'>
1175
- ISO 124:2014 specifies methods for the determination of the total
1176
- solids content of natural rubber field and concentrated latices
1177
- and synthetic rubber latex. These methods are not necessarily
1178
- suitable for latex from natural sources other than the Hevea
1179
- brasiliensis, for vulcanized latex, for compounded latex, or for
1180
- artificial dispersions of rubber.
1181
- </abstract>
1182
- <abstract format='text/plain' language='fr' script='Latn'>
1183
- L&#8217;ISO 124:2014 sp&#233;cifie des m&#233;thodes pour la
1184
- d&#233;termination des mati&#232;res solides totales dans le latex
1185
- de plantation, le latex de concentr&#233; de caoutchouc naturel et
1186
- le latex de caoutchouc synth&#233;tique. Ces m&#233;thodes ne
1187
- conviennent pas n&#233;cessairement au latex d&#8217;origine
1188
- naturelle autre que celui de l&#8217;Hevea brasiliensis, au latex
1189
- vulcanis&#233;, aux m&#233;langes de latex, ou aux dispersions
1190
- artificielles de caoutchouc.
1191
- </abstract>
1192
- <status>
1193
- <stage>90</stage>
1194
- <substage>93</substage>
1195
- </status>
1196
- <copyright>
1197
- <from>2014</from>
1198
- <owner>
1199
- <organization>
1200
- <name>ISO</name>
1201
- </organization>
1202
- </owner>
1203
- </copyright>
1204
- <relation type='obsoletes'>
1205
- <bibitem type='standard'>
1206
- <formattedref format='text/plain'>ISO 124:2011</formattedref>
1207
- </bibitem>
1208
- </relation>
1209
- <place>Geneva</place>
1210
- </bibitem>
1211
- </relation>
1212
- <place>Geneva</place>
1213
- </bibitem>
1214
- </relation>
1215
- <ext>
1216
- <doctype>article</doctype>
1217
- <editorialgroup>
1218
- <technical-committee/>
1219
- <subcommittee/>
1220
- <workgroup/>
1221
- </editorialgroup>
1222
- <stagename>International standard</stagename>
1223
- </ext>
1224
- </bibdata>
1225
- <sections> </sections>
1226
- </iso-standard>
698
+ <iso-standard xmlns="https://www.metanorma.org/ns/iso" type="semantic" version="#{Metanorma::ISO::VERSION}">
699
+ <bibdata type='standard'>
700
+ <contributor>
701
+ <role type='author'/>
702
+ <organization>
703
+ <name>International Organization for Standardization</name>
704
+ <abbreviation>ISO</abbreviation>
705
+ </organization>
706
+ </contributor>
707
+ <contributor>
708
+ <role type='publisher'/>
709
+ <organization>
710
+ <name>International Organization for Standardization</name>
711
+ <abbreviation>ISO</abbreviation>
712
+ </organization>
713
+ </contributor>
714
+ <language>en</language>
715
+ <script>Latn</script>
716
+ <status>
717
+ <stage abbreviation='IS'>60</stage>
718
+ <substage>60</substage>
719
+ </status>
720
+ <copyright>
721
+ <from>2021</from>
722
+ <owner>
723
+ <organization>
724
+ <name>International Organization for Standardization</name>
725
+ <abbreviation>ISO</abbreviation>
726
+ </organization>
727
+ </owner>
728
+ </copyright>
729
+ <relation type='obsoletes'>
730
+ <bibitem>
731
+ <title>--</title>
732
+ <docidentifier>ABC 1</docidentifier>
733
+ </bibitem>
734
+ </relation>
735
+ <relation type='successorOf'>
736
+ <bibitem>
737
+ <title>--</title>
738
+ <docidentifier>ABC 2</docidentifier>
739
+ </bibitem>
740
+ </relation>
741
+ <relation type='manifestationOf'>
742
+ <bibitem>
743
+ <title>--</title>
744
+ <docidentifier>ABC 3</docidentifier>
745
+ </bibitem>
746
+ </relation>
747
+ <relation type='annotationOf'>
748
+ <bibitem>
749
+ <title>--</title>
750
+ <docidentifier>ABC 3a</docidentifier>
751
+ </bibitem>
752
+ </relation>
753
+ <relation type='related'>
754
+ <bibitem>
755
+ <title>--</title>
756
+ <docidentifier>ABC 4</docidentifier>
757
+ </bibitem>
758
+ </relation>
759
+ <relation type='updates'>
760
+ <description>amends</description>
761
+ <bibitem type='standard'>
762
+ <fetched/>
763
+ <title type='title-intro' format='text/plain' language='en' script='Latn'>Rubber latex</title>
764
+ <title type='title-main' format='text/plain' language='en' script='Latn'>Sampling</title>
765
+ <title type='main' format='text/plain' language='en' script='Latn'>Rubber latex&#8201;&#8212;&#8201;Sampling</title>
766
+ <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
767
+ <title type='title-main' format='text/plain' language='fr' script='Latn'>&#201;chantillonnage</title>
768
+ <title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc&#8201;&#8212;&#8201;&#201;chantillonnage</title>
769
+ <uri type='src'>https://www.iso.org/standard/23281.html</uri>
770
+ <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:23281:en</uri>
771
+ <uri type='rss'>https://www.iso.org/contents/data/standard/02/32/23281.detail.rss</uri>
772
+ <docidentifier type='ISO'>ISO 123</docidentifier>
773
+ <docidentifier type='URN'>urn:iso:std:iso:123:stage-90.93:ed-3:en,fr</docidentifier>
774
+ <docnumber>123</docnumber>
775
+ <contributor>
776
+ <role type='publisher'/>
777
+ <organization>
778
+ <name>International Organization for Standardization</name>
779
+ <abbreviation>ISO</abbreviation>
780
+ <uri>www.iso.org</uri>
781
+ </organization>
782
+ </contributor>
783
+ <edition>3</edition>
784
+ <language>en</language>
785
+ <language>fr</language>
786
+ <script>Latn</script>
787
+ <status>
788
+ <stage>90</stage>
789
+ <substage>93</substage>
790
+ </status>
791
+ <copyright>
792
+ <from>2001</from>
793
+ <owner>
794
+ <organization>
795
+ <name>ISO</name>
796
+ </organization>
797
+ </owner>
798
+ </copyright>
799
+ <relation type='obsoletes'>
800
+ <bibitem type='standard'>
801
+ <formattedref format='text/plain'>ISO 123:1985</formattedref>
802
+ </bibitem>
803
+ </relation>
804
+ <relation type='instance'>
805
+ <bibitem type='standard'>
806
+ <fetched/>
807
+ <title type='title-intro' format='text/plain' language='en' script='Latn'>Rubber latex</title>
808
+ <title type='title-main' format='text/plain' language='en' script='Latn'>Sampling</title>
809
+ <title type='main' format='text/plain' language='en' script='Latn'>Rubber latex&#8201;&#8212;&#8201;Sampling</title>
810
+ <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
811
+ <title type='title-main' format='text/plain' language='fr' script='Latn'>&#201;chantillonnage</title>
812
+ <title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc&#8201;&#8212;&#8201;&#201;chantillonnage</title>
813
+ <uri type='src'>https://www.iso.org/standard/23281.html</uri>
814
+ <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:23281:en</uri>
815
+ <uri type='rss'>https://www.iso.org/contents/data/standard/02/32/23281.detail.rss</uri>
816
+ <docidentifier type='ISO'>ISO 123:2001</docidentifier>
817
+ <docidentifier type='URN'>urn:iso:std:iso:123:stage-90.93:ed-3:en,fr</docidentifier>
818
+ <docnumber>123</docnumber>
819
+ <date type='published'>
820
+ <on>2001-05</on>
821
+ </date>
822
+ <contributor>
823
+ <role type='publisher'/>
824
+ <organization>
825
+ <name>International Organization for Standardization</name>
826
+ <abbreviation>ISO</abbreviation>
827
+ <uri>www.iso.org</uri>
828
+ </organization>
829
+ </contributor>
830
+ <edition>3</edition>
831
+ <language>en</language>
832
+ <language>fr</language>
833
+ <script>Latn</script>
834
+ <abstract format='text/plain' language='en' script='Latn'>
835
+ This International Standard specifies procedures for sampling
836
+ natural rubber latex concentrate and for sampling synthetic rubber
837
+ latices and artificial latices. It is also suitable for sampling
838
+ rubber latex contained in drums, tank cars or tanks. The
839
+ procedures may also be used for sampling plastics dispersions.
840
+ </abstract>
841
+ <abstract format='text/plain' language='fr' script='Latn'>
842
+ La pr&#233;sente Norme internationale sp&#233;cifie des
843
+ m&#233;thodes d&#8217;&#233;chantillonnage pour des
844
+ concentr&#233;s de latex de caoutchouc naturel et pour
845
+ &#233;chantillonner des latex de caoutchouc synth&#233;tique et
846
+ des latex artificiels. Elle s&#8217;applique &#233;galement &#224;
847
+ l&#8217;&#233;chantillonnage de latex de caoutchouc contenus dans
848
+ des f&#251;ts, citernes routi&#232;res ou de stockage. Le mode
849
+ op&#233;ratoire peut aussi &#234;tre utilis&#233; pour
850
+ l&#8217;&#233;chantillonnage de dispersions de plastiques.
851
+ </abstract>
852
+ <status>
853
+ <stage>90</stage>
854
+ <substage>93</substage>
855
+ </status>
856
+ <copyright>
857
+ <from>2001</from>
858
+ <owner>
859
+ <organization>
860
+ <name>ISO</name>
861
+ </organization>
862
+ </owner>
863
+ </copyright>
864
+ <relation type='obsoletes'>
865
+ <bibitem type='standard'>
866
+ <formattedref format='text/plain'>ISO 123:1985</formattedref>
867
+ </bibitem>
868
+ </relation>
869
+ <place>Geneva</place>
870
+ </bibitem>
871
+ </relation>
872
+ <place>Geneva</place>
873
+ </bibitem>
874
+ </relation>
875
+ <relation type='updates'>
876
+ <description>amends</description>
877
+ <bibitem type='standard'>
878
+ <fetched/>
879
+ <title type='title-intro' format='text/plain' language='en' script='Latn'>Latex, rubber</title>
880
+ <title type='title-main' format='text/plain' language='en' script='Latn'>Determination of total solids content</title>
881
+ <title type='main' format='text/plain' language='en' script='Latn'>Latex, rubber&#8201;&#8212;&#8201;Determination of total solids content</title>
882
+ <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
883
+ <title type='title-main' format='text/plain' language='fr' script='Latn'>D&#233;termination des mati&#232;res solides totales</title>
884
+ <title type='main' format='text/plain' language='fr' script='Latn'>
885
+ Latex de caoutchouc&#8201;&#8212;&#8201;D&#233;termination des
886
+ mati&#232;res solides totales
887
+ </title>
888
+ <uri type='src'>https://www.iso.org/standard/61884.html</uri>
889
+ <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:61884:en</uri>
890
+ <uri type='rss'>https://www.iso.org/contents/data/standard/06/18/61884.detail.rss</uri>
891
+ <docidentifier type='ISO'>ISO 124</docidentifier>
892
+ <docidentifier type='URN'>urn:iso:std:iso:124:stage-90.93:ed-7:en,fr</docidentifier>
893
+ <docnumber>124</docnumber>
894
+ <contributor>
895
+ <role type='publisher'/>
896
+ <organization>
897
+ <name>International Organization for Standardization</name>
898
+ <abbreviation>ISO</abbreviation>
899
+ <uri>www.iso.org</uri>
900
+ </organization>
901
+ </contributor>
902
+ <edition>7</edition>
903
+ <language>en</language>
904
+ <language>fr</language>
905
+ <script>Latn</script>
906
+ <status>
907
+ <stage>90</stage>
908
+ <substage>93</substage>
909
+ </status>
910
+ <copyright>
911
+ <from>2014</from>
912
+ <owner>
913
+ <organization>
914
+ <name>ISO</name>
915
+ </organization>
916
+ </owner>
917
+ </copyright>
918
+ <relation type='obsoletes'>
919
+ <bibitem type='standard'>
920
+ <formattedref format='text/plain'>ISO 124:2011</formattedref>
921
+ </bibitem>
922
+ </relation>
923
+ <relation type='instance'>
924
+ <bibitem type='standard'>
925
+ <fetched/>
926
+ <title type='title-intro' format='text/plain' language='en' script='Latn'>Latex, rubber</title>
927
+ <title type='title-main' format='text/plain' language='en' script='Latn'>Determination of total solids content</title>
928
+ <title type='main' format='text/plain' language='en' script='Latn'>Latex, rubber&#8201;&#8212;&#8201;Determination of total solids content</title>
929
+ <title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
930
+ <title type='title-main' format='text/plain' language='fr' script='Latn'>D&#233;termination des mati&#232;res solides totales</title>
931
+ <title type='main' format='text/plain' language='fr' script='Latn'>
932
+ Latex de caoutchouc&#8201;&#8212;&#8201;D&#233;termination des
933
+ mati&#232;res solides totales
934
+ </title>
935
+ <uri type='src'>https://www.iso.org/standard/61884.html</uri>
936
+ <uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:61884:en</uri>
937
+ <uri type='rss'>https://www.iso.org/contents/data/standard/06/18/61884.detail.rss</uri>
938
+ <docidentifier type='ISO'>ISO 124:2014</docidentifier>
939
+ <docidentifier type='URN'>urn:iso:std:iso:124:stage-90.93:ed-7:en,fr</docidentifier>
940
+ <docnumber>124</docnumber>
941
+ <date type='published'>
942
+ <on>2014-03</on>
943
+ </date>
944
+ <contributor>
945
+ <role type='publisher'/>
946
+ <organization>
947
+ <name>International Organization for Standardization</name>
948
+ <abbreviation>ISO</abbreviation>
949
+ <uri>www.iso.org</uri>
950
+ </organization>
951
+ </contributor>
952
+ <edition>7</edition>
953
+ <language>en</language>
954
+ <language>fr</language>
955
+ <script>Latn</script>
956
+ <abstract format='text/plain' language='en' script='Latn'>
957
+ ISO 124:2014 specifies methods for the determination of the total
958
+ solids content of natural rubber field and concentrated latices
959
+ and synthetic rubber latex. These methods are not necessarily
960
+ suitable for latex from natural sources other than the Hevea
961
+ brasiliensis, for vulcanized latex, for compounded latex, or for
962
+ artificial dispersions of rubber.
963
+ </abstract>
964
+ <abstract format='text/plain' language='fr' script='Latn'>
965
+ L&#8217;ISO 124:2014 sp&#233;cifie des m&#233;thodes pour la
966
+ d&#233;termination des mati&#232;res solides totales dans le latex
967
+ de plantation, le latex de concentr&#233; de caoutchouc naturel et
968
+ le latex de caoutchouc synth&#233;tique. Ces m&#233;thodes ne
969
+ conviennent pas n&#233;cessairement au latex d&#8217;origine
970
+ naturelle autre que celui de l&#8217;Hevea brasiliensis, au latex
971
+ vulcanis&#233;, aux m&#233;langes de latex, ou aux dispersions
972
+ artificielles de caoutchouc.
973
+ </abstract>
974
+ <status>
975
+ <stage>90</stage>
976
+ <substage>93</substage>
977
+ </status>
978
+ <copyright>
979
+ <from>2014</from>
980
+ <owner>
981
+ <organization>
982
+ <name>ISO</name>
983
+ </organization>
984
+ </owner>
985
+ </copyright>
986
+ <relation type='obsoletes'>
987
+ <bibitem type='standard'>
988
+ <formattedref format='text/plain'>ISO 124:2011</formattedref>
989
+ </bibitem>
990
+ </relation>
991
+ <place>Geneva</place>
992
+ </bibitem>
993
+ </relation>
994
+ <place>Geneva</place>
995
+ </bibitem>
996
+ </relation>
997
+ <relation type='obsoletes'>
998
+ <description>replaces</description>
999
+ <bibitem>
1000
+ <title>--</title>
1001
+ <docidentifier>ABC 5</docidentifier>
1002
+ </bibitem>
1003
+ </relation>
1004
+ <relation type='obsoletes'>
1005
+ <description>supersedes</description>
1006
+ <bibitem>
1007
+ <title>--</title>
1008
+ <docidentifier>ABC 6</docidentifier>
1009
+ </bibitem>
1010
+ </relation>
1011
+ <relation type='updates'>
1012
+ <description>corrects</description>
1013
+ <bibitem>
1014
+ <title>--</title>
1015
+ <docidentifier>ABC 7</docidentifier>
1016
+ </bibitem>
1017
+ </relation>
1018
+ <relation type='isCitedIn'>
1019
+ <description>informatively cited in</description>
1020
+ <bibitem>
1021
+ <title>--</title>
1022
+ <docidentifier>ABC 8</docidentifier>
1023
+ </bibitem>
1024
+ </relation>
1025
+ <relation type='cites'>
1026
+ <description>informatively cites</description>
1027
+ <bibitem>
1028
+ <title>--</title>
1029
+ <docidentifier>ABC 9</docidentifier>
1030
+ </bibitem>
1031
+ </relation>
1032
+ <relation type='cites'>
1033
+ <description>normatively cites</description>
1034
+ <bibitem>
1035
+ <title>--</title>
1036
+ <docidentifier>ABC 11</docidentifier>
1037
+ </bibitem>
1038
+ </relation>
1039
+ <relation type='adoptedFrom'>
1040
+ <description>identical adopted from</description>
1041
+ <bibitem>
1042
+ <title>--</title>
1043
+ <docidentifier>ABC 12</docidentifier>
1044
+ </bibitem>
1045
+ </relation>
1046
+ <relation type='adoptedFrom'>
1047
+ <description>modified adopted from</description>
1048
+ <bibitem>
1049
+ <title>--</title>
1050
+ <docidentifier>ABC 13</docidentifier>
1051
+ </bibitem>
1052
+ </relation>
1053
+ <relation type='related'>
1054
+ <description>related directive</description>
1055
+ <bibitem>
1056
+ <title>--</title>
1057
+ <docidentifier>ABC 14</docidentifier>
1058
+ </bibitem>
1059
+ </relation>
1060
+ <relation type='related'>
1061
+ <description>related mandate</description>
1062
+ <bibitem>
1063
+ <title>--</title>
1064
+ <docidentifier>ABC 15</docidentifier>
1065
+ </bibitem>
1066
+ </relation>
1067
+ <ext>
1068
+ <doctype>article</doctype>
1069
+ <editorialgroup>
1070
+ <technical-committee/>
1071
+ <subcommittee/>
1072
+ <workgroup/>
1073
+ </editorialgroup>
1074
+ <stagename>International standard</stagename>
1075
+ </ext>
1076
+ </bibdata>
1077
+ <sections> </sections>
1078
+ </iso-standard>
1227
1079
  OUTPUT
1228
1080
  end
1229
1081
  end