-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample.xml
251 lines (248 loc) · 5.34 KB
/
sample.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt"?>
<!-- generated by https://github.com/dthaler/rst2rfcxml version 0.1 -->
<!DOCTYPE rfc [
]>
<?rfc rfcedstyle="yes"?>
<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc text-list-symbols="-o*+"?>
<?rfc docmapping="yes"?>
<rfc ipr="trust200902" docName="draft-thaler-sample-00" category="std" submissionType="IETF">
<front>
<title abbrev="Sample Abbreviated Title">
Sample Document Title
</title>
<author initials="J." surname="Doe" fullname="John Doe" role="editor">
<organization>ACME</organization>
<address>
<postal>
<city>Anytown</city>
<country>USA</country>
<region>WA</region>
</postal>
<phone>555-1212</phone>
<email>[email protected]</email>
</address>
</author>
<abstract>
<t>
This is the abstract.
</t>
</abstract>
</front>
<middle>
<section anchor="introduction" title="Introduction">
<t>
This is the introduction.
</t>
<t>
It can contain multiple paragraphs.
</t>
</section>
<section anchor="lists" title="Lists">
<section anchor="unnumbered-list" title="Unnumbered list">
<t>
The following is an unnumbered list:
</t>
<ul>
<li>
First
</li>
<li>
Second
</li>
</ul>
</section>
<section anchor="numbered-list" title="Numbered list">
<t>
The following is a numbered list using decimal numbers:
</t>
<ol>
<li>
First
</li>
<li>
Second
</li>
</ol>
</section>
<section anchor="definition-list" title="Definition list">
<t>
The following is a definition list:
</t>
<dl>
<dt anchor="term-first">
first
</dt>
<dd>
<t>
Description of the term.
</t>
</dd>
<dt anchor="term-second">
second
</dt>
<dd>
<t>
Description of another term.
</t>
</dd>
</dl>
<t>
where structures are represented in a C-style format with types such as <tt>Elf64_Word</tt> for an
unsigned 64-bit integer.
</t>
</section>
</section>
<section anchor="emphasis" title="Emphasis">
<t>
Fixed-width term: <tt>term</tt>
</t>
<t>
Bold term: <strong>term</strong>
</t>
<t>
Italics term: <em>term</em>
</t>
</section>
<section anchor="references" title="References">
<t>
Internal reference: <xref target="references">References</xref>
</t>
<t>
External reference: <xref target="SAMPLE">External reference text</xref>.
</t>
<t>
External reference to an Internet Draft: <xref target="DRAFT">External reference text</xref>.
</t>
<t>
External reference to an RFC: <xref target="RFC2119"></xref>.
</t>
</section>
<section anchor="blocks" title="Blocks">
<section anchor="code-blocks" title="Code blocks">
<t>
The following is a code block followed by a definition list to define fields:
</t>
<sourcecode>
typedef struct {
int sample;
} sample_t;
</sourcecode>
<dl>
<dt anchor="term-sample">
sample
</dt>
<dd>
<t>
Definition of the sample field.
</t>
</dd>
</dl>
</section>
<section anchor="block-quotes" title="Block quotes">
<t>
Following is a block quote:
</t>
<blockquote>
This is quoted text
that goes in a block quote.
</blockquote>
</section>
<section anchor="literal-blocks" title="Literal blocks">
<t>
Following is a literal block:
</t>
<artwork>
This is text
that goes in a literal block.
</artwork>
</section>
</section>
<section anchor="tables" title="Tables">
<table>
<thead>
<tr>
<th>name</th>
<th>value</th>
<th>notes</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<t>
foo
</t>
</td>
<td>
<t>
1
</t>
</td>
<td>
<t>
Some note text
</t>
</td>
</tr>
<tr>
<td>
<t>
bar
</t>
</td>
<td>
<t>
2
</t>
</td>
<td>
<t>
Another note
</t>
</td>
</tr>
</tbody>
</table>
</section>
</middle>
<back>
<references><name>Normative References</name>
<reference anchor="RFC2119">
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author fullname="S. Bradner" initials="S." surname="Bradner"/>
<date month="March" year="1997"/>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>
<reference anchor="SAMPLE" target="https://example.com/path">
<front>
<title>Sample Reference Title</title>
<author/>
</front>
</reference>
</references>
<references><name>Informative References</name>
<reference anchor="DRAFT">
<front>
<title>Sample Title</title>
<author fullname="D. Thaler" initials="D." surname="Thaler"/>
<author fullname="J. Doe" initials="J." surname="Doe"/>
<date month="April" year="2024"/>
</front>
<seriesInfo name='Internet-Draft' value='draft-thaler-bpf-isa-00'/>
<seriesInfo name='DOI' value='0/0'/>
</reference>
</references>
</back>
</rfc>