metanorma-mpfd 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e2f6e7e356288d47f923cab50427a5cb0976194c61b56dea6f1018292762645f
4
- data.tar.gz: dde4faf9eb58b3b4f952fe660bf54c062aa4da44799773e0e3fa7fd2b50a223b
3
+ metadata.gz: 4aac0a4b39313af622025af2c3444402693ddb0bd0d26c0538d669a97b819ccf
4
+ data.tar.gz: 15438147e81e8cfeaf38354fe4b647f0df1d94743b7550f0a731e02cfd6a02c3
5
5
  SHA512:
6
- metadata.gz: 216c3e799d39b3a5a3f197a5d40c93ae16279b7cbb48217e825dfa064cf32015180cecafcc50813aa391a76e2e9049d843a0c381e0975d51c9ffe5748e556732
7
- data.tar.gz: 316bbdee5e2861b3afe0239af8e1cc955b8b9da361b70682337628898810c718e138170f38ad0dc3a9d539a715bf272d05956abe635e92e8e9744682a0fcce60
6
+ metadata.gz: '0482194d28beff205f32c5bc8509af17a148143956ac76b8e29fa3741efdf2963c1e902c71d7ffcd9609c83bb1713f151ef60790ac05e5e361bbe504dbf8bf60'
7
+ data.tar.gz: 0a92bf50618a81eda245bc24f988503617794ebe8adbc6f171108bd1ec77cdbff0160a40a7863daa4a1ffc5e611b37fda96a7069f557aee45fa2af5b8805c53c
@@ -18,6 +18,21 @@
18
18
  of this.
19
19
  -->
20
20
  <grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
21
+ <!--
22
+ https://www.myintervals.com/blog/2009/05/20/iso-8601-date-validation-that-doesnt-suck/
23
+ iso8601date = xsd:string { pattern = "([\+-]?\d{4}(?!\d{2}\b))((-?)((0[1-9]|1[0-2])(\3([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24\:?00)([\.,]\d+(?!:))?)?(\17[0-5]\d([\.,]\d+)?)?([zZ]|([\+-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?" }
24
+ Somewhat dumbed down for XSD regex:
25
+ -->
26
+ <define name="ISO8601DateTime">
27
+ <data type="string">
28
+ <param name="pattern">([\+\-]?\d{4})((-?)((0[1-9]|1[0-2])((-?)([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6])))([T\s]((([01]\d|2[0-3])((:?)[0-5]\d)?|24:?00)([\.,]\d+)?)?((:?)[0-5]\d([.,]\d+)?)?([zZ]|([\+\-])([01]\d|2[0-3]):?([0-5]\d)?)?)?)?</param>
29
+ </data>
30
+ </define>
31
+ <define name="ISO8601Date">
32
+ <data type="string">
33
+ <param name="pattern">([\+\-]?\d{4})((-?)((0[1-9]|1[0-2])((-?)([12]\d|0[1-9]|3[01]))?|W([0-4]\d|5[0-2])(-?[1-7])?|(00[1-9]|0[1-9]\d|[12]\d{2}|3([0-5]\d|6[1-6]))))?</param>
34
+ </data>
35
+ </define>
21
36
  <define name="status">
22
37
  <element name="status">
23
38
  <ref name="LocalizedString"/>
@@ -375,10 +390,7 @@
375
390
  </define>
376
391
  <define name="date">
377
392
  <element name="date">
378
- <choice>
379
- <data type="gYear"/>
380
- <data type="date"/>
381
- </choice>
393
+ <ref name="ISO8601Date"/>
382
394
  </element>
383
395
  </define>
384
396
  <define name="locality">
@@ -561,10 +573,7 @@
561
573
  </define>
562
574
  <define name="fetched">
563
575
  <element name="fetched">
564
- <choice>
565
- <data type="dateTime"/>
566
- <data type="date"/>
567
- </choice>
576
+ <ref name="ISO8601DateTime"/>
568
577
  </element>
569
578
  </define>
570
579
  <define name="validity">
@@ -582,26 +591,17 @@
582
591
  </define>
583
592
  <define name="validityBegins">
584
593
  <element name="validityBegins">
585
- <choice>
586
- <data type="dateTime"/>
587
- <data type="date"/>
588
- </choice>
594
+ <ref name="ISO8601DateTime"/>
589
595
  </element>
590
596
  </define>
591
597
  <define name="validityEnds">
592
598
  <element name="validityEnds">
593
- <choice>
594
- <data type="dateTime"/>
595
- <data type="date"/>
596
- </choice>
599
+ <ref name="ISO8601DateTime"/>
597
600
  </element>
598
601
  </define>
599
602
  <define name="validityRevision">
600
603
  <element name="revision">
601
- <choice>
602
- <data type="dateTime"/>
603
- <data type="date"/>
604
- </choice>
604
+ <ref name="ISO8601DateTime"/>
605
605
  </element>
606
606
  </define>
607
607
  <define name="TypedTitleString">
