metanorma-m3d 1.0.0
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 +7 -0
- data/.gitignore +1 -0
- data/.travis.yml +15 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE +25 -0
- data/README.adoc +170 -0
- data/Rakefile +6 -0
- data/asciidoctor-m3d.gemspec.old +54 -0
- data/bin/console +14 -0
- data/bin/rspec +18 -0
- data/bin/setup +8 -0
- data/lib/asciidoctor-m3d.rb +10 -0
- data/lib/asciidoctor/m3d.rb +7 -0
- data/lib/asciidoctor/m3d/biblio.rng +836 -0
- data/lib/asciidoctor/m3d/converter.rb +188 -0
- data/lib/asciidoctor/m3d/html/dots-w@2x.png +0 -0
- data/lib/asciidoctor/m3d/html/dots@2x.png +0 -0
- data/lib/asciidoctor/m3d/html/header.html +184 -0
- data/lib/asciidoctor/m3d/html/html_m3d_intro.html +8 -0
- data/lib/asciidoctor/m3d/html/html_m3d_titlepage.html +95 -0
- data/lib/asciidoctor/m3d/html/htmlstyle.scss +797 -0
- data/lib/asciidoctor/m3d/html/m3d.scss +549 -0
- data/lib/asciidoctor/m3d/html/scripts.html +68 -0
- data/lib/asciidoctor/m3d/isodoc.rng +1059 -0
- data/lib/asciidoctor/m3d/isostandard.rng +1001 -0
- data/lib/asciidoctor/m3d/m3d.rng +154 -0
- data/lib/asciidoctor/m3d/version.rb +5 -0
- data/lib/isodoc/m3d/html/dots-w@2x.png +0 -0
- data/lib/isodoc/m3d/html/dots@2x.png +0 -0
- data/lib/isodoc/m3d/html/header.html +219 -0
- data/lib/isodoc/m3d/html/html_m3d_intro.html +14 -0
- data/lib/isodoc/m3d/html/html_m3d_titlepage.html +102 -0
- data/lib/isodoc/m3d/html/htmlstyle.scss +1001 -0
- data/lib/isodoc/m3d/html/logo.jpg +0 -0
- data/lib/isodoc/m3d/html/m3-logo.png +0 -0
- data/lib/isodoc/m3d/html/m3d.scss +697 -0
- data/lib/isodoc/m3d/html/scripts.html +82 -0
- data/lib/isodoc/m3d/html/word_m3d_intro.html +10 -0
- data/lib/isodoc/m3d/html/word_m3d_titlepage.html +58 -0
- data/lib/isodoc/m3d/html/wordstyle.scss +1003 -0
- data/lib/isodoc/m3d/m3dhtmlconvert.rb +154 -0
- data/lib/isodoc/m3d/m3dhtmlrender.rb +68 -0
- data/lib/isodoc/m3d/m3dwordconvert.rb +105 -0
- data/lib/isodoc/m3d/m3wordrender.rb +68 -0
- data/lib/isodoc/m3d/metadata.rb +87 -0
- data/lib/metanorma/m3d.rb +7 -0
- data/lib/metanorma/m3d/processor.rb +41 -0
- data/metanorma-m3d.gemspec +55 -0
- metadata +419 -0
@@ -0,0 +1,154 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<grammar xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
|
3
|
+
<!--
|
4
|
+
Currently we inherit from a namespaced grammar, isostandard. Until we inherit from isodoc,
|
5
|
+
we cannot have a new default namespace: we will end up with a grammar with two different
|
6
|
+
namespaces, one for isostandard and one for csand additions. And we do not want that.
|
7
|
+
-->
|
8
|
+
<include href="isostandard.rng">
|
9
|
+
<start>
|
10
|
+
<ref name="m3d-standard"/>
|
11
|
+
</start>
|
12
|
+
<define name="language">
|
13
|
+
<element name="language">
|
14
|
+
<value>en</value>
|
15
|
+
</element>
|
16
|
+
</define>
|
17
|
+
<define name="docidentifier">
|
18
|
+
<element name="docidentifier">
|
19
|
+
<text/>
|
20
|
+
</element>
|
21
|
+
</define>
|
22
|
+
<define name="btitle">
|
23
|
+
<element name="title">
|
24
|
+
<ref name="FormattedString"/>
|
25
|
+
</element>
|
26
|
+
</define>
|
27
|
+
<define name="figure">
|
28
|
+
<element name="figure">
|
29
|
+
<attribute name="id">
|
30
|
+
<data type="ID"/>
|
31
|
+
</attribute>
|
32
|
+
<optional>
|
33
|
+
<ref name="source"/>
|
34
|
+
</optional>
|
35
|
+
<optional>
|
36
|
+
<ref name="tname"/>
|
37
|
+
</optional>
|
38
|
+
<choice>
|
39
|
+
<oneOrMore>
|
40
|
+
<ref name="figure"/>
|
41
|
+
</oneOrMore>
|
42
|
+
<group>
|
43
|
+
<choice>
|
44
|
+
<zeroOrMore>
|
45
|
+
<ref name="TextElement"/>
|
46
|
+
</zeroOrMore>
|
47
|
+
<ref name="pre"/>
|
48
|
+
</choice>
|
49
|
+
<zeroOrMore>
|
50
|
+
<ref name="note"/>
|
51
|
+
</zeroOrMore>
|
52
|
+
<optional>
|
53
|
+
<ref name="dl"/>
|
54
|
+
</optional>
|
55
|
+
</group>
|
56
|
+
</choice>
|
57
|
+
</element>
|
58
|
+
</define>
|
59
|
+
<define name="status">
|
60
|
+
<element name="status">
|
61
|
+
<choice>
|
62
|
+
<value>proposal</value>
|
63
|
+
<value>working-draft</value>
|
64
|
+
<value>committee-draft</value>
|
65
|
+
<value>draft-standard</value>
|
66
|
+
<value>final-draft</value>
|
67
|
+
<value>published</value>
|
68
|
+
<value>withdrawn</value>
|
69
|
+
<ref name="LocalizedString"/>
|
70
|
+
</choice>
|
71
|
+
</element>
|
72
|
+
</define>
|
73
|
+
<!-- TextElement |= keyword -->
|
74
|
+
<define name="TextElement">
|
75
|
+
<choice>
|
76
|
+
<text/>
|
77
|
+
<ref name="em"/>
|
78
|
+
<ref name="eref"/>
|
79
|
+
<ref name="strong"/>
|
80
|
+
<ref name="stem"/>
|
81
|
+
<ref name="sub"/>
|
82
|
+
<ref name="sup"/>
|
83
|
+
<ref name="tt"/>
|
84
|
+
<ref name="strike"/>
|
85
|
+
<ref name="smallcap"/>
|
86
|
+
<ref name="xref"/>
|
87
|
+
<ref name="br"/>
|
88
|
+
<ref name="hyperlink"/>
|
89
|
+
<ref name="hr"/>
|
90
|
+
<ref name="pagebreak"/>
|
91
|
+
<ref name="bookmark"/>
|
92
|
+
<ref name="keyword"/>
|
93
|
+
</choice>
|
94
|
+
</define>
|
95
|
+
<define name="BibItemType" combine="choice">
|
96
|
+
<choice>
|
97
|
+
<value>guidance</value>
|
98
|
+
<value>proposal</value>
|
99
|
+
<value>standard</value>
|
100
|
+
<value>report</value>
|
101
|
+
<value>whitepaper</value>
|
102
|
+
<value>charter</value>
|
103
|
+
<value>policy</value>
|
104
|
+
<value>glossary</value>
|
105
|
+
<value>case-study</value>
|
106
|
+
</choice>
|
107
|
+
</define>
|
108
|
+
<define name="editorialgroup">
|
109
|
+
<element name="editorialgroup">
|
110
|
+
<ref name="committee"/>
|
111
|
+
</element>
|
112
|
+
</define>
|
113
|
+
</include>
|
114
|
+
<define name="committee">
|
115
|
+
<element name="committee">
|
116
|
+
<attribute name="type">
|
117
|
+
<choice>
|
118
|
+
<value>technical</value>
|
119
|
+
<value>provisional</value>
|
120
|
+
</choice>
|
121
|
+
</attribute>
|
122
|
+
<text/>
|
123
|
+
</element>
|
124
|
+
</define>
|
125
|
+
<define name="pre">
|
126
|
+
<element name="pre">
|
127
|
+
<text/>
|
128
|
+
</element>
|
129
|
+
</define>
|
130
|
+
<define name="keyword">
|
131
|
+
<element name="keyword">
|
132
|
+
<text/>
|
133
|
+
</element>
|
134
|
+
</define>
|
135
|
+
<define name="m3d-standard">
|
136
|
+
<element name="m3d-standard">
|
137
|
+
<ref name="bibdata"/>
|
138
|
+
<optional>
|
139
|
+
<ref name="version"/>
|
140
|
+
</optional>
|
141
|
+
<zeroOrMore>
|
142
|
+
<ref name="termdocsource"/>
|
143
|
+
</zeroOrMore>
|
144
|
+
<ref name="preface"/>
|
145
|
+
<oneOrMore>
|
146
|
+
<ref name="sections"/>
|
147
|
+
</oneOrMore>
|
148
|
+
<zeroOrMore>
|
149
|
+
<ref name="annex"/>
|
150
|
+
</zeroOrMore>
|
151
|
+
<ref name="bibliography"/>
|
152
|
+
</element>
|
153
|
+
</define>
|
154
|
+
</grammar>
|
Binary file
|
Binary file
|
@@ -0,0 +1,219 @@
|
|
1
|
+
<html xmlns:v="urn:schemas-microsoft-com:vml"
|
2
|
+
xmlns:o="urn:schemas-microsoft-com:office:office"
|
3
|
+
xmlns:w="urn:schemas-microsoft-com:office:word"
|
4
|
+
xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
|
5
|
+
xmlns="http://www.w3.org/TR/REC-html40">
|
6
|
+
|
7
|
+
<head>
|
8
|
+
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
|
9
|
+
<meta name=ProgId content=Word.Document>
|
10
|
+
<meta name=Generator content="Microsoft Word 15">
|
11
|
+
<meta name=Originator content="Microsoft Word 15">
|
12
|
+
<link id=Main-File rel=Main-File href="../m3aawg-document-template-2015-10.html">
|
13
|
+
<!--[if gte mso 9]><xml>
|
14
|
+
<o:shapedefaults v:ext="edit" spidmax="2051"/>
|
15
|
+
</xml><![endif]--><!--[if gte mso 9]><xml>
|
16
|
+
<o:shapelayout v:ext="edit">
|
17
|
+
<o:idmap v:ext="edit" data="2"/>
|
18
|
+
</o:shapelayout></xml><![endif]-->
|
19
|
+
</head>
|
20
|
+
|
21
|
+
<body lang=EL link=blue vlink=purple>
|
22
|
+
|
23
|
+
<div style='mso-element:footnote-separator' id=fs>
|
24
|
+
|
25
|
+
<p class=MsoNormal><span lang=EN-US><span style='mso-special-character:footnote-separator'><![if !supportFootnotes]>
|
26
|
+
|
27
|
+
<hr align=left size=1 width="33%">
|
28
|
+
|
29
|
+
<![endif]></span></span></p>
|
30
|
+
|
31
|
+
</div>
|
32
|
+
|
33
|
+
<div style='mso-element:footnote-continuation-separator' id=fcs>
|
34
|
+
|
35
|
+
<p class=MsoNormal><span lang=EN-US><span style='mso-special-character:footnote-continuation-separator'><![if !supportFootnotes]>
|
36
|
+
|
37
|
+
<hr align=left size=1>
|
38
|
+
|
39
|
+
<![endif]></span></span></p>
|
40
|
+
|
41
|
+
</div>
|
42
|
+
|
43
|
+
<div style='mso-element:endnote-separator' id=es>
|
44
|
+
|
45
|
+
<p class=MsoNormal><span lang=EN-US><span style='mso-special-character:footnote-separator'><![if !supportFootnotes]>
|
46
|
+
|
47
|
+
<hr align=left size=1 width="33%">
|
48
|
+
|
49
|
+
<![endif]></span></span></p>
|
50
|
+
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div style='mso-element:endnote-continuation-separator' id=ecs>
|
54
|
+
|
55
|
+
<p class=MsoNormal><span lang=EN-US><span style='mso-special-character:footnote-continuation-separator'><![if !supportFootnotes]>
|
56
|
+
|
57
|
+
<hr align=left size=1>
|
58
|
+
|
59
|
+
<![endif]></span></span></p>
|
60
|
+
|
61
|
+
</div>
|
62
|
+
|
63
|
+
<div style='mso-element:header' id=eh1>
|
64
|
+
|
65
|
+
|
66
|
+
</div>
|
67
|
+
|
68
|
+
<p class=MsoHeader style='margin-right:18.0pt'><span lang=EN-US><o:p> </o:p></span></p>
|
69
|
+
|
70
|
+
</div>
|
71
|
+
|
72
|
+
<div style='mso-element:header' id=h1>
|
73
|
+
|
74
|
+
|
75
|
+
</div>
|
76
|
+
|
77
|
+
<div style='mso-element:footer' id=ef1>
|
78
|
+
|
79
|
+
<div style='mso-element:frame;mso-element-wrap:around;mso-element-anchor-vertical:
|
80
|
+
paragraph;mso-element-anchor-horizontal:margin;mso-element-left:right;
|
81
|
+
mso-element-top:.05pt;mso-height-rule:exactly'>
|
82
|
+
|
83
|
+
<table cellspacing=0 cellpadding=0 hspace=0 vspace=0 align=right>
|
84
|
+
<tr>
|
85
|
+
<td valign=top align=left style='padding-top:0cm;padding-right:0cm;
|
86
|
+
padding-bottom:0cm;padding-left:0cm'>
|
87
|
+
<p class=MsoFooter style='mso-element:frame;mso-element-wrap:around;
|
88
|
+
mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;
|
89
|
+
mso-element-left:right;mso-element-top:.05pt;mso-height-rule:exactly'><!--[if supportFields]><span
|
90
|
+
class=MsoPageNumber><span lang=EN-US><span style='mso-element:field-begin'></span>PAGE<span
|
91
|
+
style='mso-spacerun:yes'> </span></span></span><![endif]--><!--[if supportFields]><span
|
92
|
+
class=MsoPageNumber><span lang=EN-US><span style='mso-element:field-end'></span></span></span><![endif]--><span
|
93
|
+
class=MsoPageNumber><span lang=EN-US><o:p></o:p></span></span></p>
|
94
|
+
</td>
|
95
|
+
</tr>
|
96
|
+
</table>
|
97
|
+
|
98
|
+
</div>
|
99
|
+
|
100
|
+
<p class=MsoFooter style='margin-right:18.0pt'><span lang=EN-US><o:p> </o:p></span></p>
|
101
|
+
|
102
|
+
</div>
|
103
|
+
|
104
|
+
<div style='mso-element:footer' id=f1>
|
105
|
+
|
106
|
+
<div style='mso-element:frame;mso-element-wrap:around;mso-element-anchor-vertical:
|
107
|
+
paragraph;mso-element-anchor-horizontal:margin;mso-element-left:right;
|
108
|
+
mso-element-top:.05pt;mso-height-rule:exactly'>
|
109
|
+
|
110
|
+
<table cellspacing=0 cellpadding=0 hspace=0 vspace=0 align=right>
|
111
|
+
<tr>
|
112
|
+
<td valign=top align=left style='padding-top:0cm;padding-right:0cm;
|
113
|
+
padding-bottom:0cm;padding-left:0cm'>
|
114
|
+
<p class=MsoHeader style='mso-element:frame;mso-element-wrap:around;
|
115
|
+
mso-element-anchor-vertical:paragraph;mso-element-anchor-horizontal:margin;
|
116
|
+
mso-element-left:right;mso-element-top:.05pt;mso-height-rule:exactly'><!--[if supportFields]><span
|
117
|
+
class=MsoPageNumber><span lang=EN-US style='font-family:"Garamond",serif'><span
|
118
|
+
style='mso-element:field-begin'></span>PAGE<span style='mso-spacerun:yes'>
|
119
|
+
</span><span style='mso-element:field-separator'></span></span></span><![endif]--><span
|
120
|
+
class=MsoPageNumber><span lang=EN-US style='font-family:"Garamond",serif'>1</span></span><!--[if supportFields]><span
|
121
|
+
class=MsoPageNumber><span lang=EN-US style='font-family:"Garamond",serif'><span
|
122
|
+
style='mso-element:field-end'></span></span></span><![endif]--><span
|
123
|
+
class=MsoPageNumber><span lang=EN-US style='font-family:"Garamond",serif'><o:p></o:p></span></span></p>
|
124
|
+
</td>
|
125
|
+
</tr>
|
126
|
+
</table>
|
127
|
+
|
128
|
+
</div>
|
129
|
+
|
130
|
+
<p class=MsoFooter><b style='mso-bidi-font-weight:normal'><span lang=EN-US
|
131
|
+
style='font-size:8.0pt;font-family:"Garamond",serif;mso-bidi-font-family:Arial'>{{doctitle}}<span style='mso-tab-count:2'> </span><o:p></o:p></span></b></p>
|
132
|
+
|
133
|
+
<p class=MsoFooter style='margin-right:18.0pt;tab-stops:center 181.5pt right 432.0pt'><span
|
134
|
+
lang=EN-US style='mso-bidi-font-size:12.0pt;mso-bidi-font-family:Arial;
|
135
|
+
background:#E0E0E0'><o:p> </o:p></span></p>
|
136
|
+
|
137
|
+
</div>
|
138
|
+
|
139
|
+
<div style='mso-element:header' id=fh1>
|
140
|
+
|
141
|
+
<p class=MsoHeader><img width="323" height="39" src="logo.jpg"></img>
|
142
|
+
<!--[if gte vml 1]><v:line id="_x0000_s2049" alt=""
|
143
|
+
style='position:absolute;flip:y;z-index:251659264;mso-wrap-style:none;
|
144
|
+
mso-wrap-edited:f;mso-width-percent:0;mso-height-percent:0;
|
145
|
+
mso-width-percent:0;mso-height-percent:0;v-text-anchor:middle' from="0,39.6pt"
|
146
|
+
to="500.4pt,39.6pt" strokecolor="#ff0c00">
|
147
|
+
<v:shadow color="#969696"/>
|
148
|
+
</v:line><![endif]--></span></b></p>
|
149
|
+
|
150
|
+
</div>
|
151
|
+
|
152
|
+
<div style='mso-element:footer' id=ff1>
|
153
|
+
|
154
|
+
<p class=MsoFooter><b style='mso-bidi-font-weight:normal'><span lang=EN-US
|
155
|
+
style='font-size:8.0pt;mso-bidi-font-family:Arial'><span style='mso-tab-count:
|
156
|
+
1'> </span></span></b><span
|
157
|
+
lang=EN-US style='mso-no-proof:yes'><!--[if gte vml 1]><v:line id="_x0000_s2049"
|
158
|
+
style='position:absolute;flip:y;z-index:251660288;visibility:visible;
|
159
|
+
mso-wrap-style:square;mso-width-percent:0;mso-height-percent:0;
|
160
|
+
mso-wrap-distance-left:9pt;mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;
|
161
|
+
mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;
|
162
|
+
mso-position-horizontal-relative:text;mso-position-vertical:absolute;
|
163
|
+
mso-position-vertical-relative:text;mso-width-percent:0;mso-height-percent:0;
|
164
|
+
mso-width-relative:page;mso-height-relative:page' from="0,0" to="500.4pt,0"
|
165
|
+
strokecolor="#ff0c00">
|
166
|
+
<v:shadow color="#969696"/>
|
167
|
+
</v:line><![endif]--></span><b style='mso-bidi-font-weight:normal'><span
|
168
|
+
lang=EN-US style='font-family:"Arial",sans-serif;mso-hansi-font-family:Garamond;
|
169
|
+
mso-bidi-font-family:"Times New Roman";color:#33A9CC'>M<sup>3</sup>AAWG</span></b><b
|
170
|
+
style='mso-bidi-font-weight:normal'><span lang=EN-US style='font-size:8.0pt;
|
171
|
+
mso-bidi-font-family:Arial'><o:p></o:p></span></b></p>
|
172
|
+
|
173
|
+
<p class=MsoFooter><span lang=EN-US style='font-size:8.0pt;mso-bidi-font-family:
|
174
|
+
Arial'><span style='mso-tab-count:1'> </span></span><span
|
175
|
+
lang=EN-US style='font-size:9.0pt;mso-bidi-font-size:11.0pt;font-family:"Arial",sans-serif;
|
176
|
+
mso-hansi-font-family:Garamond;mso-bidi-font-family:"Times New Roman"'>Messaging,
|
177
|
+
Malware and Mobile Anti-Abuse Working Group</span><span lang=EN-US
|
178
|
+
style='font-size:8.0pt;mso-bidi-font-family:Arial'><o:p></o:p></span></p>
|
179
|
+
|
180
|
+
<p class=MsoFooter><span lang=EN-US style='font-size:8.0pt;mso-bidi-font-family:
|
181
|
+
Arial'><span style='mso-tab-count:1'> </span></span><span
|
182
|
+
lang=EN-US style='font-size:9.0pt;mso-bidi-font-size:11.0pt;font-family:"Arial",sans-serif;
|
183
|
+
mso-bidi-font-family:"Times New Roman"'>P.O. Box 29920 </span><span lang=EN-US
|
184
|
+
style='font-size:8.0pt;mso-bidi-font-size:11.0pt;font-family:Wingdings;
|
185
|
+
color:#33A9CC'>n</span><span lang=EN-US style='font-size:8.0pt;mso-bidi-font-size:
|
186
|
+
11.0pt;font-family:"Times New Roman",serif;color:#33A9CC'> </span><span
|
187
|
+
lang=EN-US style='font-size:9.0pt;mso-bidi-font-size:11.0pt;font-family:"Arial",sans-serif;
|
188
|
+
mso-bidi-font-family:"Times New Roman"'>San Francisco, CA 94129-0920 </span><span
|
189
|
+
lang=EN-US style='font-size:8.0pt;mso-bidi-font-size:11.0pt;font-family:Wingdings;
|
190
|
+
color:#33A9CC'>n</span><span lang=EN-US style='font-size:8.0pt;mso-bidi-font-size:
|
191
|
+
11.0pt;font-family:"Times New Roman",serif;color:blue'> </span><u
|
192
|
+
style='text-underline:blue'><span lang=EN-US style='font-size:9.0pt;mso-bidi-font-size:
|
193
|
+
11.0pt;font-family:"Arial",sans-serif;mso-bidi-font-family:"Times New Roman";
|
194
|
+
color:blue'><a href="http://www.M3AAWG.org/">www.M3AAWG.org<u style='text-underline:
|
195
|
+
#000000'><span style='text-underline:#000000;text-decoration:none;text-underline:
|
196
|
+
none'> </span></u></a></span></u><span lang=EN-US style='font-size:8.0pt;
|
197
|
+
mso-bidi-font-size:11.0pt;font-family:Wingdings;color:#33A9CC'>n</span><span
|
198
|
+
lang=EN-US style='font-size:8.0pt;mso-bidi-font-size:11.0pt;font-family:"Times New Roman",serif;
|
199
|
+
color:blue'><a href="mailto:info@M3AAWG.org"><span style='text-decoration:none;
|
200
|
+
text-underline:none'> </span><span style='font-family:"Arial",sans-serif;
|
201
|
+
mso-bidi-font-family:"Times New Roman"'>info@M3AAWG.org</span></a></span><span
|
202
|
+
lang=EN-US style='font-size:8.0pt;mso-bidi-font-family:Arial'><o:p></o:p></span></p>
|
203
|
+
|
204
|
+
</div>
|
205
|
+
|
206
|
+
<p class=MsoFooter><b style='mso-bidi-font-weight:normal'><span lang=EN-US
|
207
|
+
style='font-size:8.0pt;font-family:"Garamond",serif;mso-bidi-font-family:Arial'>{{doctitle}}<span style='mso-tab-count:2'> </span><o:p></o:p></span></b></p>
|
208
|
+
|
209
|
+
</div>
|
210
|
+
|
211
|
+
<div style='mso-element:footer' id=f2>
|
212
|
+
|
213
|
+
<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>
|
214
|
+
<p class=MsoFooter>© 2017 copyright by the Messaging, Malware and Mobile Anti-Abuse Working Group (M3AAWG)</p>
|
215
|
+
</div>
|
216
|
+
|
217
|
+
</body>
|
218
|
+
|
219
|
+
</html>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<div class="coverpage">
|
2
|
+
<p class="coverpage-title">Messaging, Malware and Mobile Anti-Abuse Working Group</p>
|
3
|
+
<p class="coverpage-doc-identity">{{doctitle}}</p>
|
4
|
+
<p class="coverpage-date">{{revdate_monthyear}}</p>
|
5
|
+
</div>
|
6
|
+
|
7
|
+
<nav>
|
8
|
+
<h1 id="content">Contents</h1>
|
9
|
+
<div id="toc"></div>
|
10
|
+
|
11
|
+
</nav>
|
12
|
+
|
13
|
+
|
14
|
+
<div class="rule toc"></div>
|
@@ -0,0 +1,102 @@
|
|
1
|
+
<div class="document-stage-band" id="working-draft-band">
|
2
|
+
<p class="document-stage">{{ status }}</p>
|
3
|
+
</div>
|
4
|
+
|
5
|
+
<div class="document-type-band" id="standard-band">
|
6
|
+
<p class="document-type">Ribose {{ doctype }}</p>
|
7
|
+
</div>
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
<div id='toggle'> <span>•</span> </div>
|
12
|
+
|
13
|
+
<header>
|
14
|
+
|
15
|
+
<!--<div class="WordSection1">-->
|
16
|
+
<div class="coverpage">
|
17
|
+
<div class="wrapper-top">
|
18
|
+
|
19
|
+
<div class="coverpage-logo"> <img src="m3-logo.png" alt="m3 logo"/> </div>
|
20
|
+
<div class="coverpage-doc-identity">
|
21
|
+
<div class="doc-number">
|
22
|
+
<span class="docnumber">{{ docnumber }}</span>
|
23
|
+
<span class="docnumber-separator">:</span>
|
24
|
+
<span class="docyear">{{ docyear }}</span>
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<div class="coverpage-title">
|
28
|
+
<div class="titles">
|
29
|
+
<div class="title-second">{{ docsubtitle }}</div>
|
30
|
+
<div class="title-first">{{ doctitle }}</div>
|
31
|
+
</div>
|
32
|
+
</div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div class="docinfo">
|
36
|
+
Updated <span class="date">{{ revdate_monthyear }}</span>,
|
37
|
+
Version <span class="version">{{ draft }}</span> <br/>
|
38
|
+
{% if url %}
|
39
|
+
Shortened URL to this document: <a href="{{ url }}">{{ url }}</a>
|
40
|
+
{% endif %}
|
41
|
+
</div>
|
42
|
+
|
43
|
+
<div class="coverpage-tc-name">
|
44
|
+
<span>TC {{ tc }}</span>
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
|
48
|
+
<div class="title-section1">
|
49
|
+
<div class="coverpage-stage-block" >
|
50
|
+
<span class="coverpage-stage" id="{{ doctype | replace: ' ', '-' | downcase }}">Ribose {{ doctype }}</span>
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div class="coverpage-stage-block" >
|
54
|
+
<span class="coverpage-maturity" id="{{ status | replace: ' ', '-' | downcase }}">{{ status }}</span>
|
55
|
+
</div>
|
56
|
+
|
57
|
+
{% if status != "Published" and status != "Withdrawn" %}
|
58
|
+
<div class="coverpage-warning">
|
59
|
+
<span class="title">Warning for Drafts</span>
|
60
|
+
|
61
|
+
<p class="content">
|
62
|
+
This document is not an M3AAWG Standard. It is distributed for review and
|
63
|
+
comment, and is subject to change without notice and may not be referred to as
|
64
|
+
a Standard. Recipients of this draft are invited to submit, with their
|
65
|
+
comments, notification of any relevant patent rights of which they are aware
|
66
|
+
and to provide supporting documentation.
|
67
|
+
</p>
|
68
|
+
</div>
|
69
|
+
{% endif %}
|
70
|
+
|
71
|
+
<div class="copyright">
|
72
|
+
<p class="year">
|
73
|
+
© {{ docyear }} Messaging, Malware and Mobile Anti-Abuse Working Group
|
74
|
+
</p>
|
75
|
+
|
76
|
+
<p class="message">
|
77
|
+
All rights reserved. Unless otherwise specified, no part of this
|
78
|
+
publication may be reproduced or utilized otherwise in any form or by any
|
79
|
+
means, electronic or mechanical, including photocopying, or posting on the
|
80
|
+
internet or an intranet, without prior written permission. Permission can
|
81
|
+
be requested from the address below.
|
82
|
+
</p>
|
83
|
+
|
84
|
+
<div class="contact-info">
|
85
|
+
<p class="name">Messaging, Malware and Mobile Anti-Abuse Working Group</p>
|
86
|
+
<p class="address">
|
87
|
+
781 Beach Street, Suite 302<br />
|
88
|
+
San Francisco<br />
|
89
|
+
California 94109<br />
|
90
|
+
United States of America<br />
|
91
|
+
<br />
|
92
|
+
<!--<a href="mailto:copyright@ribose.com">copyright@ribose.com</a><br />-->
|
93
|
+
<a href="https://www.m3aawg.org">www.m3aawg.org</a>
|
94
|
+
</p>
|
95
|
+
</div>
|
96
|
+
</div>
|
97
|
+
|
98
|
+
<div class="rule"></div>
|
99
|
+
</div>
|
100
|
+
|
101
|
+
|
102
|
+
</header>
|