metanorma-m3aawg 2.0.7 → 2.1.1

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: a7d05796a28d0ab9c3b338e4fc231532ea41441f9432aa70226e325867d6ab80
4
- data.tar.gz: 88389dfc70f85f9b8afd65f6f49b31d51cb69c8f55b0643e42afd257433fdb41
3
+ metadata.gz: c34419dd3349a223ddbfef53e2277c615d6337cbd7ac1809459c0571aa84b77e
4
+ data.tar.gz: 8d7d2a5083769d2157339d815453581f0923a9e7ddc1c78537342d812044e524
5
5
  SHA512:
6
- metadata.gz: 3de1fd4a41075b304ea26ebf46528e252ee6bfd1f399e52e2560b441960dec1bcb79565e0ff1fff97f6fb5a99c78839e358499e20b01d4c96ca993bc1a475da6
7
- data.tar.gz: ad695db3e5fc6ca79f3f71be01b7aa3920a2220cc7588c31c9e8b4a09517d0729b32a32a3691003df799fa2ad37d3567011d0536cd02a9ae35f2882e3fe0871c
6
+ metadata.gz: 30f3a3faddb1ac3c923007d6b88d4f851e9b4bf2f7360d951134514c2bac5e247683a4cd51a4de656be7e55d2950c63e82c579a0d27257a1aaa2f7dbf67317f1
7
+ data.tar.gz: a4710d58531ece17f0383c60b59d1ef0b93ec2223a208a143c98e574ad02180a0f531cb3ace206a60ee63a51f6736266609c4c519b44d2d9bd108f22fd52dd10
@@ -320,7 +320,7 @@ style='font-size:8.0pt;font-family:"Garamond",serif;mso-bidi-font-family:Arial'>
320
320
  <div style='mso-element:footer' id=f2>
321
321
 
322
322
  <p class=MsoFooter>As with all M3AAWG documents that we publish, please check the M3AAWG website (<a href="http://www.m3aawg.org">www.m3aawg.org</a>) for updates to this paper.</p>
323
- <p class=MsoFooter>&copy; {{docyear}} copyright by the Messaging, Malware and Mobile Anti-Abuse Working Group (M3AAWG)</p>
323
+ <p class=MsoFooter {{docyear}} copyright by the Messaging, Malware and Mobile Anti-Abuse Working Group (M3AAWG)</p>
324
324
  <p class=MsoFooter style="font-size:9pt;">{{docnumber}}</p>
325
325
  </div>
326
326
 
@@ -58,6 +58,7 @@
58
58
  <div id="boilerplate-license-destination"/>
59
59
  </div>
60
60
  {% endif %}
61
+ <div class="coverpage-warning" id="coverpage-note-destination"/>
61
62
 
62
63
  <div class="copyright">
63
64
  <div class="year">
@@ -43,5 +43,8 @@ margin-left:4.25pt;margin-right:4.25pt'>
43
43
 
44
44
  </div>
45
45
  {% endif %}
46
+ <div style='mso-element:para-border-div;border:solid windowtext 1.0pt;
47
+ mso-border-alt:solid windowtext .5pt;padding:1.0pt 4.0pt 1.0pt 4.0pt;
48
+ margin-left:4.25pt;margin-right:4.25pt' class="coverpage-warning" id="coverpage-note-destination"/>
46
49
 
47
50
 
@@ -10,20 +10,15 @@ module IsoDoc
10
10
  Metanorma::M3AAWG.configuration
11
11
  end
12
12
 
13
- def initialize(options)
14
- #require "byebug"; byebug
15
- super
16
- end
17
-
18
- def colophon(body, docxml)
13
+ def colophon(body, _docxml)
19
14
  body.div **{ class: "colophon" } do |div|
20
15
  div << <<~"COLOPHON"
21
- <p>As with all M<sup>3</sup>AAWG documents that we publish,
22
- please check the M<sup>3</sup>AAWG website
23
- (<a href="http://www.m3aawg.org">www.m3aawg.org</a>) for updates to
24
- this paper.</p>
25
- <p>&copy; #{@meta.get[:docyear]} copyright by the Messaging, Malware
26
- and Mobile Anti-Abuse Working Group (M<sup>3</sup>AAWG)</p>
16
+ <p>As with all M<sup>3</sup>AAWG documents that we publish,
17
+ please check the M<sup>3</sup>AAWG website
18
+ (<a href="http://www.m3aawg.org">www.m3aawg.org</a>) for updates to
19
+ this paper.</p>
20
+ <p>&#xa9; #{@meta.get[:docyear]} copyright by the Messaging, Malware
21
+ and Mobile Anti-Abuse Working Group (M<sup>3</sup>AAWG)</p>
27
22
  COLOPHON
28
23
  end
29
24
  end
@@ -44,4 +39,3 @@ module IsoDoc
44
39
  end
45
40
  end
46
41
  end
47
-
@@ -10,13 +10,13 @@ module IsoDoc
10
10
  @meta = Metadata.new(lang, script, labels)
11
11
  end
12
12
 
13
- def xref_init(lang, script, klass, labels, options)
13
+ def xref_init(lang, script, _klass, labels, options)
14
14
  html = HtmlConvert.new(language: lang, script: script)
15
15
  @xrefs = Xref.new(lang, script, html, labels, options)
16
16
  end
17
17
 
18
18
  def i18n_init(lang, script, i18nyaml = nil)
19
- @i18n = I18n.new(lang, script, i18nyaml || @i18nyaml)
19
+ @i18n = I18n.new(lang, script, i18nyaml: i18nyaml || @i18nyaml)
20
20
  end
21
21
  end
22
22
  end