@@ -632,10 +632,7 @@
632
632
  <attribute name="text"/>
633
633
  </optional>
634
634
  <optional>
635
- <choice>
636
- <data type="gYear"/>
637
- <data type="date"/>
638
- </choice>
635
+ <ref name="ISO8601Date"/>
639
636
  </optional>
640
637
  </define>
641
638
  <define name="bdate">
@@ -660,25 +657,16 @@
660
657
  <choice>
661
658
  <group>
662
659
  <element name="from">
663
- <choice>
664
- <data type="gYear"/>
665
- <data type="date"/>
666
- </choice>
660
+ <ref name="ISO8601Date"/>
667
661
  </element>
668
662
  <optional>
669
663
  <element name="to">
670
- <choice>
671
- <data type="gYear"/>
672
- <data type="date"/>
673
- </choice>
664
+ <ref name="ISO8601Date"/>
674
665
  </element>
675
666
  </optional>
676
667
  </group>
677
668
  <element name="on">
678
- <choice>
679
- <data type="gYear"/>
680
- <data type="date"/>
681
- </choice>
669
+ <ref name="ISO8601Date"/>
682
670
  </element>
683
671
  </choice>
684
672
  </element>
@@ -791,20 +779,12 @@
791
779
  </define>
792
780
  <define name="seriesfrom">
793
781
  <element name="from">
794
- <choice>
795
- <data type="dateTime"/>
796
- <data type="date"/>
797
- <data type="gYear"/>
798
- </choice>
782
+ <ref name="ISO8601Date"/>
799
783
  </element>
800
784
  </define>
801
785
  <define name="seriesto">
802
786
  <element name="to">
803
- <choice>
804
- <data type="dateTime"/>
805
- <data type="date"/>
806
- <data type="gYear"/>
807
- </choice>
787
+ <ref name="ISO8601Date"/>
808
788
  </element>
809
789
  </define>
810
790
  <define name="seriesnumber">
@@ -899,7 +879,7 @@
899
879
  </define>
900
880
  <define name="revision-date">
901
881
  <element name="revision-date">
902
- <data type="date"/>
882
+ <ref name="ISO8601Date"/>
903
883
  </element>
904
884
  </define>
905
885
  <define name="draft">
@@ -922,10 +902,12 @@
922
902
  <define name="AnyElement">
923
903
  <element>
924
904
  <anyName/>
925
- <choice>
926
- <text/>
927
- <ref name="AnyElement"/>
928
- </choice>
905
+ <oneOrMore>
906
+ <choice>
907
+ <text/>
908
+ <ref name="AnyElement"/>
909
+ </choice>
910
+ </oneOrMore>
929
911
  </element>
930
912
  </define>
931
913
  </grammar>
@@ -927,7 +927,12 @@
927
927
  <value>AsciiMath</value>
928
928
  </choice>
929
929
  </attribute>
930
- <text/>
930
+ <oneOrMore>
931
+ <choice>
932
+ <text/>
933
+ <ref name="AnyElement"/>
934
+ </choice>
935
+ </oneOrMore>
931
936
  </element>
932
937
  </define>
933
938
  <define name="annotation">
@@ -250,24 +250,17 @@
250
250
  <choice>
251
251
  <group>
252
252
  <element name="from">
253
- <choice>
254
- <data type="gYear"/>
255
- <data type="date"/>
256
- </choice>
253
+ <ref name="ISO8601Date"/>
257
254
  </element>
258
255
  <optional>
259
256
  <element name="to">
260
- <choice>
261
- <data type="gYear"/>
262
- <data type="date"/>
263
- </choice>
257
+ <ref name="ISO8601Date"/>
264
258
  </element>
265
259
  </optional>
266
260
  </group>
267
261
  <element name="on">
268
262
  <choice>
269
- <data type="gYear"/>
270
- <data type="date"/>
263
+ <ref name="ISO8601Date"/>
271
264
  <value>--</value>
272
265
  </choice>
273
266
  </element>
@@ -45,7 +45,7 @@ module Asciidoctor
45
45
  else
46
46
  if @term_def then term_def_subclause_parse(a, xml, node)
47
47
  elsif @biblio then bibliography_parse(a, xml, node)
48
- elsif node.attr("style") == "bibliography" && node.level == 1
48
+ elsif node.attr("style") == "bibliography"
49
49
  bibliography_parse(a, xml, node)
50
50
  elsif node.attr("style") == "abstract"
51
51
  abstract_parse(a, xml, node)
@@ -591,7 +591,7 @@ p.Biblio, p.NormRef {
591
591
  overflow: auto;
592
592
  }
593
593
 
