asciidoctor-rfc 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -0
  3. data/.oss-guides.rubocop.yml +1077 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +19 -1063
  6. data/.travis.yml +3 -2
  7. data/Guardfile +22 -0
  8. data/README.adoc +1151 -0
  9. data/Rakefile +1 -1
  10. data/asciidoctor-rfc.gemspec +20 -3
  11. data/bin/asciidoctor-rfc2 +15 -0
  12. data/bin/asciidoctor-rfc3 +15 -0
  13. data/bin/rspec +0 -1
  14. data/lib/asciidoctor-rfc.rb +4 -0
  15. data/lib/asciidoctor/rfc/common/base.rb +218 -0
  16. data/lib/asciidoctor/rfc/common/front.rb +120 -0
  17. data/lib/asciidoctor/rfc/v2/base.rb +341 -0
  18. data/lib/asciidoctor/rfc/v2/blocks.rb +192 -0
  19. data/lib/asciidoctor/rfc/v2/converter.rb +64 -0
  20. data/lib/asciidoctor/rfc/v2/front.rb +69 -0
  21. data/lib/asciidoctor/rfc/v2/inline_anchor.rb +102 -0
  22. data/lib/asciidoctor/rfc/v2/lists.rb +134 -0
  23. data/lib/asciidoctor/rfc/v2/table.rb +112 -0
  24. data/lib/asciidoctor/rfc/v2/validate.rb +738 -0
  25. data/lib/asciidoctor/rfc/v2/validate2.rng +716 -0
  26. data/lib/asciidoctor/rfc/v3/base.rb +358 -0
  27. data/lib/asciidoctor/rfc/v3/blocks.rb +203 -0
  28. data/lib/asciidoctor/rfc/v3/converter.rb +64 -0
  29. data/lib/asciidoctor/rfc/v3/front.rb +115 -0
  30. data/lib/asciidoctor/rfc/v3/inline_anchor.rb +90 -0
  31. data/lib/asciidoctor/rfc/v3/lists.rb +190 -0
  32. data/lib/asciidoctor/rfc/v3/svg.rng +9081 -0
  33. data/lib/asciidoctor/rfc/v3/table.rb +65 -0
  34. data/lib/asciidoctor/rfc/v3/validate.rb +2168 -0
  35. data/lib/asciidoctor/rfc/v3/validate.rng +2143 -0
  36. data/lib/asciidoctor/rfc/version.rb +2 -2
  37. data/spec/asciidoctor/rfc/v2/appendix_spec.rb +124 -0
  38. data/spec/asciidoctor/rfc/v2/area_spec.rb +60 -0
  39. data/spec/asciidoctor/rfc/v2/author_spec.rb +444 -0
  40. data/spec/asciidoctor/rfc/v2/comments_spec.rb +316 -0
  41. data/spec/asciidoctor/rfc/v2/crossref_spec.rb +205 -0
  42. data/spec/asciidoctor/rfc/v2/date_spec.rb +166 -0
  43. data/spec/asciidoctor/rfc/v2/dlist_spec.rb +108 -0
  44. data/spec/asciidoctor/rfc/v2/document_spec.rb +161 -0
  45. data/spec/asciidoctor/rfc/v2/example_spec.rb +50 -0
  46. data/spec/asciidoctor/rfc/v2/front_spec.rb +75 -0
  47. data/spec/asciidoctor/rfc/v2/image_spec.rb +81 -0
  48. data/spec/asciidoctor/rfc/v2/indexterm_spec.rb +66 -0
  49. data/spec/asciidoctor/rfc/v2/inline_formatting_spec.rb +177 -0
  50. data/spec/asciidoctor/rfc/v2/keyword_spec.rb +63 -0
  51. data/spec/asciidoctor/rfc/v2/listing_spec.rb +59 -0
  52. data/spec/asciidoctor/rfc/v2/literal_spec.rb +53 -0
  53. data/spec/asciidoctor/rfc/v2/olist_spec.rb +147 -0
  54. data/spec/asciidoctor/rfc/v2/paragraph_spec.rb +68 -0
  55. data/spec/asciidoctor/rfc/v2/preamble_spec.rb +140 -0
  56. data/spec/asciidoctor/rfc/v2/quote_spec.rb +24 -0
  57. data/spec/asciidoctor/rfc/v2/references_spec.rb +96 -0
  58. data/spec/asciidoctor/rfc/v2/section_spec.rb +260 -0
  59. data/spec/asciidoctor/rfc/v2/sidebar_spec.rb +32 -0
  60. data/spec/asciidoctor/rfc/v2/table_spec.rb +293 -0
  61. data/spec/asciidoctor/rfc/v2/ulist_spec.rb +96 -0
  62. data/spec/asciidoctor/rfc/v2/workgroup_spec.rb +60 -0
  63. data/spec/asciidoctor/rfc/v3/appendix_spec.rb +130 -0
  64. data/spec/asciidoctor/rfc/v3/area_spec.rb +63 -0
  65. data/spec/asciidoctor/rfc/v3/author_spec.rb +540 -0
  66. data/spec/asciidoctor/rfc/v3/comments_spec.rb +308 -0
  67. data/spec/asciidoctor/rfc/v3/crossref_spec.rb +269 -0
  68. data/spec/asciidoctor/rfc/v3/date_spec.rb +149 -0
  69. data/spec/asciidoctor/rfc/v3/dlist_spec.rb +121 -0
  70. data/spec/asciidoctor/rfc/v3/document_spec.rb +109 -0
  71. data/spec/asciidoctor/rfc/v3/example_spec.rb +34 -0
  72. data/spec/asciidoctor/rfc/v3/front_spec.rb +43 -0
  73. data/spec/asciidoctor/rfc/v3/image_spec.rb +81 -0
  74. data/spec/asciidoctor/rfc/v3/indexterm_spec.rb +69 -0
  75. data/spec/asciidoctor/rfc/v3/inline_formatting_spec.rb +319 -0
  76. data/spec/asciidoctor/rfc/v3/keyword_spec.rb +33 -0
  77. data/spec/asciidoctor/rfc/v3/link_spec.rb +34 -0
  78. data/spec/asciidoctor/rfc/v3/listing_spec.rb +59 -0
  79. data/spec/asciidoctor/rfc/v3/literal_spec.rb +51 -0
  80. data/spec/asciidoctor/rfc/v3/olist_spec.rb +168 -0
  81. data/spec/asciidoctor/rfc/v3/paragraph_spec.rb +73 -0
  82. data/spec/asciidoctor/rfc/v3/preamble_spec.rb +112 -0
  83. data/spec/asciidoctor/rfc/v3/quote_spec.rb +91 -0
  84. data/spec/asciidoctor/rfc/v3/references_spec.rb +147 -0
  85. data/spec/asciidoctor/rfc/v3/section_spec.rb +198 -0
  86. data/spec/asciidoctor/rfc/v3/series_info_spec.rb +151 -0
  87. data/spec/asciidoctor/rfc/v3/sidebar_spec.rb +30 -0
  88. data/spec/asciidoctor/rfc/v3/table_spec.rb +275 -0
  89. data/spec/asciidoctor/rfc/v3/ulist_spec.rb +74 -0
  90. data/spec/asciidoctor/rfc/v3/workgroup_spec.rb +33 -0
  91. data/spec/examples/davies-template-bare-06.adoc +361 -0
  92. data/spec/examples/davies-template-bare-06.xml.orig +426 -0
  93. data/spec/examples/example-v2.adoc +181 -0
  94. data/spec/examples/example-v2.xml +675 -0
  95. data/spec/examples/example-v3.adoc +185 -0
  96. data/spec/examples/example-v3.xml +1009 -0
  97. data/spec/examples/mib-doc-template-xml-06.adoc +596 -0
  98. data/spec/examples/mib-doc-template-xml-06.xml.orig +654 -0
  99. data/spec/examples/rfc1149.md +76 -0
  100. data/spec/examples/rfc1149.md.2.xml +94 -0
  101. data/spec/examples/rfc1149.md.3.xml +93 -0
  102. data/spec/examples/rfc1149.md.adoc +65 -0
  103. data/spec/examples/rfc2100.md +149 -0
  104. data/spec/examples/rfc2100.md.2.xml +169 -0
  105. data/spec/examples/rfc2100.md.3.xml +163 -0
  106. data/spec/examples/rfc2100.md.adoc +136 -0
  107. data/spec/examples/rfc3514.md +203 -0
  108. data/spec/examples/rfc3514.md.2.xml +238 -0
  109. data/spec/examples/rfc3514.md.3.xml +258 -0
  110. data/spec/examples/rfc3514.md.adoc +324 -0
  111. data/spec/examples/rfc5841.md +342 -0
  112. data/spec/examples/rfc5841.md.2.xml +393 -0
  113. data/spec/examples/rfc5841.md.3.xml +449 -0
  114. data/spec/examples/rfc5841.md.adoc +414 -0
  115. data/spec/examples/rfc6350.adoc +3499 -0
  116. data/spec/examples/rfc6350.bib +763 -0
  117. data/spec/examples/rfc748.md +79 -0
  118. data/spec/examples/rfc748.md.2.xml +116 -0
  119. data/spec/examples/rfc748.md.3.xml +109 -0
  120. data/spec/examples/rfc748.md.adoc +80 -0
  121. data/spec/examples/rfc7511.md +257 -0
  122. data/spec/examples/rfc7511.md.2.xml +300 -0
  123. data/spec/examples/rfc7511.md.3.xml +347 -0
  124. data/spec/examples/rfc7511.md.adoc +417 -0
  125. data/spec/spec_helper.rb +115 -5
  126. metadata +274 -9
  127. data/.hound.yml +0 -3
  128. data/README.md +0 -84
  129. data/lib/asciidoctor/rfc.rb +0 -7
  130. data/spec/asciidoctor-rfc/.keep +0 -0
