metanorma-iso 2.0.2 → 2.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/lib/isodoc/iso/html/html_iso_titlepage.html +1 -1
- data/lib/isodoc/iso/html/isodoc.css +1 -2
- data/lib/isodoc/iso/html/isodoc.scss +0 -1
- data/lib/isodoc/iso/html/word_iso_titlepage.html +1 -1
- data/lib/isodoc/iso/html/wordstyle.css +20 -0
- data/lib/isodoc/iso/html/wordstyle.scss +20 -0
- data/lib/isodoc/iso/i18n-en.yaml +29 -2
- data/lib/isodoc/iso/i18n-fr.yaml +27 -3
- data/lib/isodoc/iso/i18n-ru.yaml +45 -0
- data/lib/isodoc/iso/i18n-zh-Hans.yaml +27 -3
- data/lib/isodoc/iso/i18n.rb +1 -0
- data/lib/isodoc/iso/init.rb +1 -2
- data/lib/isodoc/iso/iso.amendment.xsl +1752 -807
- data/lib/isodoc/iso/iso.international-standard.xsl +1752 -807
- data/lib/isodoc/iso/metadata.rb +12 -2
- data/lib/isodoc/iso/presentation_xml_convert.rb +58 -21
- data/lib/metanorma/iso/basicdoc.rng +5 -3
- data/lib/metanorma/iso/biblio.rng +5 -3
- data/lib/metanorma/iso/boilerplate-fr.xml +3 -3
- data/lib/metanorma/iso/boilerplate-ru.xml +39 -0
- data/lib/metanorma/iso/boilerplate.xml +3 -3
- data/lib/metanorma/iso/cleanup.rb +42 -11
- data/lib/metanorma/iso/front.rb +1 -1
- data/lib/metanorma/iso/front_id.rb +1 -0
- data/lib/metanorma/iso/isodoc.rng +73 -3
- data/lib/metanorma/iso/processor.rb +14 -7
- data/lib/metanorma/iso/validate.rb +30 -2
- data/lib/metanorma/iso/validate_image.rb +3 -3
- data/lib/metanorma/iso/validate_list.rb +107 -0
- data/lib/metanorma/iso/validate_section.rb +42 -34
- data/lib/metanorma/iso/validate_style.rb +32 -2
- data/lib/metanorma/iso/validate_title.rb +13 -1
- data/lib/metanorma/iso/version.rb +1 -1
- data/spec/isodoc/amd_spec.rb +10 -5
- data/spec/isodoc/i18n_spec.rb +350 -9
- data/spec/isodoc/inline_spec.rb +127 -10
- data/spec/isodoc/metadata_spec.rb +153 -3
- data/spec/isodoc/postproc_spec.rb +3 -4
- data/spec/isodoc/section_spec.rb +1 -0
- data/spec/isodoc/terms_spec.rb +4 -4
- data/spec/isodoc/xref_spec.rb +18 -18
- data/spec/metanorma/base_spec.rb +434 -375
- data/spec/metanorma/cleanup_spec.rb +11 -11
- data/spec/metanorma/refs_spec.rb +333 -65
- data/spec/metanorma/section_spec.rb +15 -20
- data/spec/metanorma/validate_spec.rb +449 -14
- data/spec/spec_helper.rb +6 -4
- data/spec/vcr_cassettes/docrels.yml +211 -16
- data/spec/vcr_cassettes/withdrawn_iso.yml +301 -0
- metadata +6 -3
- data/spec/vcr_cassettes/sortrefs.yml +0 -599
data/spec/metanorma/base_spec.rb
CHANGED
@@ -288,6 +288,114 @@ RSpec.describe Metanorma::ISO do
|
|
288
288
|
OUTPUT
|
289
289
|
end
|
290
290
|
|
291
|
+
it "processes Russian titles" do
|
292
|
+
output = Asciidoctor.convert(<<~"INPUT", *OPTIONS)
|
293
|
+
= Document title
|
294
|
+
Author
|
295
|
+
:docfile: test.adoc
|
296
|
+
:nodoc:
|
297
|
+
:novalid:
|
298
|
+
:no-isobib:
|
299
|
+
:docnumber: 1000
|
300
|
+
:partnumber: 1
|
301
|
+
:edition: 2
|
302
|
+
:revdate: 2000-01-01
|
303
|
+
:draft: 0.3.4
|
304
|
+
:language: ru
|
305
|
+
:title-intro-en: Introduction
|
306
|
+
:title-main-en: Main Title -- Title
|
307
|
+
:title-part-en: Title Part
|
308
|
+
:title-intro-fr: Introduction Française
|
309
|
+
:title-main-fr: Titre Principal
|
310
|
+
:title-part-fr: Part du Titre
|
311
|
+
:title-intro-ru: Introdukcija Russkaja
|
312
|
+
:title-main-ru: Titel Principalnyj
|
313
|
+
:title-part-ru: Partija Titel
|
314
|
+
:copyright-year: 2000
|
315
|
+
:horizontal: true
|
316
|
+
INPUT
|
317
|
+
expect(xmlpp(output.sub(%r{<boilerplate>.*</boilerplate>}m, "")))
|
318
|
+
.to be_equivalent_to xmlpp(<<~"OUTPUT")
|
319
|
+
<iso-standard xmlns='https://www.metanorma.org/ns/iso' type='semantic' version='#{Metanorma::ISO::VERSION}'>
|
320
|
+
<bibdata type='standard'>
|
321
|
+
<title language='en' format='text/plain' type='main'>
|
322
|
+
Introduction — Main
|
323
|
+
Title — Title — Title Part
|
324
|
+
</title>
|
325
|
+
<title language='en' format='text/plain' type='title-intro'>Introduction</title>
|
326
|
+
<title language='en' format='text/plain' type='title-main'>Main Title — Title</title>
|
327
|
+
<title language='en' format='text/plain' type='title-part'>Title Part</title>
|
328
|
+
<title language='ru' format='text/plain' type='main'>
|
329
|
+
Introdukcija Russkaja — Titel
|
330
|
+
Principalnyj — Partija Titel
|
331
|
+
</title>
|
332
|
+
<title language='ru' format='text/plain' type='title-intro'>Introdukcija Russkaja</title>
|
333
|
+
<title language='ru' format='text/plain' type='title-main'>Titel Principalnyj</title>
|
334
|
+
<title language='ru' format='text/plain' type='title-part'>Partija Titel</title>
|
335
|
+
<title language='fr' format='text/plain' type='main'>
|
336
|
+
Introduction Française — Titre
|
337
|
+
Principal — Part du Titre
|
338
|
+
</title>
|
339
|
+
<title language='fr' format='text/plain' type='title-intro'>Introduction Française</title>
|
340
|
+
<title language='fr' format='text/plain' type='title-main'>Titre Principal</title>
|
341
|
+
<title language='fr' format='text/plain' type='title-part'>Part du Titre</title>
|
342
|
+
<docidentifier type='ISO'>ISO 1000-1:2000</docidentifier>
|
343
|
+
<docidentifier type='iso-with-lang'>ISO 1000-1:2000(R)</docidentifier>
|
344
|
+
<docidentifier type='iso-reference'>ISO 1000-1:2000(R)</docidentifier>
|
345
|
+
<docnumber>1000</docnumber>
|
346
|
+
<contributor>
|
347
|
+
<role type='author'/>
|
348
|
+
<organization>
|
349
|
+
<name>International Organization for Standardization</name>
|
350
|
+
<abbreviation>ISO</abbreviation>
|
351
|
+
</organization>
|
352
|
+
</contributor>
|
353
|
+
<contributor>
|
354
|
+
<role type='publisher'/>
|
355
|
+
<organization>
|
356
|
+
<name>International Organization for Standardization</name>
|
357
|
+
<abbreviation>ISO</abbreviation>
|
358
|
+
</organization>
|
359
|
+
</contributor>
|
360
|
+
<edition>2</edition>
|
361
|
+
<version>
|
362
|
+
<revision-date>2000-01-01</revision-date>
|
363
|
+
<draft>0.3.4</draft>
|
364
|
+
</version>
|
365
|
+
<language>ru</language>
|
366
|
+
<script>Cyrl</script>
|
367
|
+
<status>
|
368
|
+
<stage abbreviation='IS'>60</stage>
|
369
|
+
<substage>60</substage>
|
370
|
+
</status>
|
371
|
+
<copyright>
|
372
|
+
<from>2000</from>
|
373
|
+
<owner>
|
374
|
+
<organization>
|
375
|
+
<name>International Organization for Standardization</name>
|
376
|
+
<abbreviation>ISO</abbreviation>
|
377
|
+
</organization>
|
378
|
+
</owner>
|
379
|
+
</copyright>
|
380
|
+
<ext>
|
381
|
+
<doctype>article</doctype>
|
382
|
+
<horizontal>true</horizontal>
|
383
|
+
<editorialgroup>
|
384
|
+
<technical-committee/>
|
385
|
+
<subcommittee/>
|
386
|
+
<workgroup/>
|
387
|
+
</editorialgroup>
|
388
|
+
<structuredidentifier>
|
389
|
+
<project-number part='1'>ISO 1000</project-number>
|
390
|
+
</structuredidentifier>
|
391
|
+
<stagename>International standard</stagename>
|
392
|
+
</ext>
|
393
|
+
</bibdata>
|
394
|
+
<sections> </sections>
|
395
|
+
</iso-standard>
|
396
|
+
OUTPUT
|
397
|
+
end
|
398
|
+
|
291
399
|
it "processes subdivisions" do
|
292
400
|
output = Asciidoctor.convert(<<~"INPUT", *OPTIONS)
|
293
401
|
= Document title
|
@@ -675,7 +783,7 @@ RSpec.describe Metanorma::ISO do
|
|
675
783
|
:docfile: test.adoc
|
676
784
|
:nodoc:
|
677
785
|
:novalid:
|
678
|
-
:amends: ISO 123;ISO 125
|
786
|
+
:amends: ISO 123:2001;ISO 125
|
679
787
|
:obsoletes: ABC 1
|
680
788
|
:successor-of: ABC 2
|
681
789
|
:manifestation-of: ABC 3
|
@@ -695,398 +803,349 @@ RSpec.describe Metanorma::ISO do
|
|
695
803
|
INPUT
|
696
804
|
expect(xmlpp(output.sub(%r{<boilerplate>.*</boilerplate>}m, "")))
|
697
805
|
.to be_equivalent_to xmlpp(<<~"OUTPUT")
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
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>#{Time.new.year}</from>
|
722
|
-
<owner>
|
806
|
+
<iso-standard xmlns="https://www.metanorma.org/ns/iso" type="semantic" version="#{Metanorma::ISO::VERSION}">
|
807
|
+
<bibdata type='standard'>
|
808
|
+
<contributor>
|
809
|
+
<role type='author'/>
|
723
810
|
<organization>
|
724
811
|
<name>International Organization for Standardization</name>
|
725
812
|
<abbreviation>ISO</abbreviation>
|
726
813
|
</organization>
|
727
|
-
</
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
<
|
737
|
-
|
738
|
-
<
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
<
|
744
|
-
<docidentifier>ABC 3</docidentifier>
|
745
|
-
</bibitem>
|
746
|
-
</relation>
|
747
|
-
<relation type='related'>
|
748
|
-
<bibitem>
|
749
|
-
<title>--</title>
|
750
|
-
<docidentifier>ABC 4</docidentifier>
|
751
|
-
</bibitem>
|
752
|
-
</relation>
|
753
|
-
<relation type='annotationOf'>
|
754
|
-
<bibitem>
|
755
|
-
<title>--</title>
|
756
|
-
<docidentifier>ABC 3a</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 — 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'>Échantillonnage</title>
|
768
|
-
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc — É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'/>
|
814
|
+
</contributor>
|
815
|
+
<contributor>
|
816
|
+
<role type='publisher'/>
|
817
|
+
<organization>
|
818
|
+
<name>International Organization for Standardization</name>
|
819
|
+
<abbreviation>ISO</abbreviation>
|
820
|
+
</organization>
|
821
|
+
</contributor>
|
822
|
+
<language>en</language>
|
823
|
+
<script>Latn</script>
|
824
|
+
<status>
|
825
|
+
<stage abbreviation='IS'>60</stage>
|
826
|
+
<substage>60</substage>
|
827
|
+
</status>
|
828
|
+
<copyright>
|
829
|
+
<from>#{Time.new.year}</from>
|
830
|
+
<owner>
|
777
831
|
<organization>
|
778
832
|
<name>International Organization for Standardization</name>
|
779
833
|
<abbreviation>ISO</abbreviation>
|
780
|
-
<uri>www.iso.org</uri>
|
781
834
|
</organization>
|
782
|
-
</
|
783
|
-
|
784
|
-
|
785
|
-
<
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
<
|
792
|
-
<
|
793
|
-
<
|
835
|
+
</owner>
|
836
|
+
</copyright>
|
837
|
+
<relation type='obsoletes'>
|
838
|
+
<bibitem>
|
839
|
+
<title>--</title>
|
840
|
+
<docidentifier>ABC 1</docidentifier>
|
841
|
+
</bibitem>
|
842
|
+
</relation>
|
843
|
+
<relation type='successorOf'>
|
844
|
+
<bibitem>
|
845
|
+
<title>--</title>
|
846
|
+
<docidentifier>ABC 2</docidentifier>
|
847
|
+
</bibitem>
|
848
|
+
</relation>
|
849
|
+
<relation type='manifestationOf'>
|
850
|
+
<bibitem>
|
851
|
+
<title>--</title>
|
852
|
+
<docidentifier>ABC 3</docidentifier>
|
853
|
+
</bibitem>
|
854
|
+
</relation>
|
855
|
+
<relation type='related'>
|
856
|
+
<bibitem>
|
857
|
+
<title>--</title>
|
858
|
+
<docidentifier>ABC 4</docidentifier>
|
859
|
+
</bibitem>
|
860
|
+
</relation>
|
861
|
+
<relation type='annotationOf'>
|
862
|
+
<bibitem>
|
863
|
+
<title>--</title>
|
864
|
+
<docidentifier>ABC 3a</docidentifier>
|
865
|
+
</bibitem>
|
866
|
+
</relation>
|
867
|
+
<relation type='updates'>
|
868
|
+
<description>amends</description>
|
869
|
+
<bibitem type='standard'>
|
870
|
+
<fetched/>
|
871
|
+
<title type='title-intro' format='text/plain' language='en' script='Latn'>Rubber latex</title>
|
872
|
+
<title type='title-main' format='text/plain' language='en' script='Latn'>Sampling</title>
|
873
|
+
<title type='main' format='text/plain' language='en' script='Latn'>Rubber latex — Sampling</title>
|
874
|
+
<title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc</title>
|
875
|
+
<title type='title-main' format='text/plain' language='fr' script='Latn'>Échantillonnage</title>
|
876
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>Latex de caoutchouc — Échantillonnage</title>
|
877
|
+
<uri type='src'>https://www.iso.org/standard/23281.html</uri>
|
878
|
+
<uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:23281:en</uri>
|
879
|
+
<uri type='rss'>https://www.iso.org/contents/data/standard/02/32/23281.detail.rss</uri>
|
880
|
+
<docidentifier type='ISO' primary="true">ISO 123:2001</docidentifier>
|
881
|
+
<docidentifier type='URN'>urn:iso:std:iso:123:stage-90.93:ed-3:en,fr</docidentifier>
|
882
|
+
<docnumber>123</docnumber>
|
883
|
+
<date type='published'><on>2001-05</on></date>
|
884
|
+
<contributor>
|
885
|
+
<role type='publisher'/>
|
794
886
|
<organization>
|
795
|
-
<name>
|
887
|
+
<name>International Organization for Standardization</name>
|
888
|
+
<abbreviation>ISO</abbreviation>
|
889
|
+
<uri>www.iso.org</uri>
|
796
890
|
</organization>
|
797
|
-
</
|
798
|
-
|
799
|
-
|
800
|
-
<
|
801
|
-
|
802
|
-
</
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
</
|
822
|
-
<
|
823
|
-
|
891
|
+
</contributor>
|
892
|
+
<edition>3</edition>
|
893
|
+
<note type='Unpublished-Status'><p>Withdrawn.</p></note>
|
894
|
+
<language>en</language>
|
895
|
+
<language>fr</language>
|
896
|
+
<script>Latn</script>
|
897
|
+
<abstract format='text/plain' language='en' script='Latn'>
|
898
|
+
This International Standard specifies procedures for sampling natural
|
899
|
+
rubber latex concentrate and for sampling synthetic rubber latices and
|
900
|
+
artificial latices. It is also suitable for sampling rubber latex
|
901
|
+
contained in drums, tank cars or tanks. The procedures may also be
|
902
|
+
used for sampling plastics dispersions.
|
903
|
+
</abstract>
|
904
|
+
<abstract format='text/plain' language='fr' script='Latn'>
|
905
|
+
La présente Norme internationale spécifie des méthodes
|
906
|
+
d’échantillonnage pour des concentrés de latex de
|
907
|
+
caoutchouc naturel et pour échantillonner des latex de caoutchouc
|
908
|
+
synthétique et des latex artificiels. Elle s’applique
|
909
|
+
également à l’échantillonnage de latex de
|
910
|
+
caoutchouc contenus dans des fûts, citernes routières ou de
|
911
|
+
stockage. Le mode opératoire peut aussi être utilisé
|
912
|
+
pour l’échantillonnage de dispersions de plastiques.
|
913
|
+
</abstract>
|
914
|
+
<status>
|
915
|
+
<stage>90</stage>
|
916
|
+
<substage>93</substage>
|
917
|
+
</status>
|
918
|
+
<copyright>
|
919
|
+
<from>2001</from>
|
920
|
+
<owner>
|
824
921
|
<organization>
|
825
|
-
<name>
|
826
|
-
<abbreviation>ISO</abbreviation>
|
827
|
-
<uri>www.iso.org</uri>
|
922
|
+
<name>ISO</name>
|
828
923
|
</organization>
|
829
|
-
</
|
830
|
-
|
831
|
-
|
832
|
-
<
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
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'>Natural rubber latex concentrate</title>
|
880
|
-
<title type='title-main' format='text/plain' language='en' script='Latn'>Determination of alkalinity</title>
|
881
|
-
<title type='main' format='text/plain' language='en' script='Latn'>
|
882
|
-
Natural rubber latex concentrate — Determination of
|
883
|
-
alkalinity
|
884
|
-
</title>
|
885
|
-
<title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex concentré de caoutchouc naturel</title>
|
886
|
-
<title type='title-main' format='text/plain' language='fr' script='Latn'>Détermination de l’alcalinité</title>
|
887
|
-
<title type='main' format='text/plain' language='fr' script='Latn'>
|
888
|
-
Latex concentré de caoutchouc
|
889
|
-
naturel — Détermination de
|
890
|
-
l’alcalinité
|
891
|
-
</title>
|
892
|
-
<uri type='src'>https://www.iso.org/standard/72849.html</uri>
|
893
|
-
<uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:72849:en</uri>
|
894
|
-
<uri type='rss'>https://www.iso.org/contents/data/standard/07/28/72849.detail.rss</uri>
|
895
|
-
<docidentifier type='ISO'>ISO 125</docidentifier>
|
896
|
-
<docidentifier type='URN'>urn:iso:std:iso:125:stage-60.60:ed-7:en,fr</docidentifier>
|
897
|
-
<docnumber>125</docnumber>
|
898
|
-
<contributor>
|
899
|
-
<role type='publisher'/>
|
900
|
-
<organization>
|
901
|
-
<name>International Organization for Standardization</name>
|
902
|
-
<abbreviation>ISO</abbreviation>
|
903
|
-
<uri>www.iso.org</uri>
|
904
|
-
</organization>
|
905
|
-
</contributor>
|
906
|
-
<edition>7</edition>
|
907
|
-
<language>en</language>
|
908
|
-
<language>fr</language>
|
909
|
-
<script>Latn</script>
|
910
|
-
<status>
|
911
|
-
<stage>60</stage>
|
912
|
-
<substage>60</substage>
|
913
|
-
</status>
|
914
|
-
<copyright>
|
915
|
-
<from>2020</from>
|
916
|
-
<owner>
|
924
|
+
</owner>
|
925
|
+
</copyright>
|
926
|
+
<relation type='obsoletes'>
|
927
|
+
<bibitem type='standard'>
|
928
|
+
<formattedref format='text/plain'>ISO 123:1985</formattedref>
|
929
|
+
</bibitem>
|
930
|
+
</relation>
|
931
|
+
<place>Geneva</place>
|
932
|
+
</bibitem>
|
933
|
+
</relation>
|
934
|
+
<relation type='updates'>
|
935
|
+
<description>amends</description>
|
936
|
+
<bibitem type='standard'>
|
937
|
+
<fetched/>
|
938
|
+
<title type='title-intro' format='text/plain' language='en' script='Latn'>Natural rubber latex concentrate</title>
|
939
|
+
<title type='title-main' format='text/plain' language='en' script='Latn'>Determination of alkalinity</title>
|
940
|
+
<title type='main' format='text/plain' language='en' script='Latn'>
|
941
|
+
Natural rubber latex concentrate — Determination of
|
942
|
+
alkalinity
|
943
|
+
</title>
|
944
|
+
<title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex concentré de caoutchouc naturel</title>
|
945
|
+
<title type='title-main' format='text/plain' language='fr' script='Latn'>Détermination de l’alcalinité</title>
|
946
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>
|
947
|
+
Latex concentré de caoutchouc
|
948
|
+
naturel — Détermination de
|
949
|
+
l’alcalinité
|
950
|
+
</title>
|
951
|
+
<uri type='src'>https://www.iso.org/standard/72849.html</uri>
|
952
|
+
<uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:72849:en</uri>
|
953
|
+
<uri type='rss'>https://www.iso.org/contents/data/standard/07/28/72849.detail.rss</uri>
|
954
|
+
<docidentifier type='ISO' primary="true">ISO 125</docidentifier>
|
955
|
+
<docidentifier type='URN'>urn:iso:std:iso:125:stage-60.60:ed-7:en,fr</docidentifier>
|
956
|
+
<docnumber>125</docnumber>
|
957
|
+
<contributor>
|
958
|
+
<role type='publisher'/>
|
917
959
|
<organization>
|
918
|
-
<name>
|
960
|
+
<name>International Organization for Standardization</name>
|
961
|
+
<abbreviation>ISO</abbreviation>
|
962
|
+
<uri>www.iso.org</uri>
|
919
963
|
</organization>
|
920
|
-
</
|
921
|
-
|
922
|
-
|
923
|
-
<
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
<
|
931
|
-
<
|
932
|
-
<title type='main' format='text/plain' language='en' script='Latn'>
|
933
|
-
Natural rubber latex concentrate — Determination
|
934
|
-
of alkalinity
|
935
|
-
</title>
|
936
|
-
<title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex concentré de caoutchouc naturel</title>
|
937
|
-
<title type='title-main' format='text/plain' language='fr' script='Latn'>Détermination de l’alcalinité</title>
|
938
|
-
<title type='main' format='text/plain' language='fr' script='Latn'>
|
939
|
-
Latex concentré de caoutchouc
|
940
|
-
naturel — Détermination de
|
941
|
-
l’alcalinité
|
942
|
-
</title>
|
943
|
-
<uri type='src'>https://www.iso.org/standard/72849.html</uri>
|
944
|
-
<uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:72849:en</uri>
|
945
|
-
<uri type='rss'>https://www.iso.org/contents/data/standard/07/28/72849.detail.rss</uri>
|
946
|
-
<docidentifier type='ISO'>ISO 125:2020</docidentifier>
|
947
|
-
<docidentifier type='URN'>urn:iso:std:iso:125:stage-60.60:ed-7:en,fr</docidentifier>
|
948
|
-
<docnumber>125</docnumber>
|
949
|
-
<date type='published'>
|
950
|
-
<on>2020-02</on>
|
951
|
-
</date>
|
952
|
-
<contributor>
|
953
|
-
<role type='publisher'/>
|
964
|
+
</contributor>
|
965
|
+
<edition>7</edition>
|
966
|
+
<language>en</language>
|
967
|
+
<language>fr</language>
|
968
|
+
<script>Latn</script>
|
969
|
+
<status>
|
970
|
+
<stage>60</stage>
|
971
|
+
<substage>60</substage>
|
972
|
+
</status>
|
973
|
+
<copyright>
|
974
|
+
<from>2020</from>
|
975
|
+
<owner>
|
954
976
|
<organization>
|
955
|
-
<name>
|
956
|
-
<abbreviation>ISO</abbreviation>
|
957
|
-
<uri>www.iso.org</uri>
|
977
|
+
<name>ISO</name>
|
958
978
|
</organization>
|
959
|
-
</
|
960
|
-
|
961
|
-
|
962
|
-
<
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
<stage
|
987
|
-
<
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
<
|
979
|
+
</owner>
|
980
|
+
</copyright>
|
981
|
+
<relation type='obsoletes'>
|
982
|
+
<bibitem type='standard'>
|
983
|
+
<formattedref format='text/plain'>ISO 125:2011</formattedref>
|
984
|
+
</bibitem>
|
985
|
+
</relation>
|
986
|
+
<relation type='instance'>
|
987
|
+
<bibitem type='standard'>
|
988
|
+
<fetched/>
|
989
|
+
<title type='title-intro' format='text/plain' language='en' script='Latn'>Natural rubber latex concentrate</title>
|
990
|
+
<title type='title-main' format='text/plain' language='en' script='Latn'>Determination of alkalinity</title>
|
991
|
+
<title type='main' format='text/plain' language='en' script='Latn'>
|
992
|
+
Natural rubber latex concentrate — Determination
|
993
|
+
of alkalinity
|
994
|
+
</title>
|
995
|
+
<title type='title-intro' format='text/plain' language='fr' script='Latn'>Latex concentré de caoutchouc naturel</title>
|
996
|
+
<title type='title-main' format='text/plain' language='fr' script='Latn'>Détermination de l’alcalinité</title>
|
997
|
+
<title type='main' format='text/plain' language='fr' script='Latn'>
|
998
|
+
Latex concentré de caoutchouc
|
999
|
+
naturel — Détermination de
|
1000
|
+
l’alcalinité
|
1001
|
+
</title>
|
1002
|
+
<uri type='src'>https://www.iso.org/standard/72849.html</uri>
|
1003
|
+
<uri type='obp'>https://www.iso.org/obp/ui/#!iso:std:72849:en</uri>
|
1004
|
+
<uri type='rss'>https://www.iso.org/contents/data/standard/07/28/72849.detail.rss</uri>
|
1005
|
+
<docidentifier type='ISO' primary="true">ISO 125:2020</docidentifier>
|
1006
|
+
<docidentifier type='URN'>urn:iso:std:iso:125:stage-60.60:ed-7:en,fr</docidentifier>
|
1007
|
+
<docnumber>125</docnumber>
|
1008
|
+
<date type='published'>
|
1009
|
+
<on>2020-02</on>
|
1010
|
+
</date>
|
1011
|
+
<contributor>
|
1012
|
+
<role type='publisher'/>
|
992
1013
|
<organization>
|
993
|
-
<name>
|
1014
|
+
<name>International Organization for Standardization</name>
|
1015
|
+
<abbreviation>ISO</abbreviation>
|
1016
|
+
<uri>www.iso.org</uri>
|
994
1017
|
</organization>
|
995
|
-
</
|
996
|
-
|
997
|
-
|
998
|
-
<
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
<
|
1045
|
-
|
1046
|
-
<
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
<
|
1052
|
-
|
1053
|
-
<
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
<
|
1059
|
-
|
1060
|
-
<
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
<
|
1066
|
-
|
1067
|
-
<
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
<
|
1073
|
-
|
1074
|
-
<
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
<
|
1080
|
-
|
1081
|
-
<
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1018
|
+
</contributor>
|
1019
|
+
<edition>7</edition>
|
1020
|
+
<language>en</language>
|
1021
|
+
<language>fr</language>
|
1022
|
+
<script>Latn</script>
|
1023
|
+
<abstract format='text/plain' language='en' script='Latn'>
|
1024
|
+
This document specifies a method for the determination of the
|
1025
|
+
alkalinity of natural rubber latex concentrate. The method is not
|
1026
|
+
necessarily suitable for latices from natural sources other than
|
1027
|
+
Hevea brasiliensis or for synthetic rubber latices, compounded
|
1028
|
+
latex, vulcanized latex or artificial dispersions of rubber. NOTE
|
1029
|
+
A method for the determination of the alkalinity of
|
1030
|
+
polychloroprene latex is specified in ISO 13773.
|
1031
|
+
</abstract>
|
1032
|
+
<abstract format='text/plain' language='fr' script='Latn'>
|
1033
|
+
Le présent document spécifie une méthode de
|
1034
|
+
détermination de l’alcalinité du latex
|
1035
|
+
concentré de caoutchouc naturel. La méthode ne convient
|
1036
|
+
pas nécessairement aux latex d’origine naturelle autres
|
1037
|
+
que l’Hevea brasiliensis ou aux latex de caoutchouc de
|
1038
|
+
synthèse, aux latex formulés, aux latex vulcanisés
|
1039
|
+
ou aux dispersions artificielles de caoutchouc. NOTE Une
|
1040
|
+
méthode de détermination de l’alcalinité du
|
1041
|
+
latex de polychloroprène est spécifiée dans
|
1042
|
+
l’ISO 13773.
|
1043
|
+
</abstract>
|
1044
|
+
<status>
|
1045
|
+
<stage>60</stage>
|
1046
|
+
<substage>60</substage>
|
1047
|
+
</status>
|
1048
|
+
<copyright>
|
1049
|
+
<from>2020</from>
|
1050
|
+
<owner>
|
1051
|
+
<organization>
|
1052
|
+
<name>ISO</name>
|
1053
|
+
</organization>
|
1054
|
+
</owner>
|
1055
|
+
</copyright>
|
1056
|
+
<relation type='obsoletes'>
|
1057
|
+
<bibitem type='standard'>
|
1058
|
+
<formattedref format='text/plain'>ISO 125:2011</formattedref>
|
1059
|
+
</bibitem>
|
1060
|
+
</relation>
|
1061
|
+
<place>Geneva</place>
|
1062
|
+
</bibitem>
|
1063
|
+
</relation>
|
1064
|
+
<place>Geneva</place>
|
1065
|
+
</bibitem>
|
1066
|
+
</relation>
|
1067
|
+
<relation type='obsoletes'>
|
1068
|
+
<description>replaces</description>
|
1069
|
+
<bibitem>
|
1070
|
+
<title>--</title>
|
1071
|
+
<docidentifier>ABC 5</docidentifier>
|
1072
|
+
</bibitem>
|
1073
|
+
</relation>
|
1074
|
+
<relation type='obsoletes'>
|
1075
|
+
<description>supersedes</description>
|
1076
|
+
<bibitem>
|
1077
|
+
<title>--</title>
|
1078
|
+
<docidentifier>ABC 6</docidentifier>
|
1079
|
+
</bibitem>
|
1080
|
+
</relation>
|
1081
|
+
<relation type='updates'>
|
1082
|
+
<description>corrects</description>
|
1083
|
+
<bibitem>
|
1084
|
+
<title>--</title>
|
1085
|
+
<docidentifier>ABC 7</docidentifier>
|
1086
|
+
</bibitem>
|
1087
|
+
</relation>
|
1088
|
+
<relation type='isCitedIn'>
|
1089
|
+
<description>informatively cited in</description>
|
1090
|
+
<bibitem>
|
1091
|
+
<title>--</title>
|
1092
|
+
<docidentifier>ABC 8</docidentifier>
|
1093
|
+
</bibitem>
|
1094
|
+
</relation>
|
1095
|
+
<relation type='cites'>
|
1096
|
+
<description>informatively cites</description>
|
1097
|
+
<bibitem>
|
1098
|
+
<title>--</title>
|
1099
|
+
<docidentifier>ABC 9</docidentifier>
|
1100
|
+
</bibitem>
|
1101
|
+
</relation>
|
1102
|
+
<relation type='cites'>
|
1103
|
+
<description>normatively cites</description>
|
1104
|
+
<bibitem>
|
1105
|
+
<title>--</title>
|
1106
|
+
<docidentifier>ABC 11</docidentifier>
|
1107
|
+
</bibitem>
|
1108
|
+
</relation>
|
1109
|
+
<relation type='adoptedFrom'>
|
1110
|
+
<description>identical adopted from</description>
|
1111
|
+
<bibitem>
|
1112
|
+
<title>--</title>
|
1113
|
+
<docidentifier>ABC 12</docidentifier>
|
1114
|
+
</bibitem>
|
1115
|
+
</relation>
|
1116
|
+
<relation type='adoptedFrom'>
|
1117
|
+
<description>modified adopted from</description>
|
1118
|
+
<bibitem>
|
1119
|
+
<title>--</title>
|
1120
|
+
<docidentifier>ABC 13</docidentifier>
|
1121
|
+
</bibitem>
|
1122
|
+
</relation>
|
1123
|
+
<relation type='related'>
|
1124
|
+
<description>related directive</description>
|
1125
|
+
<bibitem>
|
1126
|
+
<title>--</title>
|
1127
|
+
<docidentifier>ABC 14</docidentifier>
|
1128
|
+
</bibitem>
|
1129
|
+
</relation>
|
1130
|
+
<relation type='related'>
|
1131
|
+
<description>related mandate</description>
|
1132
|
+
<bibitem>
|
1133
|
+
<title>--</title>
|
1134
|
+
<docidentifier>ABC 15</docidentifier>
|
1135
|
+
</bibitem>
|
1136
|
+
</relation>
|
1137
|
+
<ext>
|
1138
|
+
<doctype>article</doctype>
|
1139
|
+
<editorialgroup>
|
1140
|
+
<technical-committee/>
|
1141
|
+
<subcommittee/>
|
1142
|
+
<workgroup/>
|
1143
|
+
</editorialgroup>
|
1144
|
+
<stagename>International standard</stagename>
|
1145
|
+
</ext>
|
1146
|
+
</bibdata>
|
1147
|
+
<sections> </sections>
|
1148
|
+
</iso-standard>
|
1090
1149
|
OUTPUT
|
1091
1150
|
end
|
1092
1151
|
end
|