594
- .FigureTitle {
594
+ .FigureTitle, .SourceTitle, .AdmonitionTitle {
595
595
  font-weight: 700;
596
596
  font-size: 1em;
597
597
  text-align: center;
@@ -51,6 +51,44 @@ p.FigureTitle
51
51
  mso-fareast-font-family:$bodyfont;
52
52
  mso-bidi-font-family:$bodyfont;
53
53
  mso-ansi-language:EN-GB;}
54
+ p.SourceTitle
55
+ {mso-style-unhide:no;
56
+ mso-style-qformat:yes;
57
+ mso-style-parent:"";
58
+ margin-top:0cm;
59
+ margin-right:0cm;
60
+ margin-bottom:6.0pt;
61
+ margin-left:0cm;
62
+ text-align:center;
63
+ line-height:12.0pt;
64
+ page-break-before:avoid;
65
+ mso-pagination:widow-orphan;
66
+ tab-stops:20.15pt;
67
+ font-size:11.0pt;
68
+ font-weight:bold;
69
+ font-family:$bodyfont;
70
+ mso-fareast-font-family:$bodyfont;
71
+ mso-bidi-font-family:$bodyfont;
72
+ mso-ansi-language:EN-GB;}
73
+ p.AdmonitionTitle
74
+ {mso-style-unhide:no;
75
+ mso-style-qformat:yes;
76
+ mso-style-parent:"";
77
+ margin-top:0cm;
78
+ margin-right:0cm;
79
+ margin-bottom:6.0pt;
80
+ margin-left:0cm;
81
+ text-align:center;
82
+ line-height:12.0pt;
83
+ page-break-after:avoid;
84
+ mso-pagination:widow-orphan;
85
+ tab-stops:20.15pt;
86
+ font-size:11.0pt;
87
+ font-weight:bold;
88
+ font-family:$bodyfont;
89
+ mso-fareast-font-family:$bodyfont;
90
+ mso-bidi-font-family:$bodyfont;
91
+ mso-ansi-language:EN-GB;}
54
92
  p.TableTitle
55
93
  {mso-style-unhide:no;
56
94
  mso-style-qformat:yes;
@@ -15,10 +15,10 @@ module IsoDoc
15
15
  end
16
16
 
17
17
  def convert1(docxml, filename, dir)
18
- FileUtils.cp html_doc_path("logo.jpg"), "logo.jpg"
19
- FileUtils.cp html_doc_path('mpfa-logo-no-text@4x.png'), "mpfa-logo-no-text@4x.png"
20
- @files_to_delete << "logo.jpg"
21
- @files_to_delete << "mpfa-logo-no-text@4x.png"
18
+ FileUtils.cp html_doc_path("logo.jpg"), File.join(@localdir, "logo.jpg")
19
+ FileUtils.cp html_doc_path('mpfa-logo-no-text@4x.png'), File.join(@localdir, "mpfa-logo-no-text@4x.png")
20
+ @files_to_delete << File.join(@localdir, "logo.jpg")
21
+ @files_to_delete << File.join(@localdir, "mpfa-logo-no-text@4x.png")
22
22
  super
23
23
  end
24
24
 
@@ -13,10 +13,10 @@ module IsoDoc
13
13
  end
14
14
 
15
15
  def convert1(docxml, filename, dir)
16
- FileUtils.cp html_doc_path("logo.jpg"), "logo.jpg"
17
- FileUtils.cp html_doc_path('mpfa-logo-no-text@4x.png'), "mpfa-logo-no-text@4x.png"
18
- @files_to_delete << "logo.jpg"
19
- @files_to_delete << "mpfa-logo-no-text@4x.png"
16
+ FileUtils.cp html_doc_path("logo.jpg"), File.join(@localdir, "logo.jpg")
17
+ FileUtils.cp html_doc_path('mpfa-logo-no-text@4x.png'), File.join(@localdir, "mpfa-logo-no-text@4x.png")
18
+ @files_to_delete << File.join(@localdir, "logo.jpg")
19
+ @files_to_delete << File.join(@localdir, "mpfa-logo-no-text@4x.png")
20
20
  super
21
21
  end
22
22
 
@@ -13,10 +13,10 @@ module IsoDoc
13
13
  end
14
14
 
15
15
  def convert1(docxml, filename, dir)
16
- FileUtils.cp html_doc_path("logo.jpg"), "logo.jpg"
17
- FileUtils.cp html_doc_path('mpfa-logo-no-text@4x.png'), "mpfa-logo-no-text@4x.png"
18
- @files_to_delete << "logo.jpg"
19
- @files_to_delete << "mpfa-logo-no-text@4x.png"
16
+ FileUtils.cp html_doc_path("logo.jpg"), File.join(@localdir, "logo.jpg")
17
+ FileUtils.cp html_doc_path('mpfa-logo-no-text@4x.png'), File.join(@localdir, "mpfa-logo-no-text@4x.png")
18
+ @files_to_delete << File.join(@localdir, "logo.jpg")
19
+ @files_to_delete << File.join(@localdir, "mpfa-logo-no-text@4x.png")
20
20
  super
21
21
  end
22
22
 
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Mpfd
3
- VERSION = "0.1.7"
3
+ VERSION = "0.1.8"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-mpfd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-01-31 00:00:00.000000000 Z
11
+ date: 2019-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: asciidoctor