@@ -0,0 +1,763 @@
1
+ @book{CCITT.X520.1988,
2
+ author="International Telephone and Telegraph Consultative
3
+ Committee",
4
+ title="{Information Technology - Open Systems
5
+ Interconnection - The Directory: Selected Attribute
6
+ Types}",
7
+ series="CCITT Recommendation",
8
+ number="X.520",
9
+ year=1988,
10
+ month=nov,
11
+ }
12
+
13
+ @misc{IEEE.754.2008,
14
+ author="Institute of Electrical and Electronics Engineers",
15
+ title="{Standard for Binary Floating-Point Arithmetic}",
16
+ series="IEEE Standard",
17
+ number="754",
18
+ year=2008,
19
+ month=aug,
20
+ }
21
+
22
+
23
+ @misc{ISO.8601.2000,
24
+ author="International Organization for Standardization",
25
+ title="{Data
26
+ elements and interchange formats - Information interchange
27
+ - Representation of dates and times}",
28
+ series="ISO Standard",
29
+ number="8601",
30
+ year=2000,
31
+ month=dec,
32
+ }
33
+
34
+ @misc{ISO.8601.2004,
35
+ author="International Organization for Standardization",
36
+ title="{Data
37
+ elements and interchange formats - Information interchange
38
+ - Representation of dates and times}",
39
+ series="ISO Standard",
40
+ number="8601",
41
+ year=2004,
42
+ month=dec,
43
+ }
44
+
45
+
46
+
47
+
48
+ @misc{rfc2045,
49
+ author="N. Freed and N. Borenstein",
50
+ title="{Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies}",
51
+ howpublished="RFC 2045 (Draft Standard)",
52
+ series="Internet Request for Comments",
53
+ type="RFC",
54
+ number="2045",
55
+ pages="1--31",
56
+ year=1996,
57
+ month=nov,
58
+ issn="2070-1721",
59
+ publisher="RFC Editor",
60
+ institution="RFC Editor",
61
+ organization="RFC Editor",
62
+ address="Fremont, CA, USA",
63
+ note="Updated by RFCs 2184, 2231, 5335, 6532",
64
+ url="https://www.rfc-editor.org/rfc/rfc2045.txt",
65
+ key="RFC 2045",
66
+ abstract={This initial document specifies the various headers used to describe the structure of MIME messages. [STANDARDS-TRACK]},
67
+ keywords="MIME, media, types, headers",
68
+ doi="10.17487/RFC2045",
69
+ }
70
+
71
+ @misc{rfc2046,
72
+ author="N. Freed and N. Borenstein",
73
+ title="{Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types}",
74
+ howpublished="RFC 2046 (Draft Standard)",
75
+ series="Internet Request for Comments",
76
+ type="RFC",
77
+ number="2046",
78
+ pages="1--44",
79
+ year=1996,
80
+ month=nov,
81
+ issn="2070-1721",
82
+ publisher="RFC Editor",
83
+ institution="RFC Editor",
84
+ organization="RFC Editor",
85
+ address="Fremont, CA, USA",
86
+ note="Updated by RFCs 2646, 3798, 5147, 6657, 8098",
87
+ url="https://www.rfc-editor.org/rfc/rfc2046.txt",
88
+ key="RFC 2046",
89
+ abstract={This second document defines the general structure of the MIME media typing system and defines an initial set of media types. [STANDARDS-TRACK]},
90
+ keywords="MIME-MEDIA, headers, structure",
91
+ doi="10.17487/RFC2046",
92
+ }
93
+
94
+ @misc{rfc2119,
95
+ author="S. Bradner",
96
+ title="{Key words for use in RFCs to Indicate Requirement Levels}",
97
+ howpublished="RFC 2119 (Best Current Practice)",
98
+ series="Internet Request for Comments",
99
+ type="RFC",
100
+ number="2119",
101
+ pages="1--3",
102
+ year=1997,
103
+ month=mar,
104
+ issn="2070-1721",
105
+ publisher="RFC Editor",
106
+ institution="RFC Editor",
107
+ organization="RFC Editor",
108
+ address="Fremont, CA, USA",
109
+ note="Updated by RFC 8174",
110
+ url="https://www.rfc-editor.org/rfc/rfc2119.txt",
111
+ key="RFC 2119",
112
+ abstract={In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.},
113
+ keywords="Standards, Track, Documents",
114
+ doi="10.17487/RFC2119",
115
+ }
116
+
117
+ @misc{rfc2739,
118
+ author="T. Small and D. Hennessy and F. Dawson",
119
+ title="{Calendar Attributes for vCard and LDAP}",
120
+ howpublished="RFC 2739 (Proposed Standard)",
121
+ series="Internet Request for Comments",
122
+ type="RFC",
123
+ number="2739",
124
+ pages="1--16",
125
+ year=2000,
126
+ month=jan,
127
+ issn="2070-1721",
128
+ publisher="RFC Editor",
129
+ institution="RFC Editor",
130
+ organization="RFC Editor",
131
+ address="Fremont, CA, USA",
132
+ note="Updated by RFC 6350",
133
+ url="https://www.rfc-editor.org/rfc/rfc2739.txt",
134
+ key="RFC 2739",
135
+ abstract={This memo defines three mechanisms for obtaining a URI to a user's calendar and free/busy time. [STANDARDS-TRACK]},
136
+ keywords="lightweight, directory, access, protocol",
137
+ doi="10.17487/RFC2739",
138
+ }
139
+
140
+ @misc{rfc3629,
141
+ author="F. Yergeau",
142
+ title="{UTF-8, a transformation format of ISO 10646}",
143
+ howpublished="RFC 3629 (Internet Standard)",
144
+ series="Internet Request for Comments",
145
+ type="RFC",
146
+ number="3629",
147
+ pages="1--14",
148
+ year=2003,
149
+ month=nov,
150
+ issn="2070-1721",
151
+ publisher="RFC Editor",
152
+ institution="RFC Editor",
153
+ organization="RFC Editor",
154
+ address="Fremont, CA, USA",
155
+ url="https://www.rfc-editor.org/rfc/rfc3629.txt",
156
+ key="RFC 3629",
157
+ abstract={ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems. The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo. UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values. This memo obsoletes and replaces RFC 2279.},
158
+ keywords="UTF-8, UCS, Transformation, Format",
159
+ doi="10.17487/RFC3629",
160
+ }
161
+
162
+ @misc{rfc3966,
163
+ author="H. Schulzrinne",
164
+ title="{The tel URI for Telephone Numbers}",
165
+ howpublished="RFC 3966 (Proposed Standard)",
166
+ series="Internet Request for Comments",
167
+ type="RFC",
168
+ number="3966",
169
+ pages="1--17",
170
+ year=2004,
171
+ month=dec,
172
+ issn="2070-1721",
173
+ publisher="RFC Editor",
174
+ institution="RFC Editor",
175
+ organization="RFC Editor",
176
+ address="Fremont, CA, USA",
177
+ note="Updated by RFC 5341",
178
+ url="https://www.rfc-editor.org/rfc/rfc3966.txt",
179
+ key="RFC 3966",
180
+ abstract={This document specifies the URI (Uniform Resource Identifier) scheme ``tel''. The ``tel'' URI describes resources identified by telephone numbers. This document obsoletes RFC 2806. [STANDARDS-TRACK]},
181
+ keywords="uniform, resource, locator, schemes",
182
+ doi="10.17487/RFC3966",
183
+ }
184
+
185
+ @misc{rfc3986,
186
+ author="T. Berners-Lee and R. Fielding and L. Masinter",
187
+ title="{Uniform Resource Identifier (URI): Generic Syntax}",
188
+ howpublished="RFC 3986 (Internet Standard)",
189
+ series="Internet Request for Comments",
190
+ type="RFC",
191
+ number="3986",
192
+ pages="1--61",
193
+ year=2005,
194
+ month=jan,
195
+ issn="2070-1721",
196
+ publisher="RFC Editor",
197
+ institution="RFC Editor",
198
+ organization="RFC Editor",
199
+ address="Fremont, CA, USA",
200
+ note="Updated by RFCs 6874, 7320",
201
+ url="https://www.rfc-editor.org/rfc/rfc3986.txt",
202
+ key="RFC 3986",
203
+ abstract={A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]},
204
+ keywords="Internet, protocol, uniform, resource, identifier, www, world wide web",
205
+ doi="10.17487/RFC3986",
206
+ }
207
+
208
+ @misc{rfc4122,
209
+ author="P. Leach and M. Mealling and R. Salz",
210
+ title="{A Universally Unique IDentifier (UUID) URN Namespace}",
211
+ howpublished="RFC 4122 (Proposed Standard)",
212
+ series="Internet Request for Comments",
213
+ type="RFC",
214
+ number="4122",
215
+ pages="1--32",
216
+ year=2005,
217
+ month=jul,
218
+ issn="2070-1721",
219
+ publisher="RFC Editor",
220
+ institution="RFC Editor",
221
+ organization="RFC Editor",
222
+ address="Fremont, CA, USA",
223
+ url="https://www.rfc-editor.org/rfc/rfc4122.txt",
224
+ key="RFC 4122",
225
+ abstract={This specification defines a Uniform Resource Name namespace for UUIDs (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDentifier). A UUID is 128 bits long, and can guarantee uniqueness across space and time. UUIDs were originally used in the Apollo Network Computing System and later in the Open Software Foundation\'s (OSF) Distributed Computing Environment (DCE), and then in Microsoft Windows platforms. This specification is derived from the DCE specification with the kind permission of the OSF (now known as The Open Group). Information from earlier versions of the DCE specification have been incorporated into this document. [STANDARDS-TRACK]},
226
+ keywords="uniform resource name, guid, globally unique identifier",
227
+ doi="10.17487/RFC4122",
228
+ }
229
+
230
+ @misc{rfc4288,
231
+ author="N. Freed and J. Klensin",
232
+ title="{Media Type Specifications and Registration Procedures}",
233
+ howpublished="RFC 4288 (Best Current Practice)",
234
+ series="Internet Request for Comments",
235
+ type="RFC",
236
+ number="4288",
237
+ pages="1--24",
238
+ year=2005,
239
+ month=dec,
240
+ issn="2070-1721",
241
+ publisher="RFC Editor",
242
+ institution="RFC Editor",
243
+ organization="RFC Editor",
244
+ address="Fremont, CA, USA",
245
+ note="Obsoleted by RFC 6838",
246
+ url="https://www.rfc-editor.org/rfc/rfc4288.txt",
247
+ key="RFC 4288",
248
+ abstract={This document defines procedures for the specification and registration of media types for use in MIME and other Internet protocols. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.},
249
+ keywords="mime, multipurpose internet mail extensions, media types",
250
+ doi="10.17487/RFC4288",
251
+ }
252
+
253
+ @misc{rfc5234,
254
+ author="D. Crocker and P. Overell",
255
+ title="{Augmented BNF for Syntax Specifications: ABNF}",
256
+ howpublished="RFC 5234 (Internet Standard)",
257
+ series="Internet Request for Comments",
258
+ type="RFC",
259
+ number="5234",
260
+ pages="1--16",
261
+ year=2008,
262
+ month=jan,
263
+ issn="2070-1721",
264
+ publisher="RFC Editor",
265
+ institution="RFC Editor",
266
+ organization="RFC Editor",
267
+ address="Fremont, CA, USA",
268
+ note="Updated by RFC 7405",
269
+ url="https://www.rfc-editor.org/rfc/rfc5234.txt",
270
+ key="RFC 5234",
271
+ abstract={Internet technical specifications often need to define a formal syntax. Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications. The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power. The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges. This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications. [STANDARDS-TRACK]},
272
+ keywords="ABNF, backus-naur form, augmented backus-naur form, rule definitions, encoding, core lexical analyzer",
273
+ doi="10.17487/RFC5234",
274
+ }
275
+
276
+
277
+ @misc{rfc5322,
278
+ author="P. Resnick",
279
+ title="{Internet Message Format}",
280
+ howpublished="RFC 5322 (Draft Standard)",
281
+ series="Internet Request for Comments",
282
+ type="RFC",
283
+ number="5322",
284
+ pages="1--57",
285
+ year=2008,
286
+ month=oct,
287
+ issn="2070-1721",
288
+ publisher="RFC Editor",
289
+ institution="RFC Editor",
290
+ organization="RFC Editor",
291
+ address="Fremont, CA, USA",
292
+ note="Updated by RFC 6854",
293
+ url="https://www.rfc-editor.org/rfc/rfc5322.txt",
294
+ key="RFC 5322",
295
+ abstract={This document specifies the Internet Message Format (IMF), a syntax for text messages that are sent between computer users, within the framework of ``electronic mail'' messages. This specification is a revision of Request For Comments (RFC) 2822, which itself superseded Request For Comments (RFC) 822, ``Standard for the Format of ARPA Internet Text Messages'', updating it to reflect current practice and incorporating incremental changes that were specified in other RFCs. [STANDARDS-TRACK]},
296
+ keywords="MAIL], e-mail, email, electronic mail, header, address, mailbox, reply, forward, resend, resent, folding, Date, From, Sender, Reply-To, To, Cc, Bcc, Message-ID, In-Reply-To, References, Subject, Comments, Keywords, Resent-Date, Resent-From, Resent-Sender, Resent-To, Resent-Cc, Resent-Bcc, Resent-Reply-To, Resent-Message-ID, Return-Path, Received",
297
+ doi="10.17487/RFC5322",
298
+ }
299
+
300
+ @misc{rfc5545,
301
+ author="B. Desruisseaux",
302
+ title="{Internet Calendaring and Scheduling Core Object Specification (iCalendar)}",
303
+ howpublished="RFC 5545 (Proposed Standard)",
304
+ series="Internet Request for Comments",
305
+ type="RFC",
306
+ number="5545",
307
+ pages="1--168",
308
+ year=2009,
309
+ month=sep,
310
+ issn="2070-1721",
311
+ publisher="RFC Editor",
312
+ institution="RFC Editor",
313
+ organization="RFC Editor",
314
+ address="Fremont, CA, USA",
315
+ note="Updated by RFCs 5546, 6868, 7529, 7953, 7986",
316
+ url="https://www.rfc-editor.org/rfc/rfc5545.txt",
317
+ key="RFC 5545",
318
+ abstract={This document defines the iCalendar data format for representing and exchanging calendaring and scheduling information such as events, to-dos, journal entries, and free/busy information, independent of any particular calendar service or protocol. [STANDARDS-TRACK]},
319
+ keywords="calsify, calsched, calsch, caldav, calendar, calendaring, meeting, event, task, to-do, journal, appointment, agenda, schedule, scheduling, ical, icalendar, itip, imip, text/calendar, ischedule, xCalendar",
320
+ doi="10.17487/RFC5545",
321
+ }
322
+
323
+ @misc{rfc5546,
324
+ author="C. Daboo",
325
+ title="{iCalendar Transport-Independent Interoperability Protocol (iTIP)}",
326
+ howpublished="RFC 5546 (Proposed Standard)",
327
+ series="Internet Request for Comments",
328
+ type="RFC",
329
+ number="5546",
330
+ pages="1--133",
331
+ year=2009,
332
+ month=dec,
333
+ issn="2070-1721",
334
+ publisher="RFC Editor",
335
+ institution="RFC Editor",
336
+ organization="RFC Editor",
337
+ address="Fremont, CA, USA",
338
+ note="Updated by RFC 6638",
339
+ url="https://www.rfc-editor.org/rfc/rfc5546.txt",
340
+ key="RFC 5546",
341
+ abstract={This document specifies a protocol that uses the iCalendar object specification to provide scheduling interoperability between different calendaring systems. This is done without reference to a specific transport protocol so as to allow multiple methods of communication between systems. Subsequent documents will define profiles of this protocol that use specific, interoperable methods of communication between systems. The iCalendar Transport-Independent Interoperability Protocol (iTIP) complements the iCalendar object specification by adding semantics for group scheduling methods commonly available in current calendaring systems. These scheduling methods permit two or more calendaring systems to perform transactions such as publishing, scheduling, rescheduling, responding to scheduling requests, negotiating changes, or canceling. [STANDARDS-TRACK]},
342
+ keywords="calendar, scheduling",
343
+ doi="10.17487/RFC5546",
344
+ }
345
+
346
+ @misc{rfc5646,
347
+ author="A. Phillips and M. Davis",
348
+ title="{Tags for Identifying Languages}",
349
+ howpublished="RFC 5646 (Best Current Practice)",
350
+ series="Internet Request for Comments",
351
+ type="RFC",
352
+ number="5646",
353
+ pages="1--84",
354
+ year=2009,
355
+ month=sep,
356
+ issn="2070-1721",
357
+ publisher="RFC Editor",
358
+ institution="RFC Editor",
359
+ organization="RFC Editor",
360
+ address="Fremont, CA, USA",
361
+ url="https://www.rfc-editor.org/rfc/rfc5646.txt",
362
+ key="RFC 5646",
363
+ abstract={This document describes the structure, content, construction, and semantics of language tags for use in cases where it is desirable to indicate the language used in an information object. It also describes how to register values for use in language tags and the creation of user-defined extensions for private interchange. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.},
364
+ keywords="language tags, private interchange",
365
+ doi="10.17487/RFC5646",
366
+ }
367
+
368
+
369
+ @misc{rfc5870,
370
+ author="A. Mayrhofer and C. Spanring",
371
+ title="{A Uniform Resource Identifier for Geographic Locations ('geo' URI)}",
372
+ howpublished="RFC 5870 (Proposed Standard)",
373
+ series="Internet Request for Comments",
374
+ type="RFC",
375
+ number="5870",
376
+ pages="1--23",
377
+ year=2010,
378
+ month=jun,
379
+ issn="2070-1721",
380
+ publisher="RFC Editor",
381
+ institution="RFC Editor",
382
+ organization="RFC Editor",
383
+ address="Fremont, CA, USA",
384
+ url="https://www.rfc-editor.org/rfc/rfc5870.txt",
385
+ key="RFC 5870",
386
+ abstract={This document specifies a Uniform Resource Identifier (URI) for geographic locations using the 'geo\' scheme name. A 'geo' URI identifies a physical location in a two- or three-dimensional coordinate reference system in a compact, simple, human-readable, and protocol-independent way. The default coordinate reference system used is the World Geodetic System 1984 (WGS-84). [STANDARDS-TRACK]},
387
+ keywords="geography, geo, uri, scheme",
388
+ doi="10.17487/RFC5870",
389
+ }
390
+
391
+ @misc{rfc6351,
392
+ author="S. Perreault",
393
+ title="{xCard: vCard XML Representation}",
394
+ howpublished="RFC 6351 (Proposed Standard)",
395
+ series="Internet Request for Comments",
396
+ type="RFC",
397
+ number="6351",
398
+ pages="1--22",
399
+ year=2011,
400
+ month=aug,
401
+ issn="2070-1721",
402
+ publisher="RFC Editor",
403
+ institution="RFC Editor",
404
+ organization="RFC Editor",
405
+ address="Fremont, CA, USA",
406
+ note="Updated by RFC 6868",
407
+ url="https://www.rfc-editor.org/rfc/rfc6351.txt",
408
+ key="RFC 6351",
409
+ abstract={This document defines the XML schema of the vCard data format. [STANDARDS-TRACK]},
410
+ keywords="vCard",
411
+ doi="10.17487/RFC6351",
412
+ }
413
+
414
+ @misc{W3C.REC-xml-20081126,
415
+ author="E. Maler and F. Yergeau and C. Sperberg-McQueen and J. Paoli
416
+ and T. Bray",
417
+ title="{Extensible Markup Language (XML) 1.0 (Fifth
418
+ Edition)}",
419
+ series="World Wide Web Consortium Recommendation",
420
+ number="REC-xml-20081126",
421
+ year=2008,
422
+ month=nov,
423
+ url="http://www.w3.org/TR/2008/REC-xml-20081126",
424
+ }
425
+
426
+
427
+ @misc{xfn,
428
+ author="T. Celik and M. Mullenweg and E. Meyer",
429
+ title="{XFN 1.1 profile}",
430
+ url="http://gmpg.org/xfn/11",
431
+ }
432
+
433
+
434
+ @misc{IANA-TZ,
435
+ author="E. Lear and P. Eggert",
436
+ title="{IANA Procedures for Maintaining
437
+ the Timezone Database}",
438
+ year=2011,
439
+ month=may,
440
+ }
441
+
442
+ @misc{ISO9070,
443
+ author="International Organization for Standardization",
444
+ title="{Information Processing - SGML support facilities -
445
+ Registration Procedures for Public Text Owner
446
+ Identifiers}",
447
+ series="ISO Standard"m
448
+ number="9070",
449
+ year=1991,
450
+ month=apr,
451
+ }
452
+
453
+ @misc{rfc1738,
454
+ author="T. Berners-Lee and L. Masinter and M. McCahill",
455
+ title="{Uniform Resource Locators (URL)}",
456
+ howpublished="RFC 1738 (Proposed Standard)",
457
+ series="Internet Request for Comments",
458
+ type="RFC",
459
+ number="1738",
460
+ pages="1--25",
461
+ year=1994,
462
+ month=dec,
463
+ issn="2070-1721",
464
+ publisher="RFC Editor",
465
+ institution="RFC Editor",
466
+ organization="RFC Editor",
467
+ address="Fremont, CA, USA",
468
+ note="Obsoleted by RFCs 4248, 4266, updated by RFCs 1808, 2368, 2396, 3986, 6196, 6270, 8089",
469
+ url="https://www.rfc-editor.org/rfc/rfc1738.txt",
470
+ key="RFC 1738",
471
+ abstract={This document specifies a Uniform Resource Locator (URL), the syntax and semantics of formalized information for location and access of resources via the Internet. [STANDARDS-TRACK]},
472
+ keywords="URL",
473
+ doi="10.17487/RFC1738",
474
+ }
475
+
476
+ @misc{rfc2397,
477
+ author="L. Masinter",
478
+ title="{The ``data'' URL scheme}",
479
+ howpublished="RFC 2397 (Proposed Standard)",
480
+ series="Internet Request for Comments",
481
+ type="RFC",
482
+ number="2397",
483
+ pages="1--5",
484
+ year=1998,
485
+ month=aug,
486
+ issn="2070-1721",
487
+ publisher="RFC Editor",
488
+ institution="RFC Editor",
489
+ organization="RFC Editor",
490
+ address="Fremont, CA, USA",
491
+ url="https://www.rfc-editor.org/rfc/rfc2397.txt",
492
+ key="RFC 2397",
493
+ abstract={A new URL scheme, ``data'', is defined. It allows inclusion of small data items as ``immediate'' data, as if it had been included externally. [STANDARDS-TRACK]},
494
+ keywords="DATA-URL, uniform, resource, identifiers, media, type",
495
+ doi="10.17487/RFC2397",
496
+ }
497
+
498
+ @misc{rfc2425,
499
+ author="T. Howes and M. Smith and F. Dawson",
500
+ title="{A MIME Content-Type for Directory Information}",
501
+ howpublished="RFC 2425 (Proposed Standard)",
502
+ series="Internet Request for Comments",
503
+ type="RFC",
504
+ number="2425",
505
+ pages="1--33",
506
+ year=1998,
507
+ month=sep,
508
+ issn="2070-1721",
509
+ publisher="RFC Editor",
510
+ institution="RFC Editor",
511
+ organization="RFC Editor",
512
+ address="Fremont, CA, USA",
513
+ note="Obsoleted by RFC 6350",
514
+ url="https://www.rfc-editor.org/rfc/rfc2425.txt",
515
+ key="RFC 2425",
516
+ abstract={This document defines a MIME Content-Type for holding directory information. [STANDARDS-TRACK]},
517
+ keywords="TXT-DIR, multipurpose, internet, mail, extensions, profiles",
518
+ doi="10.17487/RFC2425",
519
+ }
520
+
521
+ @misc{rfc2426,
522
+ author="F. Dawson and T. Howes",
523
+ title="{vCard MIME Directory Profile}",
524
+ howpublished="RFC 2426 (Proposed Standard)",
525
+ series="Internet Request for Comments",
526
+ type="RFC",
527
+ number="2426",
528
+ pages="1--42",
529
+ year=1998,
530
+ month=sep,
531
+ issn="2070-1721",
532
+ publisher="RFC Editor",
533
+ institution="RFC Editor",
534
+ organization="RFC Editor",
535
+ address="Fremont, CA, USA",
536
+ note="Obsoleted by RFC 6350",
537
+ url="https://www.rfc-editor.org/rfc/rfc2426.txt",
538
+ key="RFC 2426",
539
+ abstract={This memo defines the profile of the MIME Content-Type for directory information for a white-pages person object, based on a vCard electronic business card. [STANDARDS-TRACK]},
540
+ keywords="MIME-VCARD, multipurpose, internet, mail, extensions, white-pages, electronic, business, card",
541
+ doi="10.17487/RFC2426",
542
+ }
543
+
544
+ @misc{rfc2616,
545
+ author="R. Fielding and J. Gettys and J. Mogul and H. Frystyk and L. Masinter and P. Leach and T. Berners-Lee",
546
+ title="{Hypertext Transfer Protocol -- HTTP/1.1}",
547
+ howpublished="RFC 2616 (Draft Standard)",
548
+ series="Internet Request for Comments",
549
+ type="RFC",
550
+ number="2616",
551
+ pages="1--176",
552
+ year=1999,
553
+ month=jun,
554
+ issn="2070-1721",
555
+ publisher="RFC Editor",
556
+ institution="RFC Editor",
557
+ organization="RFC Editor",
558
+ address="Fremont, CA, USA",
559
+ note="Obsoleted by RFCs 7230, 7231, 7232, 7233, 7234, 7235, updated by RFCs 2817, 5785, 6266, 6585",
560
+ url="https://www.rfc-editor.org/rfc/rfc2616.txt",
561
+ key="RFC 2616",
562
+ abstract={HTTP has been in use by the World-Wide Web global information initiative since 1990. This specification defines the protocol referred to as ``HTTP/1.1'', and is an update to RFC 2068. [STANDARDS-TRACK]},
563
+ keywords="HTTP, World Wide Web, WWW, hypermedia",
564
+ doi="10.17487/RFC2616",
565
+ }
566
+
567
+ @misc{rfc3282,
568
+ author="H. Alvestrand",
569
+ title="{Content Language Headers}",
570
+ howpublished="RFC 3282 (Draft Standard)",
571
+ series="Internet Request for Comments",
572
+ type="RFC",
573
+ number="3282",
574
+ pages="1--8",
575
+ year=2002,
576
+ month=may,
577
+ issn="2070-1721",
578
+ publisher="RFC Editor",
579
+ institution="RFC Editor",
580
+ organization="RFC Editor",
581
+ address="Fremont, CA, USA",
582
+ url="https://www.rfc-editor.org/rfc/rfc3282.txt",
583
+ key="RFC 3282",
584
+ abstract={This document defines a ``Content-language:'' header, for use in cases where one desires to indicate the language of something that has RFC 822-like headers, like MIME body parts or Web documents, and an ``Accept-Language:'' header for use in cases where one wishes to indicate one's preferences with regard to language. [STANDARDS-TRACK]},
585
+ keywords="",
586
+ doi="10.17487/RFC3282",
587
+ }
588
+
589
+
590
+ @misc{rfc3406,
591
+ author="L. Daigle and D. van Gulik and R. Iannella and P. Faltstrom",
592
+ title="{Uniform Resource Names (URN) Namespace Definition Mechanisms}",
593
+ howpublished="RFC 3406 (Best Current Practice)",
594
+ series="Internet Request for Comments",
595
+ type="RFC",
596
+ number="3406",
597
+ pages="1--22",
598
+ year=2002,
599
+ month=oct,
600
+ issn="2070-1721",
601
+ publisher="RFC Editor",
602
+ institution="RFC Editor",
603
+ organization="RFC Editor",
604
+ address="Fremont, CA, USA",
605
+ note="Obsoleted by RFC 8141",
606
+ url="https://www.rfc-editor.org/rfc/rfc3406.txt",
607
+ key="RFC 3406",
608
+ abstract={This document lays out general definitions of and mechanisms for establishing Uniform Resource Names (URN) ``namespaces''. The URN WG has defined a syntax for URNs in RFC 2141, as well as some proposed mechanisms for their resolution and use in Internet applications in RFC 3401 and RFC 3405. The whole rests on the concept of individual ``namespaces'' within the URN structure. Apart from proof-of-concept namespaces, the use of existing identifiers in URNs has been discussed in RFC 2288. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.},
609
+ keywords="namespaces, applications, structure",
610
+ doi="10.17487/RFC3406",
611
+ }
612
+
613
+ @misc{rfc3536,
614
+ author="P. Hoffman",
615
+ title="{Terminology Used in Internationalization in the IETF}",
616
+ howpublished="RFC 3536 (Informational)",
617
+ series="Internet Request for Comments",
618
+ type="RFC",
619
+ number="3536",
620
+ pages="1--30",
621
+ year=2003,
622
+ month=may,
623
+ issn="2070-1721",
624
+ publisher="RFC Editor",
625
+ institution="RFC Editor",
626
+ organization="RFC Editor",
627
+ address="Fremont, CA, USA",
628
+ note="Obsoleted by RFC 6365",
629
+ url="https://www.rfc-editor.org/rfc/rfc3536.txt",
630
+ key="RFC 3536",
631
+ abstract={This document provides a glossary of terms used in the IETF when discussing internationalization. The purpose is to help frame discussions of internationalization in the various areas of the IETF and to help introduce the main concepts to IETF participants. This memo provides information for the Internet community.},
632
+ keywords="internet engineering task force",
633
+ doi="10.17487/RFC3536",
634
+ }
635
+
636
+ @misc{rfc4770,
637
+ author="C. Jennings and J. Reschke",
638
+ title="{vCard Extensions for Instant Messaging (IM)}",
639
+ howpublished="RFC 4770 (Proposed Standard)",
640
+ series="Internet Request for Comments",
641
+ type="RFC",
642
+ number="4770",
643
+ pages="1--7",
644
+ year=2007,
645
+ month=jan,
646
+ issn="2070-1721",
647
+ publisher="RFC Editor",
648
+ institution="RFC Editor",
649
+ organization="RFC Editor",
650
+ address="Fremont, CA, USA",
651
+ note="Obsoleted by RFC 6350",
652
+ url="https://www.rfc-editor.org/rfc/rfc4770.txt",
653
+ key="RFC 4770",
654
+ abstract={This document describes an extension to vCard to support Instant Messaging (IM) and Presence Protocol (PP) applications. IM and PP are becoming increasingly common ways of communicating, and users want to save this contact information in their address books. It allows a URI that is associated with IM or PP to be specified inside a vCard. [STANDARDS-TRACK]},
655
+ keywords="impp, instant messaging and presence protocol",
656
+ doi="10.17487/RFC4770",
657
+ }
658
+
659
+ @misc{rfc4880,
660
+ author="J. Callas and L. Donnerhacke and H. Finney and D. Shaw and R. Thayer",
661
+ title="{OpenPGP Message Format}",
662
+ howpublished="RFC 4880 (Proposed Standard)",
663
+ series="Internet Request for Comments",
664
+ type="RFC",
665
+ number="4880",
666
+ pages="1--90",
667
+ year=2007,
668
+ month=nov,
669
+ issn="2070-1721",
670
+ publisher="RFC Editor",
671
+ institution="RFC Editor",
672
+ organization="RFC Editor",
673
+ address="Fremont, CA, USA",
674
+ note="Updated by RFC 5581",
675
+ url="https://www.rfc-editor.org/rfc/rfc4880.txt",
676
+ key="RFC 4880",
677
+ abstract={This document is maintained in order to publish all necessary information needed to develop interoperable applications based on the OpenPGP format. It is not a step-by-step cookbook for writing an application. It describes only the format and methods needed to read, check, generate, and write conforming packets crossing any network. It does not deal with storage and implementation questions. It does, however, discuss implementation issues necessary to avoid security flaws. OpenPGP software uses a combination of strong public-key and symmetric cryptography to provide security services for electronic communications and data storage. These services include confidentiality, key management, authentication, and digital signatures. This document specifies the message formats used in OpenPGP. [STANDARDS-TRACK]},
678
+ keywords="public-key cryptography, symmetric cryptography",
679
+ doi="10.17487/RFC4880",
680
+ }
681
+
682
+ @misc{rfc5335bis,
683
+ author="A. Yang and S. Steele",
684
+ title="{Internationalized Email Headers}",
685
+ howpublished="RFC 5335 (Experimental)",
686
+ series="Internet Request for Comments",
687
+ type="RFC",
688
+ number="5335",
689
+ pages="1--14",
690
+ year=2011,
691
+ month=jul,
692
+ issn="2070-1721",
693
+ publisher="RFC Editor",
694
+ institution="RFC Editor",
695
+ organization="RFC Editor",
696
+ address="Fremont, CA, USA",
697
+ note="Obsoleted by RFC 6532",
698
+ url="https://www.rfc-editor.org/rfc/rfc5335.txt",
699
+ key="RFC 5335",
700
+ abstract={Full internationalization of electronic mail requires not only the capabilities to transmit non-ASCII content, to encode selected information in specific header fields, and to use non-ASCII characters in envelope addresses. It also requires being able to express those addresses and the information based on them in mail header fields. This document specifies an experimental variant of Internet mail that permits the use of Unicode encoded in UTF-8, rather than ASCII, as the base form for Internet email header field. This form is permitted in transmission only if authorized by an SMTP extension, as specified in an associated specification. This specification Updates section 6.4 of RFC 2045 to conform with the requirements. This memo defines an Experimental Protocol for the Internet community.},
701
+ keywords="unicode, utf-8",
702
+ doi="10.17487/RFC5335",
703
+ }
704
+
705
+ @misc{rfc5751,
706
+ author="B. Ramsdell and S. Turner",
707
+ title="{Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.2 Message Specification}",
708
+ howpublished="RFC 5751 (Proposed Standard)",
709
+ series="Internet Request for Comments",
710
+ type="RFC",
711
+ number="5751",
712
+ pages="1--45",
713
+ year=2010,
714
+ month=jan,
715
+ issn="2070-1721",
716
+ publisher="RFC Editor",
717
+ institution="RFC Editor",
718
+ organization="RFC Editor",
719
+ address="Fremont, CA, USA",
720
+ url="https://www.rfc-editor.org/rfc/rfc5751.txt",
721
+ key="RFC 5751",
722
+ abstract={This document defines Secure/Multipurpose Internet Mail Extensions (S/MIME) version 3.2. S/MIME provides a consistent way to send and receive secure MIME data. Digital signatures provide authentication, message integrity, and non-repudiation with proof of origin. Encryption provides data confidentiality. Compression can be used to reduce data size. This document obsoletes RFC 3851. [STANDARDS-TRACK]},
723
+ keywords="secure, multipurpose, internet, mail, extensions, encryption",
724
+ doi="10.17487/RFC5751",
725
+ }
726
+
727
+ @misc{rfc6068,
728
+ author="M. Duerst and L. Masinter and J. Zawinski",
729
+ title="{The 'mailto' URI Scheme}",
730
+ howpublished="RFC 6068 (Proposed Standard)",
731
+ series="Internet Request for Comments",
732
+ type="RFC",
733
+ number="6068",
734
+ pages="1--17",
735
+ year=2010,
736
+ month=oct,
737
+ issn="2070-1721",
738
+ publisher="RFC Editor",
739
+ institution="RFC Editor",
740
+ organization="RFC Editor",
741
+ address="Fremont, CA, USA",
742
+ url="https://www.rfc-editor.org/rfc/rfc6068.txt",
743
+ key="RFC 6068",
744
+ abstract={This document defines the format of Uniform Resource Identifiers (URIs) to identify resources that are reached using Internet mail. It adds better internationalization and compatibility with Internationalized Resource Identifiers (IRIs; RFC 3987) to the previous syntax of 'mailto' URIs (RFC 2368). [STANDARDS-TRACK]},
745
+ keywords="mailto, email address, URI scheme, IRI",
746
+ doi="10.17487/RFC6068",
747
+ }
748
+
749
+ @misc{TZ-DB,
750
+ author="A. Olson",
751
+ title="{Time zone code and data}",
752
+ url="ftp://elsie.nci.nih.gov/pub/",
753
+ }
754
+
755
+ @misc{vCard21,
756
+ author="Internet Mail Consortium",
757
+ title="{vCard - The Electronic Business
758
+ Card Version 2.1}",
759
+ year=1996,
760
+ month=sep,
761
+ }
762
+
763
+